@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* =========================================
   RATETAP "HYPER-POLISHED STUDIO" (2026)
   ========================================= */
:root {
    --brand-blue: #2D9CDB;
    --brand-charcoal: #0F172A;
    --brand-gold: #F2C94C;

    --text-primary: #0F172A;
    --text-secondary: #475569;

    --shadow-glow: 0 0 80px rgba(45, 156, 219, 0.15);
    --shadow-float: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    --shadow-glass: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 8px 32px rgba(0, 0, 0, 0.04);

}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

/* =========================================
   ATMOSPHERIC DEPTH (MESH & NOISE)
   ========================================= */
.ambient-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background-color: #FAFCFF;
}

.ambient-canvas::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background-image:
        radial-gradient(ellipse at 80% 0%, rgba(45, 156, 219, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(242, 201, 76, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 0.8) 100%);
    filter: blur(60px);
    animation: pulseAmbient 20s ease-in-out infinite alternate;
}

@keyframes pulseAmbient {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Micro-noise for high-end tactile feel */
.ambient-canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    color: var(--brand-charcoal);
    line-height: 1;
}

.serif-italic {
    font-style: italic;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1A85C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.1em;
}

/* =========================================
   NAVBAR (FLOATING GLASS SHELF)
   ========================================= */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(96%, 1300px);
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 1000;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-glass);
    padding: 0 1rem 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.nav-hidden {
    transform: translate(-50%, calc(-100% - 2rem));
}

.nav-brand img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-lang-toggle {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-lang-toggle:hover {
    color: var(--brand-charcoal);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    color: var(--brand-charcoal);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    margin-left: 0.35rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px -12px rgba(15, 23, 42, 0.35);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -14px rgba(15, 23, 42, 0.38);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 3px;
}

.nav-toggle.active {
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--brand-charcoal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-out, height 0.4s ease-out;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--brand-charcoal);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(15, 23, 42, 0.4);
    background: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--brand-charcoal);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

/* =========================================
   HERO (VIEWPORT LOCKED)
   ========================================= */
.hero {
    /* Critical: Lock the hero to the viewport height */
    height: 100dvh;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for navbar */
    position: relative;
    overflow: hidden;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--brand-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.hero h1 {
    font-size: clamp(4rem, 7vw, 6.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* =========================================
   MOCKUP (PHYSICAL HARDWARE IN VIEWPORT)
   ========================================= */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Creates a subtle glowing aura behind the phone */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
}

.product-proof {
    position: relative;
    /* Scales perfectly within the viewport */
    height: clamp(550px, 75vh, 720px);
    aspect-ratio: 1 / 2;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

/* Hyper-realistic Phone */
.phone-shell {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        inset 0 0 0 1px #e5e7eb,
        inset 0 0 0 4px #f1f5f9;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.2);
}

.phone-screen-stack {
    position: relative;
    background: #fff;
    border-radius: 36px;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.phone-screen-state {
    position: absolute;
    inset: 0;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: screenCycle 12s infinite;
    background: #ffffff;
}

.screen-rating {
    animation-delay: 0s;
}

.screen-low {
    animation-delay: 4s;
}

.screen-high {
    animation-delay: 8s;
}

@keyframes screenCycle {

    0%,
    30% {
        opacity: 1;
        z-index: 10;
    }

    33%,
    100% {
        opacity: 0;
        z-index: 0;
    }
}

/* Hovering NFC Card */
.nfc-card-render {
    position: absolute;
    left: -20%;
    bottom: 10%;
    width: 90%;
    aspect-ratio: 1.6 / 1;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    transform: rotate(-6deg) scale(1.05);
    z-index: 20;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nfc-card-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.nfc-card-body span {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.nfc-card-body strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    color: white;
}

/* Phone UI Typography */
.screen-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.screen-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.screen-title {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--brand-charcoal);
    line-height: 1.05;
}

.rating-row {
    color: var(--brand-gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.25rem;
}

.feedback-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feedback-chips span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    border: 1px solid #e2e8f0;
}

/* Mockup Buttons */
.mockup-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mockup-btn-muted {
    background: #f1f5f9;
    color: #64748b;
}

.mockup-btn-primary {
    background: var(--brand-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 156, 219, 0.3);
}

.mockup-btn-outline {
    background: white;
    color: var(--brand-charcoal);
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.bg-muted {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

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

/* Cards & Features */
.card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), #1A85C4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(45, 156, 219, 0.1) 0%, rgba(45, 156, 219, 0.02) 100%);
    border: 1px solid rgba(45, 156, 219, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-icon-wrapper {
    background: var(--brand-blue);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(45, 156, 219, 0.3);
}

.card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
    font-weight: 800;
}

.card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .navbar {
        width: 95%;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .product-proof {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-eyebrow {
        margin-inline: auto;
    }

    .hero-eyebrow::before {
        display: none;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .nfc-card-render {
        left: 50%;
        transform: translateX(-50%) rotate(-4deg);
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: min(96%, 760px);
        padding: 0.9rem 1rem 0.9rem 1.1rem;
        min-height: 76px;
        height: auto;
        border-radius: 20px;
        top: 1rem;
        gap: 0.5rem;
        position: fixed;
        justify-content: flex-start;
    }

    .nav-brand img {
        height: 58px;
        width: auto;
        object-fit: contain;
    }

    .nav-actions {
        margin-left: auto;
        gap: 0.45rem;
        flex-shrink: 0;
    }

    .nav-lang-toggle {
        margin-right: 0 !important;
        padding: 0.4rem 0.62rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(255, 255, 255, 0.75);
        font-size: 0.88rem !important;
        line-height: 1;
    }

    .nav-actions .btn.btn-primary {
        padding: 0.66rem 1rem !important;
        font-size: 0.9rem !important;
        min-height: 42px;
        white-space: nowrap;
        box-shadow: 0 10px 18px -12px rgba(15, 23, 42, 0.65);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        left: 0.7rem;
        right: 0.7rem;
        top: calc(100% + 0.7rem);
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.8rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.78);
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(18px) saturate(155%);
        -webkit-backdrop-filter: blur(18px) saturate(155%);
        box-shadow: 0 24px 48px -26px rgba(15, 23, 42, 0.46);
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, max-height 0.24s ease;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
        pointer-events: auto;
        max-height: 320px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.55rem 0.85rem;
        border-radius: 12px;
        font-weight: 700;
        color: var(--brand-charcoal);
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-link:hover {
        color: var(--brand-charcoal);
        background: rgba(45, 156, 219, 0.12);
        border-color: rgba(45, 156, 219, 0.26);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 900;
        background: rgba(15, 23, 42, 0.2);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 560px) {
    .navbar {
        padding: 0.85rem;
        gap: 0.35rem;
    }

    .nav-brand img {
        height: 50px;
    }

    .nav-actions .btn.btn-primary {
        padding: 0.62rem 0.82rem !important;
        font-size: 0.82rem !important;
    }

    .nav-lang-toggle {
        padding: 0.38rem 0.48rem;
        font-size: 0.8rem !important;
    }
}

/* ADDITIONAL SECTIONS */

/* Trust Strip */
.trust-strip {
    padding: 2rem 0;
    margin-top: -4rem;
    /* overlaps the hero slightly */
    position: relative;
    z-index: 10;
}

.trust-strip-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trust-strip-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 800;
    color: var(--brand-charcoal);
    font-size: 1.15rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.trust-item i {
    color: var(--brand-blue);
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 156, 219, 0.15) 0%, rgba(45, 156, 219, 0.05) 100%);
    border-radius: 50%;
    border: 1px solid rgba(45, 156, 219, 0.2);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-item:hover i {
    transform: scale(1.15) rotate(5deg);
    background: var(--brand-blue);
    color: white;
    box-shadow: 0 8px 16px rgba(45, 156, 219, 0.3);
}

@media (max-width: 992px) {
    .trust-strip {
        margin-top: 0;
        padding: 2rem 0;
    }

    .trust-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .trust-item {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Steps & Process */
.step-card {
    padding: 3rem;
    background: transparent;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(45, 156, 219, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transform: translateY(-6px);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-family: 'Instrument Serif', serif;
    font-size: 5rem;
    color: rgba(45, 156, 219, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-question i {
    color: var(--brand-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    padding: clamp(5rem, 8vw, 6.5rem) 0 3rem;
    background:
        radial-gradient(115% 150% at 88% -30%, rgba(45, 156, 219, 0.18) 0%, rgba(45, 156, 219, 0) 58%),
        radial-gradient(120% 120% at -12% -24%, rgba(242, 201, 76, 0.07) 0%, rgba(242, 201, 76, 0) 52%),
        linear-gradient(180deg, #0F172A 0%, #0B1324 100%);
    color: #E4EDF8;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(45, 156, 219, 0) 0%, rgba(45, 156, 219, 0.55) 50%, rgba(45, 156, 219, 0) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -210px;
    right: -180px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(45, 156, 219, 0.24) 0%, rgba(45, 156, 219, 0.06) 40%, rgba(45, 156, 219, 0) 70%);
    filter: blur(10px);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(140px, 1fr));
    gap: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 2.7rem;
    align-items: start;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    width: min(160px, 100%);
    height: auto;
}

.footer-brand p {
    color: rgba(226, 237, 251, 0.78) !important;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 1rem;
    color: rgba(233, 243, 255, 0.9);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: rgba(191, 209, 230, 0.86);
    text-decoration: none;
    margin-bottom: 0.45rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.24s ease, transform 0.24s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-links a:focus-visible,
.social-links a:focus-visible,
.legal-links a:focus-visible {
    outline: 2px solid #7CC8F4;
    outline-offset: 3px;
    border-radius: 6px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F1F6FF;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-links a:hover {
    background: rgba(45, 156, 219, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.65rem;
    margin-top: 0.2rem;
    color: rgba(163, 184, 208, 0.78);
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0) 0%, rgba(148, 163, 184, 0.4) 50%, rgba(148, 163, 184, 0) 100%);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.legal-links a {
    color: rgba(191, 209, 230, 0.84);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.24s ease, opacity 0.24s ease;
}

.legal-links a:hover {
    color: #FFFFFF;
    opacity: 1;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.mobile-sticky-cta-btn {
    width: 100%;
    display: flex !important;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(45, 156, 219, 0.2) !important;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        text-align: center;
    }

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-brand p {
        margin-inline: auto;
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        gap: 1rem;
    }

    /* Reveal sticky cta on mobile */
    .mobile-sticky-cta {
        display: block;
    }

    body.has-mobile-sticky-cta {
        padding-bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .social-links a,
    .legal-links a {
        transition: none;
    }

    .footer-links a:hover,
    .social-links a:hover {
        transform: none;
    }
}

/* Utilities Helper */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* FEATURES LIST */
.feature-list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-list-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-charcoal);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Calculators and Forms */
.calc-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1rem;
    background: white;
}

/* Grid System Updates */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-card--featured {
    grid-column: 1 / -1;
    background: var(--brand-charcoal);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pricing-card--featured:hover {
    background: #000;
}

.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 156, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card__eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.pricing-card--featured .pricing-card__eyebrow {
    color: rgba(45, 156, 219, 0.8);
}

.pricing-card__price {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--brand-charcoal);
}

.pricing-card--featured .pricing-card__price {
    color: white;
}

.pricing-card__unit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-card--featured .pricing-card__unit {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-card--featured .pricing-card__desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.pricing-includes li i {
    color: var(--brand-blue);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.pricing-examples {
    max-width: 960px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.pricing-examples__header {
    padding: 2rem 3rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-charcoal);
}

.pricing-examples table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pricing-examples th {
    text-align: left;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-examples td {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    color: var(--brand-charcoal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-examples tr:last-child td {
    border-bottom: none;
}

.pricing-examples td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-examples td:nth-child(3) {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brand-charcoal);
}

.pricing-examples td:nth-child(4) {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card--featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    /* Collapse all 2-col grids inside pricing section */
    #pricing .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .pricing-examples th,
    .pricing-examples td {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .pricing-examples td:nth-child(3) {
        font-size: 1.05rem;
    }
}

@media (max-width: 560px) {
    .pricing-examples th:nth-child(4),
    .pricing-examples td:nth-child(4) {
        display: none;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
