/* =====================================================
   The Technology Mechanics - Main Stylesheet
   ===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #172033;
    --muted: #647084;
    --soft: #f4f6f8;
    --surface: #fbfcfd;
    --line: #dde3ea;
    --navy: #0b1729;
    --blue: #2f5f9f;
    --blue-soft: #edf3f8;
    --magenta: #9b315f;
    --magenta-dark: #792247;
    --orange: #c97a22;
    --green: #3a8a61;
    --danger: #d92d20;
    --shadow: 0 14px 34px rgba(11, 23, 41, 0.08);
    --shadow-strong: 0 20px 48px rgba(11, 23, 41, 0.12);
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: #f8fafb;
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::selection {
    background: rgba(194, 24, 91, 0.18);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
    margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5.15rem);
    max-width: 760px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
}

ul {
    padding-left: 1.2rem;
}

.container,
.navbar-container,
.solutions-container,
.pricing-container,
.services-container,
.footer-container {
    width: min(100% - 40px, var(--max));
    margin-inline: auto;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    border: 1px solid rgba(155, 49, 95, 0.2);
    border-radius: 6px;
    background: rgba(155, 49, 95, 0.07);
    color: var(--magenta);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 1rem;
    padding: 0.45rem 0.7rem;
    text-transform: uppercase;
}

.reveal {
    opacity: 1;
    transform: none;
}

body.js-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

body.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Navigation
   ===================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(221, 227, 234, 0.82);
    background: rgba(248, 250, 251, 0.94);
    box-shadow: 0 10px 30px rgba(11, 23, 41, 0.045);
    backdrop-filter: blur(18px);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    min-height: 72px;
}

.logo {
    flex: 0 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    display: grid;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.1;
}

.tagline {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.18rem;
    min-height: 46px;
    border: 1px solid rgba(221, 227, 234, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 22px rgba(11, 23, 41, 0.04);
    list-style: none;
    margin-left: auto;
    padding: 0.22rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 6px;
    color: #3c4759;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1;
    padding: 0.62rem 0.82rem;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f1f5f8;
    color: var(--navy);
    box-shadow: inset 0 0 0 1px rgba(47, 95, 159, 0.08);
}

.nav-cta {
    min-height: 38px;
    background: var(--navy);
    color: #fff !important;
    margin-left: 0.15rem;
    padding-inline: 0.9rem !important;
}

.nav-cta:hover {
    background: #1b2c43 !important;
    color: #fff !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 20;
    min-width: 255px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 23, 41, 0.12);
    overflow: hidden;
    padding: 0.4rem;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
    display: grid;
}

.dropdown-content a {
    justify-content: flex-start;
    min-height: 38px;
    width: 100%;
    border-radius: 6px;
    color: #344055;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(221, 227, 234, 0.95);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    padding: 0.65rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   Homepage
   ===================================================== */

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    width: min(100% - 40px, 1260px);
    min-height: calc(100svh - 72px);
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6.75rem) 0 4rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -4vw 2rem 48%;
    height: 76%;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(248, 250, 251, 0.96), rgba(248, 250, 251, 0.74)),
        repeating-linear-gradient(0deg, rgba(47, 95, 159, 0.045) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(47, 95, 159, 0.045) 0 1px, transparent 1px 28px);
    z-index: -1;
}

.hero-content {
    max-width: 760px;
}

.hero-copy {
    max-width: 690px;
    color: #596577;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.8rem 0 2rem;
}

.cta-button,
.cta-button-secondary,
.submit-button,
.submit-btn,
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--magenta);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.1;
    padding: 0.85rem 1.15rem;
    text-align: center;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cta-button:hover,
.submit-button:hover,
.submit-btn:hover,
.form-submit:hover {
    background: var(--magenta-dark);
    box-shadow: 0 12px 24px rgba(121, 34, 71, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.secondary-cta,
.cta-button-secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
}

.secondary-cta:hover,
.cta-button-secondary:hover {
    background: #f2f5f7;
    color: var(--navy);
    box-shadow: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-stats div {
    padding: 1rem;
}

.hero-stats div + div {
    border-left: 1px solid var(--line);
}

.hero-stats strong {
    display: block;
    color: var(--navy);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    border: 1px solid rgba(11, 23, 41, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    display: block;
    height: 9px;
    background: linear-gradient(90deg, var(--navy), var(--blue), #8b526b);
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
}

.system-card {
    position: absolute;
    display: grid;
    gap: 0.1rem;
    min-width: 148px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(11, 23, 41, 0.84);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
    color: #fff;
    padding: 0.85rem;
    backdrop-filter: blur(10px);
}

.system-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.system-card strong {
    color: #fff;
    font-size: 1.02rem;
}

.uptime-card {
    left: 1rem;
    bottom: 1rem;
}

.ticket-card {
    right: 1rem;
    top: 2rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    width: min(100% - 40px, var(--max));
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    margin: 0 auto 2rem;
    overflow: hidden;
}

.trust-strip span {
    display: grid;
    min-height: 64px;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    color: #6a7482;
    font-size: 0.86rem;
    font-weight: 850;
    text-align: center;
    padding: 0.75rem;
}

.strategic-solutions,
.services-overview,
.pricing-packages,
.quick-links-section,
.features-section,
.next-steps-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.strategic-solutions {
    background: var(--soft);
}

.solutions-header,
.pricing-header {
    display: grid;
    gap: 0.4rem;
    max-width: 760px;
    margin-bottom: 2rem;
}

.solutions-header p,
.pricing-header p,
.services-intro,
.form-intro,
.enterprise-intro,
.benefits-closing {
    color: var(--muted);
    font-size: 1.05rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.solution-card,
.price-card,
.service-item,
.step-card,
.feature-card,
.quick-link-card,
.value-item,
.benefit-card,
.expertise-item,
.testimonial,
.pricing-tier,
.feature-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(11, 23, 41, 0.045);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card:hover,
.price-card:hover,
.service-item:hover,
.step-card:hover,
.feature-card:hover,
.quick-link-card:hover,
.value-item:hover,
.benefit-card:hover,
.expertise-item:hover,
.testimonial:hover,
.pricing-tier:hover,
.feature-box:hover {
    border-color: rgba(47, 95, 159, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.solution-card,
.step-card,
.feature-card,
.quick-link-card,
.value-item,
.benefit-card,
.expertise-item,
.testimonial,
.feature-box {
    padding: 1.3rem;
}

.solution-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    background: #eef3f7;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.solution-card p,
.service-item p,
.step-card p,
.feature-card p,
.quick-link-card p,
.value-item p,
.benefit-card p,
.expertise-item p,
.testimonial p {
    font-size: 0.94rem;
}

.solution-link,
.service-link,
.quick-link-card a,
.inquiry-link,
.footer-action {
    color: var(--magenta);
    font-weight: 850;
}

.solution-link:hover,
.service-link:hover,
.quick-link-card a:hover,
.inquiry-link:hover,
.footer-action:hover {
    color: var(--magenta-dark);
}

.pricing-packages {
    background: #f9fafb;
}

.billing-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    margin-top: 0.8rem;
    padding: 0.25rem;
}

.billing-option {
    min-width: 96px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 850;
    padding: 0.6rem 0.8rem;
}

.billing-option.active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    box-shadow: 0 8px 18px rgba(6, 21, 45, 0.08);
}

.pricing-grid,
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.price-card,
.pricing-tier {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    position: relative;
}

.price-card::before,
.pricing-tier::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: var(--blue);
}

.premium-card,
.featured {
    border-color: rgba(155, 49, 95, 0.28);
    box-shadow: var(--shadow);
}

.premium-card::before,
.featured::before {
    background: var(--magenta);
}

.enterprise-card::before {
    background: var(--orange);
}

.price-card.is-selected {
    outline: 3px solid rgba(155, 49, 95, 0.13);
    border-color: var(--magenta);
}

.card-badge,
.tier-badge,
.enterprise-badge {
    display: inline-flex;
    width: fit-content;
    min-height: 26px;
    align-items: center;
    border-radius: 6px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    margin: 0.4rem 0 1rem;
    padding: 0.38rem 0.6rem;
    text-transform: uppercase;
}

.premium-card .card-badge,
.featured .tier-badge {
    background: rgba(155, 49, 95, 0.09);
    color: var(--magenta);
}

.enterprise-card .card-badge,
.enterprise-badge {
    background: rgba(201, 122, 34, 0.1);
    color: #8f571d;
}

.card-subtitle,
.tier-subtitle,
.tier-note {
    color: var(--muted);
    font-size: 0.94rem;
}

.price-tag,
.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.9rem 0;
}

.price,
.amount {
    color: var(--navy);
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.price-period,
.period {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
}

.card-features,
.tier-features,
.enterprise-features,
.service-list,
.benefits-list {
    display: grid;
    gap: 0.6rem;
    list-style: none;
    margin: 0.75rem 0 1.25rem;
    padding: 0;
}

.card-features {
    flex: 1;
}

.card-features li,
.tier-features li,
.enterprise-features li,
.service-list li,
.benefits-list li {
    color: #354155;
    font-size: 0.92rem;
    padding-left: 1.55rem;
    position: relative;
}

.card-features li::before,
.tier-features li::before,
.enterprise-features li::before,
.service-list li::before,
.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.44rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.price-card .cta-button {
    width: 100%;
    margin-top: auto;
}

.card-disclaimer,
.form-disclaimer {
    color: var(--muted);
    font-size: 0.8rem;
    margin: 0.8rem 0 0;
    text-align: center;
}

.services-overview {
    background:
        linear-gradient(180deg, rgba(244, 246, 248, 0.96), rgba(244, 246, 248, 0.96)),
        radial-gradient(circle at 80% 20%, rgba(47, 95, 159, 0.08), transparent 32%);
}

.services-container > h2 {
    max-width: 760px;
}

.steps-grid,
.services-grid,
.features-grid,
.features-grid-enterprise,
.quick-links-grid,
.values-grid,
.benefits-showcase,
.expertise-grid,
.service-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.services-grid,
.features-grid,
.quick-links-grid,
.values-grid,
.benefits-showcase,
.expertise-grid,
.service-features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-number,
.service-icon,
.section-icon,
.value-icon,
.benefit-icon,
.expertise-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: #eef3f7;
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-subtitle,
.service-tagline {
    color: var(--magenta);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.package-links {
    display: grid;
    gap: 0.8rem;
}

.package-option {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    padding: 1rem;
}

.package-option .cta-button {
    min-height: 38px;
    padding: 0.65rem 0.9rem;
}

.services-container > .cta-button {
    margin-top: 1.5rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1729 0%, #132238 100%);
    color: #fff;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    text-align: center;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.cta-section h2 {
    max-width: 780px;
    color: #fff;
}

.cta-section p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-section .section-kicker {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cta-main-text {
    font-size: 1.1rem;
}

.business-essentials-banner {
    border-top: 1px solid var(--line);
    background: var(--soft);
    padding: 2.2rem 0;
}

.banner-content {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.business-essentials-banner h2 {
    text-align: center;
}

/* =====================================================
   Secondary Pages
   ===================================================== */

.page-header {
    background:
        linear-gradient(90deg, rgba(11, 23, 41, 0.94), rgba(19, 34, 56, 0.84)),
        radial-gradient(circle at 80% 20%, rgba(155, 49, 95, 0.2), transparent 32%);
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.page-header h2,
.page-header p {
    color: #fff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto;
    max-width: 740px;
}

.about-content,
.services-content,
.contact-content,
.signup-section,
.enterprise-inquiry-section,
.service-selection-form,
.ai-intro-section,
.features-section,
.next-steps-section {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.about-section,
.service-section,
.contact-wrapper,
.signup-container,
.enterprise-container,
.features-container,
.next-steps-container,
.form-container {
    width: min(100% - 40px, var(--max));
    margin-inline: auto;
}

.about-section,
.service-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}

.about-section:last-child,
.service-section:last-child {
    border-bottom: 0;
}

.section-header,
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section-intro,
.service-intro,
.why-customize,
.business-size-notice,
.selected-package-display,
.signup-benefits {
    border-left: 4px solid var(--magenta);
    border-radius: 8px;
    background: var(--soft);
    color: var(--muted);
    margin: 1rem 0;
    padding: 1.1rem;
}

.ai-intro-section,
.quick-links-section {
    background: var(--soft);
}

.contact-wrapper,
.signup-container,
.enterprise-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-form,
.signup-form,
.enterprise-form,
.service-form,
.form-container {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-group label,
.checkbox-label,
.checkbox-group label {
    color: var(--ink);
    display: block;
    font-weight: 750;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 0.78rem 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(17, 100, 216, 0.12);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
    padding: 0.75rem;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--magenta);
}

.form-message {
    display: none;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 0.9rem;
}

.form-message.success {
    display: block;
    border: 1px solid rgba(27, 159, 101, 0.28);
    background: rgba(27, 159, 101, 0.1);
    color: #116c45;
}

.form-message.error {
    display: block;
    border: 1px solid rgba(217, 45, 32, 0.28);
    background: rgba(217, 45, 32, 0.1);
    color: var(--danger);
}

.info-item,
.social-links {
    margin-bottom: 1.35rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--blue);
    font-weight: 800;
    padding: 0.55rem 0.75rem;
}

.pricing-tiers {
    margin-top: 1.5rem;
}

.tier-select {
    margin-top: auto;
}

.enterprise-tier {
    border-color: rgba(255, 133, 0, 0.3);
}

.features-grid-enterprise {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
    min-height: 210px;
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: #071222;
    color: rgba(255, 255, 255, 0.72);
    padding: 3rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer a:hover,
.footer-action {
    color: #fff;
}

.footer ul {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    width: min(100% - 40px, var(--max));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 2rem auto 0;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero::before {
        inset: auto 0 1rem 0;
        height: 48%;
    }

    .hero-visual {
        max-width: 760px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid,
    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .navbar-container {
        flex-wrap: wrap;
        min-height: 70px;
        padding-block: 0.65rem;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid var(--line);
        padding-top: 0.75rem;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a,
    .nav-cta {
        justify-content: flex-start;
        width: 100%;
        margin-left: 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        min-width: 100%;
        margin-top: 0.35rem;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip span:last-child {
        grid-column: span 2;
    }

    .hero-stats,
    .steps-grid,
    .contact-wrapper,
    .signup-container,
    .enterprise-container {
        grid-template-columns: 1fr;
    }

    .hero-stats div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .system-card {
        position: static;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-visual {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container,
    .navbar-container,
    .solutions-container,
    .pricing-container,
    .services-container,
    .footer-container,
    .about-section,
    .service-section,
    .contact-wrapper,
    .signup-container,
    .enterprise-container,
    .features-container,
    .next-steps-container,
    .form-container,
    .banner-content,
    .footer-bottom,
    .hero,
    .trust-strip {
        width: min(100% - 28px, var(--max));
    }

    .logo-text {
        font-size: 0.86rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .hero-cta-group,
    .social-links {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary,
    .submit-button,
    .submit-btn,
    .form-submit {
        width: 100%;
    }

    .solutions-grid,
    .trust-strip,
    .form-row,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .trust-strip span:last-child {
        grid-column: auto;
    }

    .section-header,
    .service-header {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
