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

:root {
    --orange: #ff7e16;
    --orange-light: #ffba82;
    --orange-dark: #e66a00;
    --blue: #0ea5e9;
    --blue-dark: #0369a1;
    --dark: #0a0f1b;
    --dark-section: #0f172a;
    --dark-card: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --green: #10b981;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter Regular';
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {font-family: 'Inter Black';}

h3, h4, h5, h6 {font-family: 'Inter Medium';}

p {font-family: 'Inter Regular';}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
}

.navbar-brand img {
    width: 90px;
    mix-blend-mode: screen;
}

.navbar-brand span {
    font-weight: 800;
    font-size: 2.30rem;
    color: var(--orange);
    letter-spacing: -0.02em;
    font-family: 'Inter Black';
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.90rem;
    padding: 10px 5px;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter Regular';
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    margin-left: 20px;
    font-size: 0.95rem !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 16px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .nav-links a {
        padding: 12px 16px;
    }
}



/* ─── HERO (company-level) ─── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        /* Brand glow: orange crown, blue flanks */
        radial-gradient(ellipse 60% 45% at 50% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 18% 65%, rgba(14, 165, 233, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 82% 65%, rgba(249, 115, 22, 0.09) 0%, transparent 55%),
        /* Subtle noise mesh — layered conic gradients for texture */
        conic-gradient(from 45deg at 25% 30%, rgba(14, 165, 233, 0.04) 0deg, transparent 60deg, transparent 180deg, rgba(249, 115, 22, 0.03) 240deg, transparent 360deg),
        conic-gradient(from 200deg at 75% 70%, rgba(249, 115, 22, 0.04) 0deg, transparent 90deg, transparent 200deg, rgba(14, 165, 233, 0.03) 300deg, transparent 360deg),
        /* Base */
        linear-gradient(165deg, #080d1a 0%, #0f172a 40%, #0c1220 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    /* Fine dot grid + subtle diagonal accent lines */
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 32px 32px, 64px 64px, 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── HERO LOGO — no white box ── */
.hero-logo-wrap {
    position: relative;
    margin-bottom: 36px;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, rgba(14, 165, 233, 0.10) 50%, transparent 72%);
    filter: blur(24px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-logo-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.12);
    animation: spin-slow 15s linear infinite;
}



.hero-logo-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: dot-color-shift 15s linear infinite;
    z-index: 10;
}

@keyframes dot-color-shift {

    /* 0% to 50% is the Right side (Orange side of logo) */
    0%,
    49.9% {
        background: var(--orange);
        box-shadow: 0 0 15px var(--orange), 0 0 30px var(--orange);
    }

    /* 50% to 100% is the Left side (Blue side of logo) */
    50%,
    100% {
        background: var(--blue);
        box-shadow: 0 0 15px var(--blue), 0 0 30px var(--blue);
    }
}



@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

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

.hero-logo {
    position: relative;
    z-index: 1;
    width: 140px;
    height: 140px;
    object-fit: contain;
    /* ── THE FIX: blend mode removes the white background entirely ── */
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.35));
}

@media (max-width: 600px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 60px 0 20px;
    }

    .hero-logo-wrap {
        width: 120px;
        height: 120px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    max-width: 760px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), #fb923c, var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero split layout ── */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 28px;
    text-align: left;
    max-width: 920px;
    width: 100%;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-top: 0;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ── Hero ownership (right column) ── */
.hero-right {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
}

.hero-ownership-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.3;
}

.hero-ownership-title span {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-own-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-own-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hero-own-point > i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-own-point strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.hero-own-point span {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

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

    .hero-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 28px;
    }

    .hero-own-point {
        text-align: left;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── SECTIONS ─── */
section {
    padding: 60px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 12px;
}

.about-section .section-title {
    color: var(--dark) !important;
}

.about-section .section-sub,
.about-section p {
    color: var(--gray-600) !important;
}


.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--blue) !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.05rem;
    /* color: var(--gray-600); */
    color: var(--orange);
    max-width: 620px;
    margin-top: 12px;
    line-height: 1.7;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ─── PRODUCT REVEAL (dark — extends hero immersion) ─── */
.product-reveal-section,
.product-reveal {
    background: var(--dark-section) !important;
    /* The Exact Slate-Blue from Reference */
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}


.product-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
}

.reveal-intro {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reveal-intro .section-title {
    margin-bottom: 16px;
    color: #fff;
}

.product-name-badge {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 18px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--orange-light);
}

.product-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.product-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 40px;
}

.product-desc strong {
    color: #fff;
}

/* ── ARCHITECTURE DIAGRAM ── */
.arch-wrap {
    margin-top: 56px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 900px) {
    .arch-wrap {
        flex-direction: column;
    }
}

.arch-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.arch-card.std-card {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.05);
}

.arch-card.console-card {
    border: 2px solid var(--orange);
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    justify-content: center;
}

/* --- CHECKERBOARD MOSAIC GRID (HOW IT WORKS) --- */
.how-section {
    background: #fff;
    padding: 60px 0;
}



.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}


.mosaic-cell {
    aspect-ratio: 1 / 1.05;
    /* Taller cells */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-cell:hover img {
    transform: scale(1.12);
}

.text-cell {
    background: #fcfbf5;
    /* Off-white cream */
    padding: 60px 40px;
    /* Increased padding for more height/width feel */
    text-align: center;
}


.cell-wrapper {
    max-width: 320px;
}

.cell-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #b5a48b;
    /* Gold/Tan */
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cell-line {
    width: 40px;
    height: 2px;
    background: var(--orange);
    margin: 15px auto;
}

.cell-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2e35;
    /* Deep dark teal/green */
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.cell-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1400px) {
    .mosaic-cell {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 1100px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .mosaic-cell {
        aspect-ratio: auto;
        min-height: 350px;
    }
}

.arch-card.prm-card {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
}

.card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.card-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    margin-top: 12px;
}

.card-content p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

.arch-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    font-weight: bold;
}

.arch-arrow.left-arrow {
    color: var(--blue);
}

.arch-arrow.right-arrow {
    color: var(--orange);
}

@media (max-width: 900px) {
    .arch-arrow {
        margin: 15px 0;
        font-size: 2.2rem;
    }

    .left-arrow {
        transform: rotate(90deg);
    }

    .right-arrow {
        transform: rotate(90deg);
    }
}




.node-pill {
    position: absolute;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2px 10px;
    border-radius: 100px;
    z-index: 10;
}

.node-pill.console {
    top: 12px;
    right: 14px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.node-pill.source-blue {
    background: rgba(14, 165, 233, 0.12);
    color: var(--blue);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.node-pill.source-orange {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.arch-ui-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-light);
    margin-bottom: 8px;
    margin-top: 12px;
}

.console-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.console-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.arch-ui-pills {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.arch-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.arch-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
}

.arch-tag.std {
    background: rgba(14, 165, 233, 0.12);
    color: var(--blue);
}

.arch-tag.prm {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.arch-wrap::before {
    display: none;
}


/* ─── COMPARISON ─── */
.compare-section {
    position: relative;
    background: var(--gray-50);
    padding: 60px 0;
    overflow: hidden;
}

.compare-section .section-title {
    color: var(--dark) !important;
}

.compare-section .section-sub {
    color: var(--gray-600);
    max-width: 700px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 0.94fr 0.98fr 1.08fr;
    gap: 24px;
    margin-top: 48px;
    align-items: end;
}

/* Staggered gentle fade-rise for compare cards */
.compare-grid.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.compare-grid .compare-card {
    opacity: 0;
    transform: translateY(24px);
}

.compare-grid.visible .compare-card {
    opacity: 1;
    transform: translateY(0);
    animation: gentleRise 0.7s ease-out backwards;
}

.compare-grid.visible .compare-card:nth-child(1) {
    animation-delay: 0.08s;
}

.compare-grid.visible .compare-card:nth-child(2) {
    animation-delay: 0.22s;
}

.compare-grid.visible .compare-card:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes gentleRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compare-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ── Height progression: short → medium → tall ── */
.compare-card.native {
    border: 2px solid var(--blue);
    padding: 24px 24px;
    opacity: 0.85;
}

.compare-card.native:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.1);
    opacity: 1;
}

.compare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.compare-card.shield {
    background: #ffffff;
    border: 2px solid #fbbf24;
    padding: 26px 24px;
    opacity: 0.9;
}

.compare-card.shield:hover {
    border-color: #f59e0b;
    box-shadow: 0 15px 45px rgba(245, 158, 11, 0.1);
    opacity: 1;
}

.compare-card.fhc {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 3px solid var(--orange);
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.25);
    padding: 64px 28px 44px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.compare-card.fhc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.compare-card.fhc:hover {
    border-color: var(--orange-light);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.3);
}

.compare-card-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.compare-card .compare-card-badge {
    background: var(--gray-100);
    color: var(--blue);
}

.compare-card.shield .compare-card-badge {
    background: #fef3c7;
    color: #92400e;
}

.compare-card.fhc .compare-card-badge {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.25);
    border: none;
}

.compare-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #000000;
}

.compare-card.shield h3 {
    font-size: 1.08rem;
}

.compare-card.fhc h3 {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.compare-card .compare-price {
    font-size: 0.78rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.compare-card.fhc .compare-price {
    color: var(--orange-light);
    font-weight: 700;
}

.compare-list {
    list-style: none;
    padding: 0;
}

.compare-list li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.compare-list li i {
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.compare-list .yes {
    color: var(--green);
}

.compare-card.fhc .compare-list li {
    color: rgba(255, 255, 255, 0.85);
}

.compare-card.fhc .compare-list .yes {
    color: var(--orange);
}

.compare-card.fhc .compare-list li strong {
    color: var(--orange);
    font-weight: 800;
}

.compare-list .no {
    color: #dc2626;
}

.compare-list .mid {
    color: #d97706;
}

@media (max-width: 900px) {
    .compare-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .compare-card.native,
    .compare-card.shield {
        padding: 32px 28px;
        opacity: 1;
    }

    .compare-card h3,
    .compare-card.shield h3 {
        font-size: 1.15rem;
    }
}

/* ─── FEATURES ─── */
.features-section {
    background: var(--dark-section);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(249, 115, 22, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

.features-section .section-badge {
    color: var(--orange-light);
}

.features-section .section-title {
    color: #0eabe3;
}

.features-section .section-sub {
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    margin-top: 56px;
    padding-bottom: 60px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}



.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    box-shadow: 0 0 0 2px var(--orange), 0 20px 50px rgba(249, 115, 22, 0.25);
    border-color: var(--orange);
    background: rgba(30, 41, 59, 0.85);
}

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

.feature-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.fi-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.fi-blue {
    background: rgba(14, 165, 233, 0.15);
    color: var(--blue);
}

.fi-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-bottom: 0;
    }
}

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

.hidden-feature {
    display: none;
}

.hidden-feature.show {
    display: flex;
    animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-actions {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ─── EDITIONS ─── */
.editions-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.editions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.editions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}

.edition-card {
    /* background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: all 0.3s;
}

.edition-card:hover {
    /* background: rgba(15, 23, 42, 0.6); */
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-lg); */
}

.edition-card.premium {
    border-color: var(--orange);
    border-width: 2px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.12) 0%, rgba(15, 23, 42, 0.5) 100%);
    box-shadow: 0 4px 32px rgba(249, 115, 22, 0.15);
}

.edition-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.edition-card.standard .edition-badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--blue);
}

.edition-card.standard {
    border-color: rgba(14, 165, 233, 0.3);
}

.edition-card.standard .edition-tagline {
    color: var(--blue);
}

.edition-card.premium .edition-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.edition-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-pill {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    display: inline-block;
    vertical-align: middle;
}

.price-pill.free {
    background: rgba(16, 185, 129, 0.12);
    color: var(--blue);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.price-pill.paid {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.edition-card .edition-tagline {
    font-size: 0.88rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 14px;
}

.edition-card p {
    font-size: 0.9rem;
    /* color: var(--gray-600); */
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.65;
}

.edition-features {
    list-style: none;
    padding: 0;
}

.edition-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    /* color: var(--gray-600); */
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edition-features li i {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.edition-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-edition {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-edition-std {
    background: rgba(14, 165, 233, 0.12);
    color: var(--blue);
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.btn-edition-std:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.2);
}

.btn-edition-prm {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-edition-prm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
}

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

/* ─── SPLIT SECTION (API) ─── */
.split-section {
    background: #ffffff;
    padding: 60px 0;
    color: #1a1a1a;
    position: relative;
}


.split-section .container {
    max-width: 1540px;
    /* Occupy the empty space */
}

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 3.2fr;
    gap: 64px;
    align-items: center;
}

/* LEFT SIDE IMAGE BOX */
.split-img-box {
    position: relative;
    height: 600px;
    border-radius: 24px;
    border-top-left-radius: 240px;
    /* Exact design from chef reference */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.split-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT SIDE CONTENT */
.split-content-box {
    padding: 20px 0;
}

.split-subtitle {
    color: #f97316;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.split-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
}

.split-title i {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
}

.split-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 100%;
}

/* CARDS ROW */
.split-cards {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.split-subcard {
    background: var(--dark);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

/* CARD 1: Endpoints */
.endpoints-card {
    padding: 24px 18px;
    background: #0f172a;
    /* Dark terminal look for code card */
}

.api-endpoints {
    font-family: 'Courier New', monospace;
}

.api-line {
    padding: 4px 0;
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.api-method {
    font-weight: 700;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.api-method.get {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.api-method.post {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.api-method.del {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.api-path {
    color: #e2e8f0;
}

.api-comment {
    color: #475569;
    font-style: italic;
    font-size: 0.68rem;
    margin-top: 10px;
    margin-bottom: 4px;
}

/* CARD 2: Text + Badges */
.text-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.text-card p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ai-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.ai-badge:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
}

.ai-badge i {
    color: #f97316;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-img-box {
        height: 400px;
        border-top-left-radius: 100px;
    }

    .split-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .split-subtitle,
    .split-desc {
        text-align: center;
    }

    .split-desc {
        margin-bottom: 24px;
    }

    .split-cards {
        grid-template-columns: 1fr;
        /* Stacking sub-cards */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .split-img-box {
        height: 300px;
    }

    .split-title {
        font-size: 1.9rem;
    }

    .api-line {
        font-size: 0.65rem;
        /* Shorter text on mobile */
    }

    .ai-badges {
        justify-content: center;
    }
}


/* [Old Carousel Styles Removed for Mosaic Grid Cleanup] */


/* Global Carousel Customization */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    margin: 0 6px;
}

.how-section .carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
    background-color: var(--orange) !important;
    width: 30px;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    color: var(--dark);
    z-index: 10;
}

.how-section .carousel-control-prev,
.how-section .carousel-control-next {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
}

.carousel-control-prev {
    left: -75px;
}

.carousel-control-next {
    right: -75px;
}

@media (max-width: 1200px) {
    .carousel-control-prev {
        left: -30px;
    }

    .carousel-control-next {
        right: -30px;
    }
}

/* ─── ABOUT SECTION REFINEMENT ─── */
.about-section {
    background: #fff;
    padding: 60px 0;
}





.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Static 2x2 highlights grid */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

#aboutCarousel {
    margin-top: 20px;
}

#aboutCarousel .carousel-inner {
    overflow: hidden;
    padding: 10px 0 60px;
}

#aboutCarousel .about-hl {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 30px;
    border-top: 5px solid var(--orange);
    text-align: center;
    max-width: 360px;
    /* Controlled width */
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#aboutCarousel .carousel-item:nth-child(even) .about-hl {
    border-top-color: var(--blue);
}

#aboutCarousel .about-hl i {
    font-size: 2.5rem;
    color: var(--orange);
    display: block;
    margin-bottom: 20px;
}

#aboutCarousel .carousel-item:nth-child(even) .about-hl i {
    color: var(--blue);
}

/* Position About arrows closer to card */
#aboutCarousel .carousel-control-prev {
    left: -50px;
}

#aboutCarousel .carousel-control-next {
    right: -50px;
}

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

    #aboutCarousel .carousel-control-prev,
    #aboutCarousel .carousel-control-next {
        display: none;
    }
}

.carousel-item:nth-child(even) .about-hl {
    border-top-color: var(--blue);
}


.about-hl {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px 24px;
    border-top: 4px solid var(--orange);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-hl:nth-child(even) {
    border-top-color: var(--blue);
}

.about-hl:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-hl i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
}

.about-hl:nth-child(even) i {
    color: var(--blue);
}

.about-hl h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-hl p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

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

/* ─── CONTACT ─── */
.contact-section {
    background: var(--dark);
    padding: 60px 0;
    color: #fff;
}


.contact-section .section-title {
    color: var(--blue);
}


.contact-section .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
    align-items: start;
}

.contact-info h3 {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-detail-text a,
.contact-detail-text strong {
    color: #0ea5e9;
    /* Sky Blue */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}


.contact-form {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px;
}


.contact-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    /* Reverting to white for visibility on dark background */
    margin-bottom: 6px;
    opacity: 0.8;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background: var(--dark-card);
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

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

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    padding: 28px 0;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0px;
}

.footer-brand img {
    height: 36px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.25));
}

.footer-brand span {
    font-weight: 800;
    color: var(--orange);
    font-size: 1.2rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--gray-400);
}

.footer-copy a {
    color: var(--orange);
    text-decoration: none;
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── FAQ ACCORDION ─── */
/* ─── FAQ RE-DESIGN (Split Layout) ─── */
.faq-section {
    background: #f8fafc;
    padding: 60px 0;
}


.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 3fr;
    /* Wider cards */
    gap: 80px;
    align-items: flex-start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header .section-title {
    font-size: 3.2rem;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #0ea5e9;
    /* Sky Blue */
}


.faq-header-image {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.faq-header-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.faq-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 24px 0 32px;
    max-width: 400px;
}

.faq-cta-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.faq-cta-link:hover {
    gap: 12px;
}

/* Individual Cards */
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    text-align: left;
    gap: 16px;
}

.faq-q span {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0ea5e9;
    transition: color 0.3s;
}


.faq-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2e35;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.open {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
}

.faq-item.open .faq-q span {
    color: var(--orange);
}

.faq-item.open .faq-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding-bottom: 32px;
}

.faq-a p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.faq-a strong {
    color: var(--orange);
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-header {
        position: static;
        text-align: center;
    }

    .faq-header .section-title {
        font-size: 2.5rem;
    }

    .faq-sub {
        margin: 20px auto 30px;
    }
}


/* ─── EARLY ACCESS STRIP ─── */
/* ─── EARLY ACCESS SECTION (Centered Card Style) ─── */
.beta-strip {
    background: #020617;
    padding: 80px 0;
    /* Reduced from 120px */
    position: relative;
    overflow: hidden;
}

.beta-strip-inner {
    max-width: 1040px;
    margin: 0 auto;
    background: #0a0f1b;
    border-radius: 32px;
    padding: 40px 60px;
    /* Reduced from 60px 80px */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* Subtle Grid Background inside the card */
.beta-strip-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(14, 165, 233, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    z-index: 0;
}

/* Glowing Border Accents */
.beta-glow-top {
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38bdf8, #f97316, transparent);
    z-index: 2;
}

.beta-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    z-index: 2;
}

.beta-strip-text {
    position: relative;
    z-index: 5;
    flex: 1;
}

.beta-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid #f97316;
    margin-bottom: 16px;
    /* Reduced from 24px */
}

.beta-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    color: #94a3b8;
    /* Muted gray for the secondary text */
    max-width: 600px;
    margin: 0;
}

.beta-title .text-white {
    color: #fff;
    display: block;
    /* Makes it look like the emphasized line in 2nd image */
}

/* The Call to Action Action Orange Button */
.beta-action {
    position: relative;
    z-index: 5;
}

.btn-beta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f97316;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-beta:hover {
    background: #fb923c;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

@media (max-width: 900px) {
    .beta-strip-inner {
        flex-direction: column;
        padding: 48px 32px;
        text-align: center;
        margin: 0 20px;
        gap: 32px;
    }

    .beta-title {
        font-size: 1.4rem;
    }

    .btn-beta {
        width: 100%;
        justify-content: center;
    }
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── VALUE BANNER SECTION (Premium Split Layout — No Image) ─── */
.banner-props {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 700px;
    background: #1e293b;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    gap: 60px;
    padding-bottom: 60px !important;
}

/* Header Area */
.props-header {
    width: 100%;
    text-align: center;
    padding: 0 5%;
    z-index: 5;
}

/* Body Area (2x2 Split) */
.props-body {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 5;
}

.prop-column {
    flex: 1;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center cards horizontally */
    gap: 16px;
}

/* Neutral background colors */
.side-left {
    background: transparent;
}

.side-right {
    background: transparent;
}

/* Points Card Styling */
.prop-card-v4 {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    width: 100%;
    max-width: 720px;
    /* Uniform width */
    min-height: 80px;
    /* Uniform height */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prop-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Specific Hover Highlights (Blue side) */
.side-left .prop-card-v4:hover {
    border-color: var(--blue);
    background: rgba(14, 165, 233, 0.05);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

/* Specific Hover Highlights (Orange side) */
.side-right .prop-card-v4:hover {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

.card-icon-v4 {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Color accents */
.side-left .card-icon-v4 {
    color: #38bdf8;
}

.side-right .card-icon-v4 {
    color: #f97316;
}

.card-text-v4 h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    /* Tighter spacing */
    letter-spacing: -0.01em;
}

.card-text-v4 p {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    margin: 0;
}

/* Footer (Centered Last Point) */
.props-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 6%;
    z-index: 5;
}

.item-centered {
    width: 100%;
    max-width: 600px;
    /* Matched uniform width */
    min-height: 100px;
    /* Matched uniform height */
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-centered:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    background: rgba(14, 165, 233, 0.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.item-centered .card-icon-v4 {
    color: var(--blue);
    /* Purple accent for the centered bonus point */
}

/* Responsive Re-ordering */
@media (max-width: 1000px) {
    .props-body {
        flex-direction: column;
    }

    .prop-column {
        padding: 0 24px;
        background: none;
    }

    .props-header {
        padding: 0 24px;
    }

    .banner-props {
        padding: 60px 0;
        gap: 32px;
    }

    .props-bottom {
        padding: 0 24px;
    }

    .item-centered {
        max-width: 100%;
    }
}

/* ─── ARCHITECTURE V2 (Console-on-top, sources-below) ─── */
.arch-v2 {
    max-width: 720px;
    margin: 48px auto 0;
    position: relative;
    z-index: 1;
}

/* Console window chrome */
.console-v2 {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--orange);
    box-shadow:
        0 0 0 1px rgba(249, 115, 22, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(249, 115, 22, 0.08);
}

.console-v2-chrome {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chrome-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.chrome-dot.red {
    background: #ff5f57;
}

.chrome-dot.yellow {
    background: #ffbd2e;
}

.chrome-dot.green {
    background: #28c840;
}

.chrome-title {
    margin-left: 12px;
    font-weight: 700;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.console-v2-body {
    padding: 28px 24px 32px;
    text-align: center;
}

.console-v2-pills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.console-v2-pills span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
}

.console-v2-ui-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--orange);
    margin-bottom: 14px;
}

.console-v2-tagline {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

/* Fork connector: vertical stem → horizontal bar → two colored legs */
.arch-fork-v2 {
    position: relative;
    height: 56px;
    width: 100%;
}

/* Vertical stem (center, from console down) */
.fork-stem {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* Horizontal bar */
.fork-bar {
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

/* Two legs going down */
.fork-legs {
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 36px;
}

.fork-leg {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
}

.fork-leg-blue {
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), var(--blue));
}

.fork-leg-orange {
    right: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), var(--orange));
}

/* Source cards row */
.arch-sources-v2 {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.source-v2 {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.source-v2:hover {
    transform: translateY(-4px);
}

.source-v2-std {
    border-top: 3px solid var(--blue);
}

.source-v2-std:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
}

.source-v2-prm {
    border-top: 3px solid var(--orange);
}

.source-v2-prm:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
}

.source-v2-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.source-v2-std .source-v2-icon {
    color: var(--blue);
}

.source-v2-prm .source-v2-icon {
    color: var(--orange);
}

.source-v2 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.source-v2-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.source-v2-tag.std {
    background: rgba(14, 165, 233, 0.12);
    color: var(--blue);
}

.source-v2-tag.prm {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
}

.source-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.source-v2 ul li {
    font-size: 0.88rem;
    color: var(--gray-400);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.source-v2 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.source-v2-std ul li::before {
    background: var(--blue);
}

.source-v2-prm ul li::before {
    background: var(--orange);
}

/* OR badge between source cards */
.arch-or-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    align-self: center;
    flex-shrink: 0;
    margin: 0 12px;
}

/* Architecture responsive */
@media (max-width: 600px) {
    .arch-v2 {
        max-width: 100%;
    }

    .arch-sources-v2 {
        flex-direction: column;
        gap: 16px;
    }

    .arch-or-badge {
        align-self: center;
        margin: 0;
    }

    .fork-bar {
        display: none;
    }

    .fork-legs {
        display: none;
    }

    .fork-stem {
        height: 56px;
    }

    .arch-fork-v2 {
        height: 56px;
    }
}

/* ─── SHIELD PRICING CALLOUT ─── */
/* ─── FLOATING CONTACT BUTTON + PANEL ─── */
.fab-contact {
    position: fixed;
    bottom: 28px;
    right: 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    gap: 8px;
}

.fab-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.fab-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(249, 115, 22, 0.45);
}

.fab-contact .fab-icon-close {
    display: none;
    font-size: 1.1rem;
}

.fab-panel.open ~ .fab-contact .fab-icon-open,
.fab-panel.open + .fab-contact .fab-icon-open {
    display: none;
}

/* Use JS class toggle on button itself */
.fab-panel.open ~ .fab-contact .fab-icon-close {
    display: block;
}

.fab-panel {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 640px;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.18);
    z-index: 1099;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-panel.open {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

.fab-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
}

.fab-panel-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
    margin: 0 0 4px;
}

.fab-panel-sub {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.fab-panel-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}

.fab-panel-close:hover {
    color: var(--dark);
}

/* Two-column body: info left, form right */
.fab-panel-body {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
}

/* Left column: contact info */
.fab-info {
    padding: 20px 24px;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.fab-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fab-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.fab-info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 1px;
}

.fab-info-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

a.fab-info-value {
    color: var(--blue);
}

a.fab-info-value:hover {
    color: var(--blue-dark);
}

/* Right column: form */
.fab-form {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fab-form-group {
    margin-bottom: 10px;
}

.fab-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.fab-form input,
.fab-form select,
.fab-form textarea {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-family: inherit;
    font-size: 0.84rem;
    color: var(--dark);
    transition: border-color 0.2s;
}

.fab-form input::placeholder,
.fab-form textarea::placeholder {
    color: var(--gray-400);
}

.fab-form input:focus,
.fab-form select:focus,
.fab-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}

.fab-submit {
    width: 100%;
    padding: 11px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s;
    margin-top: 4px;
}

.fab-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

/* Success state — floating panel */
.fab-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    grid-column: 1 / -1;
}

.fab-success i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 16px;
}

.fab-success h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.fab-success p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Success state — main contact form */
.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
}

.contact-success i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 20px;
}

.contact-success h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-success p {
    font-size: 1rem;
    color: var(--gray-400);
    margin: 0;
}

@media (max-width: 700px) {
    .fab-panel {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 92px;
    }

    .fab-panel-body {
        grid-template-columns: 1fr;
    }

    .fab-info {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 24px;
        gap: 12px;
    }

    .fab-contact {
        bottom: 20px;
        right: 20px;
    }
}

/* ─── OWNERSHIP SECTION ─── */
.ownership-section {
    background: #fff;
    padding: 72px 0;
    position: relative;
}

.ownership-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.ownership-header {
    margin-bottom: 48px;
}

.ownership-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark) !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ownership-title span {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ownership-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.ownership-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.own-point {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.own-point:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.08);
    transform: translateY(-4px);
}

.own-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(14, 165, 233, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin: 0 auto 16px;
}

.own-point h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.own-point p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .ownership-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ─── CROSS-OBJECT FEATURE HIGHLIGHT ─── */
.feature-card-highlight {
    border: 1px solid rgba(249, 115, 22, 0.35) !important;
    background: rgba(249, 115, 22, 0.06) !important;
}

.feature-card-highlight::before {
    opacity: 1 !important;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark)) !important;
}

.feature-badge-sig {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
    margin-left: auto;
    white-space: nowrap;
}

/* ─── SHIELD PRICING CALLOUT ─── */
.shield-price-callout {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    margin-top: 4px;
}

.shield-price-number {
    font-size: 2rem;
    font-weight: 900;
    color: #d97706;
    line-height: 1;
}

.shield-price-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #92400e;
    line-height: 1.3;
}

