:root {
    /* Light theme (default) */
    --bg: #f3f4f6;
    --bg-alt: #ffffff;
    --accent: #7c5cff;
    --accent-soft: rgba(124, 92, 255, 0.16);
    --accent-strong: #7c5cff;
    --accent-2: #00bcd4;
    --accent-2-soft: rgba(0, 188, 212, 0.12);
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-subtle: rgba(148, 163, 184, 0.4);
    --card-bg: #ffffff;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-pill: 999px;
    --transition-fast: 180ms ease-out;
    --transition-med: 220ms ease-out;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Global, multi-blob background */
    background:
        /* top-left main green, slightly smaller */
        radial-gradient(circle at 0% 0%, rgba(74, 222, 128, 0.22), transparent 45%),
        /* bottom-right teal */
        radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.22), transparent 45%),
        /* top-right soft blue-green splash */
        radial-gradient(circle at 100% 10%, rgba(59, 130, 246, 0.16), transparent 50%),
        /* bottom-left softer mint splash */
        radial-gradient(circle at 0% 100%, rgba(110, 231, 183, 0.16), transparent 50%),
        /* base vertical wash */
        linear-gradient(180deg, #f9fafb, #ecfdf3);
    background-repeat: no-repeat;
    background-attachment: fixed, fixed, fixed, fixed, fixed;
    color: var(--text-main);
}

@media (max-width: 768px) {

    html,
    body {
        background-attachment: scroll, scroll, scroll, scroll, scroll;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background:
        radial-gradient(circle at 10% 20%, rgba(148, 163, 184, 0.18) 0, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(148, 163, 184, 0.1) 0, transparent 55%);
    mix-blend-mode: screen;
    z-index: -1;
}

section {
    background: transparent !important;
    border-top: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shell {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

/* HEADER */
/* --- HEADER BASE --- */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

/* --- BRAND --- */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    height: 38px;
    width: auto;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.brand-tag {
    font-size: 13px;
    color: #555;
    margin-top: -2px;
}

/* --- NAVIGATION --- */
.nav-group {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #181818;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(6px);
}

/* --- DROPDOWN --- */
.dropdown {
    position: absolute;
    top: 36px;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: 0.25s ease;
    z-index: 999;
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s ease;
}

.dropdown a:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* --- ACTION BUTTONS --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* --- MOBILE NAV TOGGLE --- */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
}

/* --- MOBILE VIEW --- */
@media (max-width: 900px) {

    .nav-group,
    .nav-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    #mainNav.open {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        padding: 24px;
        display: block;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    }

    #mainNav.open .nav-group {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #mainNav.open .dropdown {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        box-shadow: none;
        padding: 6px 0;
    }
}


.btn {
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--text-main);
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn-ghost {
    border-color: var(--border-subtle);
    background: #ffffff;
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.btn-primary {
    background: radial-gradient(circle at 10% 0%, var(--accent-2), var(--accent));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.btn-icon {
    font-size: 1.1rem;
    transform: translateY(1px);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10000;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition:
        transform 200ms ease-out,
        opacity 200ms ease-out,
        background-color 200ms ease-out;
    transform-origin: center;
}

/* When menu is open → turn into X */
.mobile-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* Mobile only */
@media (max-width: 720px) {
    .mobile-nav-toggle {
        display: inline-flex;
    }
}

/* HERO */

.hero {
    position: relative;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* behind content, but above page background */
    overflow: hidden;
    pointer-events: none;
    /* no interaction issues */
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* make it pop a bit more */
    opacity: 0.95;
    filter: contrast(1.05) saturate(1.1);
}

/* Soft overlay so text stays readable */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(243, 244, 246, 0.25),
            rgba(243, 244, 246, 0.70));
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pill {
    border-radius: var(--radius-pill);
    padding: 0.32rem 0.75rem 0.32rem 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #34d399, #059669);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.75);
    animation: pulse-dot 1.6s ease-out infinite;
}

.badge-meta {
    border-radius: var(--radius-pill);
    padding: 0.32rem 0.75rem;
    border: 1px solid var(--border-subtle);
    font-size: 0.72rem;
    color: var(--accent-strong);
    background: #ffffff;
}

.hero-title {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: clamp(2.35rem, 3vw + 1.2rem, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 1.1rem;
    color: var(--text-main);
}

.hero-title span.highlight {
    background: linear-gradient(120deg, var(--accent-2), var(--accent-strong));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.hero-subtitle strong {
    color: var(--text-main);
}

.hero-subline {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 30rem;
    margin-bottom: 1.4rem;
}

.hero-subline strong {
    color: var(--text-main);
    font-weight: 500;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 22rem;
}

.hero-note strong {
    color: var(--text-main);
    font-weight: 500;
}

/* Compact subtitle on video */
.hero-subtitle-compact {
    max-width: 30rem;
    margin-bottom: 1.3rem;
}

/* Story section under hero */
/* HERO STORY – anchored, section-level block */
/* ================================
   HERO STORY SECTION + BACKGROUND
   ================================ */
.hero-story {
    position: relative;
    padding: 3.2rem 0 4rem;
    background: #f9fafb;
    border-top: 1px solid rgba(209, 213, 219, 0.7);
    overflow: hidden;
}

/* Radial blurred orbs behind everything */
.hero-story::before,
.hero-story::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.hero-story::before {
    top: -18%;
    left: -10%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.6), transparent 95%);
}

.hero-story::after {
    bottom: -20%;
    right: -8%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.55), transparent 95%);
}

.hero-story-inner {
    position: relative;
    z-index: 1;
    /* so content sits above the orbs */
    max-width: 1000px;
    margin: 0 auto;
}

/* ================================
   HEADER
   ================================ */
.hero-story-header {
    text-align: left;
    margin-bottom: 2rem;
}

.hero-story-kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.45rem;
}

.hero-story-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

/* ================================
   LAYOUT
   ================================ */
.hero-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* ================================
   GLASSMORPHIC CARDS
   ================================ */
.hero-story-copy,
.hero-story-aside {
    position: relative;
    padding: 1.8rem 1.8rem 1.6rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 22px rgba(15, 23, 42, 0.12),
        0 2px 8px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    overflow: hidden;
}

/* subtle glass shine */
.hero-story-copy::before,
.hero-story-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.05),
            transparent);
    opacity: 0.8;
    pointer-events: none;
}

/* ================================
   LEFT CARD CONTENT
   ================================ */
.hero-story-copy p {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-muted);
}

.hero-story-copy p strong {
    color: var(--text-main);
    font-weight: 600;
}

/* note with divider */
.hero-story-note {
    margin-top: 1rem;
    padding-top: 0.7rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.7);
}

/* ================================
   RIGHT CARD CONTENT
   ================================ */
.hero-story-aside {
    padding: 1.6rem 1.5rem;
}

.hero-story-pill {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-story-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-story-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.hero-story-list .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.4rem;
    background: radial-gradient(circle, var(--accent), var(--accent-2));
}

.hero-story-list-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.hero-story-list-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 900px) {
    .hero-story-layout {
        grid-template-columns: 1fr;
    }

    .hero-story-aside {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero-story {
        padding: 2.4rem 0 3rem;
    }

    .hero-story-copy,
    .hero-story-aside {
        padding: 1.35rem 1.25rem 1.25rem;
        border-radius: 18px;
    }
}


.industries-line {
    margin-top: 1.8rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.industries-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.industries-pill {
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.industries-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, var(--accent), var(--accent-2));
    animation: pulse-dot 1.6s ease-out infinite;
}

.typewriter {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-weight: 500;
    color: var(--text-main);
    min-width: 9ch;
    position: relative;
    padding-right: 0.12rem;
}

.typewriter::after {
    content: "";
    position: absolute;
    right: -0.12rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1em;
    background: var(--text-main);
    animation: cursorBlink 1s steps(2, start) infinite;
}

@keyframes cursorBlink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* HERO RIGHT */

.hero-visual-wrap {
    position: relative;
    min-height: 280px;
}

.hero-orbit {
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at 20% 0%, rgba(124, 92, 255, 0.18), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.18), transparent 60%);
    filter: blur(30px);
    opacity: 0.85;
    z-index: -1;
}

.hero-card-main {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f3f4ff);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    max-width: 360px;
    margin-left: auto;
    overflow: hidden;
}

.hero-card-main::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 0 0, rgba(124, 92, 255, 0.2), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0, 188, 212, 0.18), transparent 45%);
    opacity: 0.65;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-main);
}

.hero-card-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #34d399, #059669);
    box-shadow: 0 0 10px rgba(22, 163, 74, 0.85);
    animation: pulse-dot 1.6s ease-out infinite;
}

.hero-card-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.metric-card {
    border-radius: 16px;
    padding: 0.7rem 0.75rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    font-size: 0.75rem;
}

.metric-label {
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.metric-value {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-main);
}

.metric-pill {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    color: #16a34a;
}

.metric-pill.negative {
    color: #b91c1c;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.4rem;
    position: relative;
    z-index: 1;
}

.hero-card-footline {
    font-size: 0.74rem;
    color: var(--text-muted);
    max-width: 12rem;
}

.hero-card-footline strong {
    color: var(--text-main);
}

.hero-card-chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 0 0, rgba(0, 188, 212, 0.16), #ffffff);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    color: var(--text-main);
}

.hero-card-chip span.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #f97316, #b91c1c);
}

.hero-floating-tag {
    position: absolute;
    top: -1.2rem;
    right: -1.4rem;
    transform: rotate(-11deg);
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(203, 213, 225, 0.9);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    padding: 0.3rem 0.95rem;
    backdrop-filter: blur(6px);
}

.hero-floating-tag span {
    font-size: 0.9rem;
    margin-right: 0.4rem;
}

/* SECTION 2 – SUITE */

.section {
    padding: 2.8rem 0 3.8rem;
}

/* Specific styling for the suite section */
#suite.section {
    position: relative;
    background:
        radial-gradient(circle at -10% 0%, rgba(124, 92, 255, 0.04), transparent 60%),
        radial-gradient(circle at 110% 120%, rgba(0, 188, 212, 0.045), transparent 60%),
        #f3f4f6;
    border-top: 1px solid rgba(209, 213, 219, 0.7);
}

.section-header {
    max-width: 40rem;
    margin-bottom: 2.2rem;
}

.section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}


.section-title {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.9rem;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 32rem;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.suite-card {
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med),
        translate var(--transition-med);
}

.suite-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(124, 92, 255, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0, 188, 212, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-med);
    pointer-events: none;
    mix-blend-mode: screen;
}

.suite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(148, 163, 184, 0.95);
}

.suite-card:hover::before {
    opacity: 1;
}

.suite-card:hover .suite-media img {
    transform: scale(1.06);
}

.suite-media {
    margin: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.18), #e5e7eb);
}

.suite-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 260ms ease-out;
}

.suite-body {
    padding: 1rem 1.1rem 1.1rem;
}

/* icon gets a subtle chip style */
.suite-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, rgba(0, 188, 212, 0.18), #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.suite-title {
    font-size: 1.12rem;
    /* font-size: 0.96rem; */
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.suite-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
}

.suite-tagline {
    font-size: 0.8rem;
    color: var(--text-main);
    font-style: italic;
}

.suite-tagline strong {
    font-style: normal;
    color: var(--accent-strong);
}

.section-cta {
    margin-top: 2.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.86rem;
}

.section-cta-note {
    color: var(--text-muted);
}

.section-cta-note strong {
    color: var(--text-main);
}


/* RESPONSIVE */

@media (max-width: 960px) {
    .suite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .suite-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr);
    }

    .hero-visual-wrap {
        /* order: -1; */
        margin-bottom: 2.5rem;
    }

    .hero-card-main {
        margin: 0 auto;
    }

    .suite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding-block: 0.75rem;
        padding: 1rem;
    }

    .nav {
        position: fixed;
        inset: 3.1rem 0 auto;
        padding: 0.9rem 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(209, 213, 219, 0.8);
        display: none;
        flex-direction: column;
        gap: 0.9rem;
    }

    .nav.open {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero-card-main {
        max-width: 100%;
    }

    .suite-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


@keyframes pulse-dot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    70% {
        transform: scale(1.07);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}


/* Responsive */
@media (max-width: 900px) {
    .hero-story-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-story-aside {
        order: -1;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-story {
        padding: 2rem 0 2.4rem;
    }

    .hero-story-copy {
        padding: 1.4rem 1.25rem 1.35rem;
        border-radius: 18px;
    }

    .hero-story-copy::after {
        left: 1.25rem;
    }
}













/* industries start */

.section-industries {
    position: relative;
    padding: 3.2rem 0 4rem;
    background:
        radial-gradient(circle at -10% -20%, rgba(34, 197, 94, 0.12), transparent 60%),
        radial-gradient(circle at 110% 120%, rgba(14, 165, 233, 0.12), transparent 60%),
        linear-gradient(180deg, #f9fafb, #ecfdf5);
    border-top: 1px solid rgba(209, 213, 219, 0.7);
    overflow: hidden;
}

.industries-inner {
    position: relative;
    z-index: 1;
}

.industries-header {
    max-width: 44rem;
    margin-bottom: 2.4rem;
}

.industries-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.industries-title {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.9rem;
    color: var(--text-main);
}

.industries-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 34rem;
}

/* Layout */
.industries-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2.2rem;
    align-items: stretch;
}

/* LEFT SIDE: card shell */
.industries-card-shell {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* tabs row */
.industry-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.industry-tab {
    border-radius: 999px;
    border: 1px solid rgba(209, 213, 219, 0.95);
    padding: 0.4rem 0.7rem;
    font-size: 0.74rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-soft);
    cursor: pointer;
    text-align: center;
    transition:
        background 180ms ease-out,
        border-color 180ms ease-out,
        color 180ms ease-out,
        transform 150ms ease-out;
}

.industry-tab.is-active {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-strong));
    border-color: transparent;
    /* color: #0b1020; */
    color: #eee;
    font-weight: 500;
    transform: translateY(-1px);
}

.industry-tab:hover:not(.is-active) {
    background: rgba(255, 255, 255, 1);
}

/* carousel stack */
.industry-carousel {
    position: relative;
    min-height: 0;
}

.industry-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity 220ms ease-out,
        transform 220ms ease-out;
    border-radius: 18px;
    padding: 1.45rem 1.5rem 1.4rem;
    /* background:
        radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.09), rgba(240, 253, 250, 0.96)); */
    border: 1px solid rgba(22, 163, 74, 0.18);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow: visible;
}

.industry-card.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.industry-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: radial-gradient(circle at 0 0, rgba(0, 188, 212, 0.18), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.8);
    margin-bottom: 0.2rem;
}

.industry-card-title {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text-main);
}

/* content blocks */
.industry-card-block {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.industry-card-block p {
    margin: 0.25rem 0 0;
    line-height: 1.6;
}

.industry-block-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(107, 114, 128, 0.95);
}

.industry-block-label.accent {
    /* color: var(--accent-strong); */
    color: #16a34a;
    /* WhatsApp-green-ish */
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.35);
}

/* controls */
.industry-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-soft);
}

.industry-arrow {
    border-radius: 999px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: #ffffff;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition:
        background 160ms ease-out,
        transform 160ms ease-out,
        box-shadow 160ms ease-out;
}

.industry-arrow:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.industry-progress span {
    display: inline-block;
}

/* micro-cta */
.industries-micro-cta {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-soft);
    max-width: 26rem;
}

.industries-micro-cta span {
    display: block;
}

/* RIGHT SIDE: visual */
.industries-visual {
    position: relative;
    min-height: 260px;
}

.industries-visual-orbit {
    position: absolute;
    inset: -12%;
    background:
        radial-gradient(circle at 0 0, rgba(124, 92, 255, 0.22), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(0, 188, 212, 0.22), transparent 55%);
    filter: blur(22px);
    opacity: 0.9;
    z-index: 0;
}

.industries-visual-frame {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition:
        opacity 260ms ease-out,
        transform 260ms ease-out;
    background: #0f172a;
}

.industries-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-visual-frame.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .industries-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .industries-visual {
        order: -1;
    }

    .industry-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .section-industries {
        padding: 2.6rem 0 3.4rem;
    }

    .industry-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-card {
        position: relative;
    }

    .industries-visual-frame {
        position: relative;
        margin-top: 0.6rem;
        min-height: 220px;
    }
}


/* industries end */








/* SECTION 4 – BEFORE / AFTER TRANSFORMATION */

.section-before-after {
    position: relative;
    padding: 3.4rem 0 4.2rem;
    background:
        radial-gradient(circle at -15% -20%, rgba(34, 197, 94, 0.16), transparent 60%),
        radial-gradient(circle at 115% 120%, rgba(14, 165, 233, 0.16), transparent 60%),
        linear-gradient(180deg, #ecfdf5, #f9fafb);
    border-top: 1px solid rgba(209, 213, 219, 0.8);
    overflow: hidden;
}

/* paint splashes */
.section-before-after::before,
.section-before-after::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 60% 40% 55% 45%;
    filter: blur(52px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.section-before-after::before {
    top: -140px;
    left: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.7), transparent 70%);
}

.section-before-after::after {
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.7), transparent 70%);
}

.before-after-inner {
    position: relative;
    z-index: 1;
}

/* header */
.before-after-header {
    max-width: 44rem;
    margin-bottom: 2.4rem;
}

.before-after-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.before-after-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.before-after-subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 34rem;
}

/* layout */
.before-after-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

/* base card */
.before-after-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 0;
    min-height: 220px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

/* media area (image on one side) */
.ba-card-media {
    position: relative;
    overflow: hidden;
}

.ba-card-media::before {
    content: "";
    position: absolute;
    inset: -20%;
    mix-blend-mode: soft-light;
    opacity: 0.9;
}

.ba-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 260ms ease-out;
}

/* content area */
.ba-card-content {
    position: relative;
    padding: 1.4rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* pills */
.ba-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.27rem 0.8rem;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: rgba(255, 255, 255, 0.9);
}

.ba-pill-before {
    color: #b91c1c;
    border-color: rgba(248, 113, 113, 0.8);
    background: rgba(254, 242, 242, 0.96);
}

.ba-pill-after {
    color: #15803d;
    border-color: rgba(74, 222, 128, 0.9);
    background: rgba(240, 253, 244, 0.98);
}

/* titles */
.ba-card-title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-main);
}

/* lists */
.ba-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.85rem;
}

.ba-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    align-items: flex-start;
}

.ba-list p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-top: 0.35rem;
    background: radial-gradient(circle, #f97316, #b91c1c);
}

.ba-dot-good {
    background: radial-gradient(circle, #22c55e, #0ea5e9);
}

/* highlight block in AFTER */
.ba-highlight {
    margin-top: 0.8rem;
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(14, 165, 233, 0.08));
    border: 1px dashed rgba(34, 197, 94, 0.4);
    font-size: 0.84rem;
    color: var(--text-muted);
}

.ba-highlight-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #15803d;
    margin-bottom: 0.1rem;
}

/* BEFORE vs AFTER specific gradients */
.before-card {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(254, 242, 242, 0.94));
    border: 1px solid rgba(248, 113, 113, 0.45);
}

.before-card .ba-card-media::before {
    background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.7), transparent 70%);
}

.after-card {
    background:
        linear-gradient(135deg, rgba(240, 253, 250, 0.97), rgba(224, 242, 254, 0.97));
    border: 1px solid rgba(34, 197, 94, 0.45);
}

.after-card .ba-card-media::before {
    background: radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.6), transparent 70%);
}

/* hover effects */
.before-after-card:hover .ba-card-media img {
    transform: scale(1.08);
}

/* footer CTA strip */
.before-after-footer {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.before-after-footer-text {
    max-width: 32rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* responsive */
@media (max-width: 960px) {
    .before-after-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .before-after-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    }
}

@media (max-width: 720px) {
    .section-before-after {
        padding: 2.8rem 0 3.4rem;
    }

    .before-after-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .ba-card-media {
        max-height: 190px;
    }

    .ba-card-media img {
        object-position: center;
    }

    .before-after-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* section 4 end */







/* SECTION 5 – HOW IT WORKS */

.section-how {
    position: relative;
}

.how-inner {
    position: relative;
    z-index: 1;
}

.how-header {
    max-width: 44rem;
    margin-bottom: 2.2rem;
}

.how-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.how-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.how-subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.how-step {
    position: relative;
    border-radius: 20px;
    padding: 1.3rem 1.3rem 1.2rem;
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.96),
            rgba(224, 242, 254, 0.96));
    border: 1px solid rgba(22, 163, 74, 0.28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.how-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    margin-bottom: 0.2rem;
}

.how-step-number {
    color: #ecfdf5;
    font-weight: 600;
    font-size: 0.9rem;
}

.how-step-title {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-main);
}

.how-step-text {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.how-step-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-main);
}

.how-footer {
    margin-top: 1.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* SECTION 6 – WHY NOW / DEEP VALUE */

.section-why {
    position: relative;
}

.why-inner {
    position: relative;
    z-index: 1;
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2.1rem;
    align-items: stretch;
}

.why-copy {
    max-width: 32rem;
}

.why-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.why-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.why-text {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-quote {
    margin-top: 0.9rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px dashed rgba(148, 163, 184, 0.7);
    font-size: 0.86rem;
    color: var(--text-main);
    font-style: italic;
}

.why-stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.why-card {
    border-radius: 20px;
    padding: 1.1rem 1.2rem 1.05rem;
    background: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.why-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #15803d;
    background: rgba(240, 253, 244, 0.98);
    border: 1px solid rgba(34, 197, 94, 0.4);
    margin-bottom: 0.5rem;
}

.why-card-title {
    margin: 0 0 0.4rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-main);
}

.why-card-text {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECTION 7 – COMPARISON */

.section-comparison {
    position: relative;
}

.comparison-inner {
    position: relative;
    z-index: 1;
}

.comparison-header {
    max-width: 44rem;
    margin-bottom: 2.1rem;
}

.comparison-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.comparison-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.comparison-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: 20px;
    padding: 1.3rem 1.3rem 1.2rem;
    box-shadow: 0 13px 30px rgba(15, 23, 42, 0.14);
}

.comparison-card-title {
    margin: 0 0 0.7rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-main);
}

.comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.comparison-card-manual {
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.97), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(248, 113, 113, 0.55);
}

.comparison-card-adsvent {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98), rgba(224, 242, 254, 0.98));
    border: 1px solid rgba(34, 197, 94, 0.55);
}

.comparison-note {
    margin-top: 0.9rem;
    padding-top: 0.7rem;
    border-top: 1px dashed rgba(22, 163, 74, 0.6);
    font-size: 0.82rem;
    color: var(--text-main);
}

/* SECTION 8 – FAQ */

.section-faq {
    position: relative;
}

.faq-inner {
    position: relative;
    z-index: 1;
}

.faq-header {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.faq-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.faq-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.faq-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.4rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(209, 213, 219, 0.95);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    padding: 0.85rem 1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-soft);
    transition: transform 180ms ease-out;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    margin-top: 0.6rem;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECTION 9 – FINAL CTA */

.section-final-cta {
    position: relative;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
}

.final-cta-card {
    border-radius: 26px;
    padding: 1.8rem 1.8rem 1.7rem;
    background: linear-gradient(135deg,
            rgba(240, 253, 244, 0.98),
            rgba(224, 242, 254, 0.98));
    border: 1px solid rgba(34, 197, 94, 0.55);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.final-cta-copy {
    max-width: 40rem;
}

.final-cta-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.6rem;
}

.final-cta-title {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.final-cta-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.final-cta-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.final-cta-note {
    margin-top: 0.8rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* RESPONSIVE TWEAKS */

@media (max-width: 960px) {
    .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .why-copy {
        max-width: none;
    }

    .comparison-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .how-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .final-cta-card {
        padding: 1.5rem 1.3rem 1.5rem;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* FOOTER */

.footer {
    margin-top: 3rem;
    padding: 3rem 0 2rem;
    background: radial-gradient(circle at 0% 80%, rgba(16, 185, 129, 0.10), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08), transparent 60%);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 -16px 40px rgba(15, 23, 42, 0.18);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Top Grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.14); */
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: "Space Grotesk", system-ui, sans-serif;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 16rem;
    line-height: 1.5;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-social {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);
    transition: all 0.2s ease-out;
}

.footer-social:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
}

/* Columns */
.footer-col-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s ease-out, transform 0.2s ease-out;
}

.footer-list a:hover {
    color: var(--text-main);
    transform: translateX(3px);
}

/* Bottom bar */
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.2s ease-out;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 960px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* GLOBAL FADE/UP ANIMATION UTILITIES */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* ============================
   SECTION 3 MOBILE FIXES
   ============================ */

/* On small screens → stack everything cleanly */
@media (max-width: 720px) {

    .industries-layout {
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
    }

    /* move visual above cards */
    .industries-visual {
        order: -1;
        min-height: auto !important;
    }

    /* visual frame becomes normal block */
    .industries-visual-frame {
        position: relative;
        inset: 0;
        min-height: 220px !important;
        border-radius: 18px;
        margin-top: 0.5rem;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* orbit background shouldn't overflow */
    .industries-visual-orbit {
        inset: -5% !important;
        filter: blur(14px);
    }

    /* Tabs → 2 per row */
    .industry-tabs {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }

    /* Carousel cards should NOT be absolute */
    .industry-carousel {
        position: relative;
        min-height: auto !important;
    }

    .industry-card {
        position: relative !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        padding: 1.2rem 1.2rem 1.1rem !important;
        margin-bottom: 0.8rem;
    }

    /* Hide inactive frames, show only active one */
    .industries-visual-frame:not(.is-active),
    .industry-card:not(.is-active) {
        display: none !important;
    }
}



/* ============================
   SECTION 4 MOBILE FIXES
   ============================ */

@media (max-width: 720px) {

    .section-before-after {
        padding: 2rem 0 2.4rem !important;
    }

    /* stack cards */
    .before-after-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.3rem !important;
    }

    /* each card becomes vertical layout */
    .before-after-card {
        grid-template-columns: 1fr !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        min-height: auto !important;
    }

    /* media shrinks */
    .ba-card-media {
        max-height: 180px !important;
    }

    .ba-card-media img {
        object-fit: cover;
        object-position: center;
    }

    /* content spacing */
    .ba-card-content {
        padding: 1rem 1.1rem !important;
        gap: 0.65rem;
    }

    /* splashes smaller */
    .section-before-after::before,
    .section-before-after::after {
        width: 220px !important;
        height: 220px !important;
        filter: blur(40px) !important;
        opacity: 0.38 !important;
    }

    .section-before-after::before {
        top: -60px !important;
        left: -50px !important;
    }

    .section-before-after::after {
        bottom: -70px !important;
        right: -50px !important;
    }
}




/* =========================================================
   RESPONSIVE + ANIMATION PATCH FOR SECTIONS 3–9
   (append at bottom of style.css)
   ========================================================= */

/* ------------------------------
   GLOBAL SMALL-SCREEN TWEAKS
   ------------------------------ */
@media (max-width: 720px) {
    .section {
        padding: 2.1rem 0 2.8rem !important;
    }

    .section-header,
    .before-after-header,
    .how-header,
    .comparison-header,
    .faq-header {
        text-align: left;
    }

    .section-title,
    .before-after-title,
    .how-title,
    .comparison-title,
    .faq-title,
    .final-cta-title {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .shell {
        padding-inline: 1.15rem;
    }
}

/* ------------------------------------
   SOFT ENTRANCE ANIMATIONS (ON LOAD)
   ------------------------------------ */
@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSoft {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Only if user doesn’t hate motion */
@media (prefers-reduced-motion: no-preference) {

    .hero-card-main,
    .suite-card,
    .industry-card.is-active,
    .industries-visual-frame.is-active,
    .before-after-card,
    .how-step,
    .why-card,
    .comparison-card,
    .faq-item {
        animation: fadeUpSoft 650ms ease-out both;
    }

    .hero-card-main {
        animation-delay: 100ms;
    }

    .suite-card:nth-child(1) {
        animation-delay: 80ms;
    }

    .suite-card:nth-child(2) {
        animation-delay: 120ms;
    }

    .suite-card:nth-child(3) {
        animation-delay: 160ms;
    }

    .suite-card:nth-child(4) {
        animation-delay: 200ms;
    }

    .suite-card:nth-child(5) {
        animation-delay: 240ms;
    }

    .suite-card:nth-child(6) {
        animation-delay: 280ms;
    }

    .industry-card.is-active {
        animation-delay: 100ms;
    }

    .industries-visual-frame.is-active {
        animation: fadeInSoft 580ms ease-out both;
        animation-delay: 80ms;
    }

    .before-after-card.before-card {
        animation-delay: 60ms;
    }

    .before-after-card.after-card {
        animation-delay: 150ms;
    }

    .how-step:nth-child(1) {
        animation-delay: 60ms;
    }

    .how-step:nth-child(2) {
        animation-delay: 140ms;
    }

    .how-step:nth-child(3) {
        animation-delay: 220ms;
    }

    .why-card:nth-child(1) {
        animation-delay: 60ms;
    }

    .why-card:nth-child(2) {
        animation-delay: 120ms;
    }

    .why-card:nth-child(3) {
        animation-delay: 180ms;
    }

    .comparison-card-manual {
        animation-delay: 60ms;
    }

    .comparison-card-adsvent {
        animation-delay: 140ms;
    }

    .faq-item:nth-child(1),
    .faq-column:first-child .faq-item:nth-child(1) {
        animation-delay: 60ms;
    }

    .faq-item:nth-child(2) {
        animation-delay: 120ms;
    }

    .faq-item:nth-child(3) {
        animation-delay: 180ms;
    }

    .final-cta-card {
        animation-delay: 80ms;
    }
}

/* ============================================
   SECTION 3 – INDUSTRIES (MOBILE FIXES)
   ============================================ */
@media (max-width: 960px) {
    .section-industries {
        padding: 2.6rem 0 3.2rem !important;
    }
}

@media (max-width: 720px) {

    .industries-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.4rem !important;
    }

    /* Visual first on mobile */
    .industries-visual {
        order: -1;
        min-height: auto !important;
    }

    .industries-visual-orbit {
        inset: -5% !important;
        filter: blur(14px);
    }

    /* Show only active visual frame */
    .industries-visual-frame {
        position: relative !important;
        inset: 0 !important;
        min-height: 220px !important;
        border-radius: 18px;
        margin-top: 0.5rem;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .industries-visual-frame:not(.is-active) {
        display: none !important;
    }

    /* Tabs → 2 columns */
    .industry-tabs {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }

    .industry-tab {
        padding-block: 0.35rem;
        font-size: 0.72rem;
    }

    /* Carousel cards become normal stacked blocks */
    .industry-carousel {
        position: relative !important;
        min-height: auto !important;
    }

    .industry-card {
        position: relative !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        padding: 1.15rem 1.15rem 1.05rem !important;
        margin-bottom: 0.75rem;
    }

    .industry-card:not(.is-active) {
        display: none !important;
    }

    .industry-controls {
        margin-top: 0.55rem;
    }

    .industries-micro-cta {
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   SECTION 4 – BEFORE / AFTER (MOBILE FIXES)
   ============================================ */
@media (max-width: 960px) {
    .section-before-after {
        padding: 2.6rem 0 3.2rem !important;
    }
}

@media (max-width: 720px) {

    .section-before-after {
        padding: 2.1rem 0 2.7rem !important;
    }

    .before-after-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.3rem !important;
    }

    .before-after-card {
        grid-template-columns: 1fr !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        min-height: auto !important;
    }

    .ba-card-media {
        max-height: 190px !important;
    }

    .ba-card-media img {
        object-fit: cover;
        object-position: center;
    }

    .ba-card-content {
        padding: 1rem 1.1rem !important;
        gap: 0.65rem;
    }

    .ba-list {
        gap: 0.5rem;
    }

    .section-before-after::before,
    .section-before-after::after {
        width: 220px !important;
        height: 220px !important;
        filter: blur(40px) !important;
        opacity: 0.38 !important;
    }

    .section-before-after::before {
        top: -60px !important;
        left: -50px !important;
    }

    .section-before-after::after {
        bottom: -70px !important;
        right: -50px !important;
    }

    .before-after-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .before-after-footer-text {
        max-width: none;
    }
}

/* ============================================
   SECTION 5 – HOW IT WORKS (RESPONSIVE TUNE)
   ============================================ */
@media (max-width: 960px) {
    .section-how {
        padding-top: 2.4rem !important;
    }

    .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.3rem;
    }
}

@media (max-width: 720px) {

    .how-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1rem !important;
    }

    .how-step {
        padding: 1.1rem 1.1rem 1rem;
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.13);
    }

    .how-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
}

/* ============================================
   SECTION 6 – WHY THIS MATTERS (RESPONSIVE)
   ============================================ */
@media (max-width: 960px) {
    .why-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.7rem !important;
    }

    .why-copy {
        max-width: none;
    }
}

@media (max-width: 720px) {

    .why-layout {
        gap: 1.5rem !important;
    }

    .why-quote {
        margin-top: 0.8rem;
    }

    .why-stats {
        gap: 0.9rem;
    }

    .why-card {
        padding: 1rem 1rem 0.95rem;
    }
}

/* ============================================
   SECTION 7 – COMPARISON (RESPONSIVE)
   ============================================ */
@media (max-width: 960px) {
    .comparison-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.2rem !important;
    }
}

@media (max-width: 720px) {
    .comparison-card {
        padding: 1.1rem 1.1rem 1rem;
    }

    .comparison-note {
        margin-top: 0.7rem;
    }
}

/* ============================================
   SECTION 8 – FAQ (RESPONSIVE)
   ============================================ */
@media (max-width: 960px) {
    .faq-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.1rem !important;
    }
}

@media (max-width: 720px) {

    .faq-item {
        padding: 0.8rem 0.9rem;
    }

    .faq-body {
        font-size: 0.84rem;
    }
}

/* ============================================
   SECTION 9 – FINAL CTA (RESPONSIVE)
   ============================================ */
@media (max-width: 720px) {
    .section-final-cta {
        padding: 2.2rem 0 2.7rem !important;
    }

    .final-cta-card {
        padding: 1.5rem 1.3rem 1.5rem !important;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
}

.floating-demo-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9000;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    display: none;
    /* default: hidden on desktop */
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    font-weight: 500;
    background: radial-gradient(circle at 0 0, #22c55e, #0ea5e9);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    cursor: pointer;
    transform: translateY(0);
    transition:
        transform 180ms ease-out,
        box-shadow 180ms ease-out,
        opacity 180ms ease-out;
}

.floating-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
}

.floating-demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #bbf7d0;
    box-shadow: 0 0 0 0 rgba(187, 247, 208, 0.8);
    animation: floatingPing 1.6s ease-out infinite;
}

/* show only on mobile */
@media (max-width: 720px) {
    .floating-demo-cta {
        display: inline-flex;
    }
}

@keyframes floatingPing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(187, 247, 208, 0.8);
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(187, 247, 208, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(187, 247, 208, 0);
    }
}