:root {
    /* Color Tokens */
    --blue-dark: #003b73;
    --blue: #00509d;
    --blue-light: #0074d9;
    --orange: #ff8a00;
    --orange-dark: #ff6f00;
    --bg-light: #f5f7fb;
    --bg-lighter: #fbfcff;
    --text-main: #0b192e;

    /* Layout Tokens */
    --radius: 16px;
    --shadow-soft: 0 18px 45px rgba(15, 24, 40, 0.12);

    /* Type Scale - Base Sizes */
    --text-xs: 0.75rem;
    /* 12px - small badges, pills */
    --text-sm: 0.875rem;
    /* 14px - labels, captions, small UI */
    --text-base: 1rem;
    /* 16px - body text baseline */
    --text-lg: 1.125rem;
    /* 18px - large body, card titles */

    /* Fluid Type Scale - Responsive Headings */
    --text-xl: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    /* 20-24px */
    --text-2xl: clamp(1.5rem, 3vw + 0.75rem, 2rem);
    /* 24-32px */
    --text-3xl: clamp(1.75rem, 3vw + 1rem, 2.4rem);
    /* 28-38px */
    --text-4xl: clamp(2rem, 4vw + 1rem, 3rem);
    /* 32-48px */
    --text-5xl: clamp(2.6rem, 4vw + 1.5rem, 3.4rem);
    /* 42-54px */

    /* Semantic Typography Tokens */
    --heading-1: var(--text-5xl);
    --heading-2: var(--text-4xl);
    --heading-3: var(--text-3xl);
    --heading-4: var(--text-2xl);
    --heading-5: var(--text-xl);
    --heading-6: var(--text-lg);

    --body-large: var(--text-lg);
    --body-base: var(--text-base);
    --body-small: var(--text-sm);
    --caption: var(--text-xs);
    --label-text: var(--text-sm);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
}

.text-muted {
    opacity: .85;
}

/* Layout helpers */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 0;
    }
}

.section-title {
    font-size: var(--heading-3);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--blue-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-subtitle {
    max-width: 640px;
    font-size: var(--text-lg);
    opacity: 0.78;
    line-height: 1.75;
}

.section-title-light {
    color: #f9fafb;
}

.section-subtitle-light {
    color: #cbd5f5;
}

/* Header */

header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.75));
    border-bottom: 1px solid rgba(15, 24, 40, 0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.nav-logo {
    font-weight: 700;
    color: var(--blue-dark);
    letter-spacing: 0.03em;
    font-size: var(--text-2xl);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: var(--body-base);
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    position: relative;
    padding-bottom: 2px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 50;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--blue-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 280px);
    /* Don't cover the menu width */
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Links */
@media (max-width: 899px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 50;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(15, 24, 40, 0.08);
        font-size: var(--body-base);
    }

    .nav-links a::after {
        display: none;
    }

    /* Hide desktop CTA button on mobile */
    .nav-cta {
        display: none;
    }

    /* Mobile CTA button clone inside menu */
    .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: linear-gradient(90deg, var(--orange), var(--orange-dark));
        color: #fff;
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        font-size: var(--body-small);
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
        margin-top: 1rem;
        justify-content: center;
        border-bottom: none !important;
    }

    .nav-cta-mobile svg {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 900px) {
    .nav-cta-mobile {
        display: none;
    }

    .nav-toggle {
        display: none;
    }

    .nav-overlay {
        display: none;
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: linear-gradient(90deg, var(--orange), var(--orange-dark));
        color: #fff;
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        font-size: var(--body-small);
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
    }

    .nav-cta svg {
        width: 16px;
        height: 16px;
    }
}

/* Hero */

.hero {
    position: relative;
    background: radial-gradient(circle at top left, #0b2347 0, #00152b 42%, #020813 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 4.5rem;
        padding-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 5.5rem;
        padding-bottom: 7.5rem;
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-inner {
        gap: 3rem;
    }
}

@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 3.5rem;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--body-small);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-eyebrow-badge {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--orange), var(--orange-dark));
}

.hero-title {
    font-size: var(--heading-1);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(120deg, #fbbf24, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: var(--body-large);
    max-width: 520px;
    opacity: 0.9;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: var(--body-base);
    color: #0b0b12;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 16px 45px rgba(249, 115, 22, 0.45);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.4);
    color: #e5e7eb;
    font-size: var(--body-small);
    text-decoration: none;
    font-weight: 500;
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: var(--body-small);
    opacity: 0.8;
    line-height: 1.5;
}

.hero-meta strong {
    font-size: var(--body-base);
}

.hero-visual {
    position: relative;
}

@media (max-width: 899px) {
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

.hero-orbit {
    width: 360px;
    height: 360px;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.4);
    position: absolute;
    top: -4rem;
    right: -2rem;
    transform: rotate(-8deg);
}

@media (max-width: 768px) {
    .hero-orbit {
        width: 280px;
        height: 280px;
        right: -1rem;
        top: -2rem;
    }
}

.hero-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    top: -2rem;
    right: -3rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent 65%);
    filter: blur(18px);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-blob {
        width: 300px;
        height: 300px;
        right: -1.5rem;
        opacity: 0.4;
    }
}

.hero-card-main {
    position: relative;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #0b172d, #020617);
    box-shadow: var(--shadow-soft);
    padding: 1.3rem 1.3rem 1.1rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-card-main img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 0.9rem;
    display: block;
}

.hero-card-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    font-size: var(--body-small);
    color: #e5e7eb;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: #bbf7d0;
    font-size: var(--text-xs);
    letter-spacing: 0.01em;
}

.hero-card-metrics {
    display: flex;
    gap: 1rem;
    font-size: var(--text-xs);
    color: #9ca3af;
}

.hero-floating-card {
    position: absolute;
    bottom: -0.75rem;
    left: -1rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.hero-floating-card i,
.hero-mini-card i {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.hero-floating-card span {
    font-size: var(--text-xs);
    color: #e5e7eb;
}

.hero-mini-card {
    position: absolute;
    top: -0.7rem;
    right: -0.3rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    font-size: var(--text-xs);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #e5e7eb;
}

/* Highlight badges under hero */
/* TRUST STRIPE – enhanced */
.stripe {
    background: linear-gradient(180deg,
            #ffffff 0%,
            var(--bg-lighter) 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.stripe-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .stripe-inner {
        grid-template-columns: 1fr;
    }
}

/* LEFT SIDE */
.stripe-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stripe-left img {
    width: 140px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.stripe-copy h3 {
    font-size: var(--heading-5);
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0.4rem;
}

.stripe-copy p {
    font-size: var(--body-base);
    color: #475569;
    max-width: 420px;
}

/* RIGHT SIDE – metrics */
.stripe-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .stripe-right {
        grid-template-columns: 1fr 1fr;
    }
}

.stripe-metric {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.stripe-metric strong {
    display: block;
    font-size: var(--heading-3);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.2rem;
}

.stripe-metric span {
    font-size: var(--body-small);
    color: #475569;
    line-height: 1.3;
}


/* Services section */

.services {
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        gap: 1.8rem;
    }
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(15, 24, 40, 0.04);
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.8rem 2.5rem;
    }
}

.service-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, var(--orange), var(--orange-dark));
    margin-bottom: 1rem;
    color: #fff;
}

.service-icon-wrap i {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    font-size: var(--heading-6);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: var(--body-base);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--orange);
    font-size: var(--body-small);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    z-index: 2;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.service-link:hover {
    color: var(--orange-dark);
    gap: 0.6rem;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.16), transparent 68%);
    filter: blur(12px);
}

/* Solutions (image + text, parallax image) */

.solutions {
    background: #fff;
}

.solutions-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .solutions-inner {
        gap: 3rem;
    }
}

@media (min-width: 900px) {
    .solutions-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
}

.solution-points {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.1rem;
}

.solution-line {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: var(--body-base);
    line-height: 1.65;
}

.solution-dot {
    margin-top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-light), var(--orange));
}

.solutions-visual {
    position: relative;
}

.solutions-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, #0b1b33, #020617);
    padding: 1.4rem 1.4rem 1.1rem;
    color: #e5e7eb;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.5);
    overflow: hidden;
}

.solutions-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.solutions-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: var(--text-xs);
}

.solutions-pill {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
}

.solutions-badge {
    position: absolute;
    top: -0.7rem;
    right: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    background: rgba(8, 47, 73, 0.96);
    color: #e0f2fe;
    display: inline-flex;
    gap: 0.3rem;
    align-items: center;
}

.solutions-badge span {
    color: #facc15;
    font-weight: 600;
}

/* Industries */

.industries {
    background: linear-gradient(120deg, var(--blue-dark), var(--blue));
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 65%);
    opacity: 0.9;
}

.industries-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }
}

.industry-pill {
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: var(--body-small);
    line-height: 1.6;
}

/* Case studies */

.cases {
    background: #fff;
}

.cases .section-title,
.cases .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

.case-card {
    border-radius: var(--radius);
    background: var(--bg-lighter);
    padding: 2rem 1.8rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.case-tag {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.06);
    font-size: var(--text-xs);
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.case-title {
    font-size: var(--body-base);
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.case-metrics {
    font-size: var(--body-small);
    opacity: 0.85;
    margin-top: 0.7rem;
    line-height: 1.65;
}

/* CTA band */

.cta-band {
    background: radial-gradient(circle at top left, #f97316 0, #ea580c 40%, #9a3412 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .cta-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 3rem;
    }
}

.cta-inner h2 {
    font-size: var(--heading-2);
    max-width: 520px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Contact */

.contact {
    background: var(--bg-light);
}

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

@media (min-width: 768px) {
    .contact-inner {
        gap: 3rem;
    }
}

@media (min-width: 900px) {
    .contact-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
}

form {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

@media (min-width: 768px) {
    form {
        padding: 2rem;
    }
}

label {
    font-size: var(--label-text);
    font-weight: 500;
    display: block;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.required {
    color: var(--orange);
    font-weight: 600;
    margin-left: 2px;
}

input,
textarea {
    width: 100%;
    margin-bottom: 1.2rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-family: inherit;
    font-size: 16px;
    /* Prevents zoom on iOS */
    outline: none;
    min-height: 44px;
    /* Touch-friendly */
    letter-spacing: 0.01em;
    line-height: 1.5;
}

@media (min-width: 768px) {

    input,
    textarea {
        font-size: var(--body-small);
    }
}

input:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footnote {
    font-size: var(--body-small);
    opacity: 0.7;
    margin-top: 0.2rem;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: var(--body-small);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */

footer {
    background: #020617;
    color: #e5e7eb;
    padding: 3rem 0 2rem;
    font-size: var(--text-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
    }
}

.footer-head {
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.footer-col a:hover {
    color: #e5e7eb;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: var(--text-2xl);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #9ca3af;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    font-size: var(--caption);
}

.badge-pill svg {
    width: 12px;
    height: 12px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e5e7eb;
    transition: all 0.2s ease;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Reveal helper class for GSAP */

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
}

/* CTA Band Button Enhancements */

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .cta-button-wrapper {
        align-items: flex-end;
    }
}

.cta-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #0b0b12 !important;
    padding: 1.1rem 2.2rem !important;
    font-size: var(--body-base) !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(135deg, #fcd34d, #fbbf24) !important;
}

.cta-btn i {
    width: 18px;
    height: 18px;
}

.cta-note {
    font-size: var(--body-small);
    opacity: 0.95;
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 320px;
    font-weight: 400;
}

/* Disable reveal animation on mobile */
@media (max-width: 767px) {
    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Animation Utilities */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}