/* =================================================================
   MOBOPINIONS — Mobile-First Audience Research
   Marketing Site Stylesheet
   ================================================================= */

/* === DESIGN TOKENS === */
:root {
    /* Brand teal palette (from logo: #00524F, #007A78, #14A39F, #5DC4C0) */
    --teal-50:  #e6f5f4;
    --teal-100: #c7e9e7;
    --teal-200: #94d3d0;
    --teal-300: #5dc4c0;
    --teal-400: #2eb1ad;
    --teal-500: #14a39f;
    --teal-600: #007a78;
    --teal-700: #005f5d;
    --teal-800: #00524f;
    --teal-900: #003835;

    /* Accent gold/amber for highlights */
    --gold-300: #ffd166;
    --gold-400: #f4b740;
    --gold-500: #e09b1c;

    /* Surfaces (dark) */
    --bg-base: #03100f;
    --bg-elevated: #061714;
    --bg-card: #08201d;
    --bg-card-hover: #0c2a26;
    --bg-glass: rgba(8, 32, 29, 0.55);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b1c5c2;
    --text-muted: #7a8f8c;
    --text-faint: #4a5e5b;

    /* Borders */
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.18);
    --border-glow: rgba(20, 163, 159, 0.4);

    /* Status */
    --score-green: #22c55e;
    --score-blue: #3b82f6;
    --score-amber: #f59e0b;
    --score-red: #ef4444;

    /* Gradients */
    --grad-teal: linear-gradient(135deg, #14a39f 0%, #5dc4c0 50%, #c7e9e7 100%);
    --grad-teal-deep: linear-gradient(135deg, #005f5d 0%, #007a78 50%, #14a39f 100%);
    --grad-aurora: linear-gradient(135deg, #14a39f 0%, #2eb1ad 35%, #007a78 70%, #00302d 100%);
    --grad-text: linear-gradient(135deg, #ffffff 0%, #c7e9e7 50%, #14a39f 100%);
    --grad-cta: linear-gradient(135deg, #14a39f 0%, #007a78 100%);
    --grad-cta-hover: linear-gradient(135deg, #5dc4c0 0%, #14a39f 100%);
    --grad-glow: radial-gradient(circle at center, rgba(20,163,159,0.45) 0%, rgba(20,163,159,0) 70%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);
    --shadow-teal: 0 8px 32px rgba(20, 163, 159, 0.35);
    --shadow-teal-lg: 0 20px 60px rgba(20, 163, 159, 0.45);
    --shadow-3d-card: 0 1px 0 rgba(255,255,255,0.07) inset, 0 0 0 1px rgba(255,255,255,0.04), 0 30px 60px -15px rgba(0,0,0,0.6), 0 18px 36px -18px rgba(20,163,159,0.3);
    --shadow-3d-icon: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -3px 6px rgba(0,0,0,0.25), 0 12px 28px -10px rgba(20,163,159,0.55);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

    /* Sizing */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container: 1240px;
    --header-h: 76px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: var(--font-sans);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-image:
        radial-gradient(at 8% 12%, rgba(20, 163, 159, 0.18) 0%, transparent 45%),
        radial-gradient(at 92% 8%, rgba(0, 122, 120, 0.20) 0%, transparent 50%),
        radial-gradient(at 50% 95%, rgba(93, 196, 192, 0.12) 0%, transparent 55%);
    background-attachment: fixed;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6, p, li, a, span { overflow-wrap: break-word; word-wrap: break-word; }
.feature-grid > *, .steps > *, .price-grid > *, .score-cat-grid > *, .footer__top > *, .hero__inner > *, .split > * {
    min-width: 0;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--teal-500), var(--teal-700)); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--teal-400), var(--teal-600)); }

/* === TEXT SELECTION === */
::selection { background: var(--teal-600); color: white; }

/* === STARFIELD BACKGROUND === */
.starfield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.starfield::before, .starfield::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(1px 1px at 14% 22%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 38% 14%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 65% 30%, rgba(199, 233, 231, 0.5), transparent),
        radial-gradient(1px 1px at 81% 50%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 22% 70%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 78% 80%, rgba(199, 233, 231, 0.5), transparent),
        radial-gradient(1px 1px at 47% 90%, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 600px 400px;
    animation: starDrift 120s linear infinite;
    opacity: 0.5;
}
.starfield::after {
    background-size: 800px 600px;
    animation-duration: 200s;
    opacity: 0.35;
}
@keyframes starDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

/* === AURORA BLOBS === */
.aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 18s ease-in-out infinite alternate;
}
.aurora-blob.b1 {
    width: 520px; height: 520px;
    top: -100px; left: -100px;
    background: radial-gradient(circle, #14a39f 0%, transparent 70%);
}
.aurora-blob.b2 {
    width: 600px; height: 600px;
    top: 20%; right: -200px;
    background: radial-gradient(circle, #007a78 0%, transparent 70%);
    animation-duration: 22s;
    animation-delay: -4s;
}
.aurora-blob.b3 {
    width: 480px; height: 480px;
    bottom: -150px; left: 30%;
    background: radial-gradient(circle, #2eb1ad 0%, transparent 70%);
    animation-duration: 26s;
    animation-delay: -8s;
}
@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.1); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.section { padding: 48px 0; position: relative; z-index: 1; }
.section--tight { padding: 32px 0; }
.section--hero { padding: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.display {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(20, 163, 159, 0.12);
    border: 1px solid rgba(20, 163, 159, 0.3);
    color: var(--teal-200);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.eyebrow + h4,
.eyebrow + .section-title,
.eyebrow + .page-hero__title { margin-top: 18px; }
.eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--teal-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal-400);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.gradient-text--teal {
    background: linear-gradient(135deg, #c7e9e7 0%, #14a39f 50%, #007a78 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text--gold {
    background: linear-gradient(135deg, #ffd166 0%, #f4b740 50%, #e09b1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head--left { text-align: left; }
.section-head--left .section-subtitle { margin: 0; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}
.btn--primary {
    color: white;
    background: var(--grad-cta);
    box-shadow: var(--shadow-teal);
}
.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-cta-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal-lg); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.btn--outline {
    color: var(--teal-200);
    background: transparent;
    border: 1px solid var(--border-glow);
}
.btn--outline:hover {
    background: rgba(20,163,159,0.1);
    color: white;
}

.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

.btn .arrow {
    width: 14px; height: 14px;
    transition: transform 0.25s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* === HEADER === */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(3, 16, 15, 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(3, 16, 15, 0.88);
    border-bottom-color: var(--border-soft);
}
.header__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}
.brand__logo {
    width: 48px; height: 48px;
    display: grid;
    place-items: center;
    position: relative;
    flex-shrink: 0;
}
.brand__logo img, .brand__logo svg {
    width: 100%; height: 100%;
    object-fit: contain;
}
.brand__lockup { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand__name { color: white; display: flex; align-items: baseline; line-height: 1; }
.brand__name b { font-weight: 800; }
.brand__name span { color: var(--teal-300); font-weight: 800; }
.brand__tag {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    margin-top: 4px;
    white-space: nowrap;
    line-height: 1.4;
}
.footer .brand__tag {
    margin-top: 5px;
}
@media (max-width: 900px) {
    .header .brand__tag { display: none; }
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: white; background: rgba(255,255,255,0.04); }
.nav__link.active,
.nav__link[aria-current="page"] {
    color: white;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
}
.nav-mobile a.active,
.nav-mobile a[aria-current="page"] { color: white; font-weight: 700; }
.nav__caret {
    width: 10px; height: 10px;
    transition: transform 0.25s ease;
}
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    padding: 8px;
    background: rgba(6, 23, 20, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav__dropdown a:hover { background: rgba(20,163,159,0.12); color: white; }
.nav__dropdown a small { color: var(--text-muted); font-size: 12px; }

.header__cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: white;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.28s var(--ease-out), opacity 0.18s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === MOBILE NAV SHEET === */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    padding: 24px 24px 48px;
    background: rgba(3, 16, 15, 0.98);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    z-index: 99;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    will-change: opacity, transform;
}
.nav-mobile.is-open {
    display: flex;
    animation: navSlideIn 0.28s var(--ease-out) both;
}
.nav-mobile a:not(.btn) {
    padding: 18px 4px;
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-soft);
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
.nav-mobile a:not(.btn):active {
    color: var(--teal-300);
    transform: translateX(4px);
}
.nav-mobile a:not(.btn):last-of-type {
    border-bottom: 0;
}
.nav-mobile .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 15px;
}
.nav-mobile .btn + .btn {
    margin-top: 12px;
}

@keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(20,163,159,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 50%, rgba(0,122,120,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(46,177,173,0.10) 0%, transparent 50%);
}
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3,16,15,0.55) 0%, rgba(3,16,15,0.20) 40%, rgba(3,16,15,0.92) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__content { max-width: 680px; }
.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 22px 0;
}
.hero__subtitle {
    font-size: 1.18rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.6;
}
.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}
.hero__trust-item { display: flex; align-items: center; gap: 8px; }
.hero__trust-item svg { color: var(--teal-300); width: 16px; height: 16px; flex-shrink: 0; }

.hero__visual {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    display: grid;
    place-items: center;
}
.hero__globe {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
}
.hero__globe svg {
    width: 92%; height: 92%;
    filter: drop-shadow(0 0 80px rgba(20, 163, 159, 0.55));
    animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-12px) rotateX(2deg); }
}
.hero__rings {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    animation: rotateRing 30s linear infinite;
}
.hero__rings::before, .hero__rings::after {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px dashed rgba(20, 163, 159, 0.32);
}
.hero__rings::after {
    inset: 18%;
    border-style: solid;
    border-color: rgba(20, 163, 159, 0.20);
}
@keyframes rotateRing {
    to { transform: rotate(360deg); }
}
.hero__glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(20,163,159,0.4) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

/* === STAT CHIPS on Hero === */
.hero__chip {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    font-size: 13px;
    animation: chipFloat 5s ease-in-out infinite;
}
.hero__chip strong { color: white; font-size: 18px; line-height: 1; }
.hero__chip span { color: var(--text-muted); font-size: 12px; }
.hero__chip .ico {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(20,163,159,0.3), rgba(20,163,159,0.1));
    color: var(--teal-200);
    flex-shrink: 0;
}
.hero__chip .ico svg { width: 16px; height: 16px; }
.hero__chip.c1 { top: 8%; left: -4%; animation-delay: 0s; }
.hero__chip.c2 { top: 38%; right: -4%; animation-delay: -2s; }
.hero__chip.c3 { bottom: 8%; left: 6%; animation-delay: -3.5s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === LOGO MARQUEE === */
.marquee {
    padding: 50px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    background: rgba(6, 23, 20, 0.5);
    position: relative;
    z-index: 1;
}
.marquee__label {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 36s linear infinite;
    gap: 60px;
    align-items: center;
}
.marquee__item {
    color: var(--text-secondary);
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.marquee__item:hover { opacity: 1; }
.marquee__item svg { width: 22px; height: 22px; color: var(--teal-300); }
@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

/* === FEATURE GRID === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }

.f-card {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
}
.f-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(20,163,159,0.4), transparent 50%, transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.f-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-3d-card);
}
.f-card:hover::before { opacity: 1; }

.f-card__icon {
    width: 64px; height: 64px;
    display: grid; place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20,163,159,0.25), rgba(20,163,159,0.05));
    border: 1px solid rgba(20,163,159,0.25);
    margin-bottom: 22px;
    position: relative;
    transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-3d-icon);
}
.f-card:hover .f-card__icon { transform: scale(1.08) rotate(-3deg); }
.f-card__icon svg { width: 28px; height: 28px; color: var(--teal-200); }

.f-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.f-card__text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.f-card__num {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(20,163,159,0.4), rgba(20,163,159,0.05));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* === 3D ICON STYLES === */
.icon-3d {
    position: relative;
    width: 80px; height: 80px;
    border-radius: 22px;
    display: grid; place-items: center;
    background:
        linear-gradient(155deg, rgba(20,163,159,0.4) 0%, rgba(0,122,120,0.7) 60%, rgba(0,82,79,0.9) 100%);
    border: 1px solid rgba(93,196,192,0.4);
    box-shadow:
        inset 0 2px 0 rgba(199,233,231,0.35),
        inset 0 -3px 8px rgba(0,0,0,0.35),
        inset 6px 0 16px rgba(20,163,159,0.18),
        0 18px 32px -10px rgba(20,163,159,0.55);
    transition: transform 0.5s var(--ease-out);
}
.icon-3d::before {
    content: "";
    position: absolute;
    top: 4px; left: 8px; right: 8px;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent);
    border-radius: 16px 16px 50% 50%;
    pointer-events: none;
    opacity: 0.7;
}
.icon-3d::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(93,196,192,0.6), transparent 60%);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.6;
}
.icon-3d svg { width: 36px; height: 36px; color: white; position: relative; z-index: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.icon-3d--gold {
    background:
        linear-gradient(155deg, rgba(255,209,102,0.4) 0%, rgba(244,183,64,0.7) 60%, rgba(190,123,12,0.9) 100%);
    border-color: rgba(255,209,102,0.5);
    box-shadow:
        inset 0 2px 0 rgba(255,228,165,0.45),
        inset 0 -3px 8px rgba(0,0,0,0.35),
        inset 6px 0 16px rgba(244,183,64,0.18),
        0 18px 32px -10px rgba(244,183,64,0.55);
}
.icon-3d--gold::after {
    background: linear-gradient(135deg, rgba(255,209,102,0.6), transparent 60%);
}

/* === STATS BANNER === */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px 48px;
    background: linear-gradient(135deg, rgba(20,163,159,0.10), rgba(0,122,120,0.05));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(20,163,159,0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0,122,120,0.18) 0%, transparent 40%);
    pointer-events: none;
}
.stat {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat__num {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}
.stat__label {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* === COMPARISON TABLE === */
.compare {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare__header, .compare__row {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 0;
    align-items: center;
}
.compare--4cols .compare__header,
.compare--4cols .compare__row {
    grid-template-columns: 1.6fr repeat(4, 1fr);
}
.compare__header {
    padding: 24px;
    background: linear-gradient(180deg, rgba(20,163,159,0.12), rgba(20,163,159,0.04));
    border-bottom: 1px solid var(--border-medium);
    font-size: 14px;
    font-weight: 600;
}
.compare__header > div { padding: 0 12px; text-align: center; color: var(--text-secondary); }
.compare__header > div:first-child { text-align: left; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.compare__header .compare__brand {
    color: white;
    font-weight: 700;
    background: var(--grad-cta);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.compare__row {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.2s ease;
}
.compare__row:hover { background: rgba(20,163,159,0.04); }
.compare__row:last-child { border-bottom: none; }
.compare__row > div {
    padding: 0 12px;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}
.compare__feature {
    text-align: left !important;
    color: white !important;
    font-weight: 500;
}
.compare__check {
    color: var(--score-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.compare__check svg { width: 22px; height: 22px; flex-shrink: 0; }
.compare__cross {
    color: var(--score-red);
    opacity: 0.7;
}
.compare__partial { color: var(--score-amber); font-size: 13px; }
.compare__cell--brand {
    background: rgba(20,163,159,0.06);
    color: white !important;
    font-weight: 600;
}

/* === STEP TIMELINE === */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
    position: relative;
}
.steps--6 { grid-template-columns: repeat(6, 1fr); }
.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20,163,159,0.5), rgba(20,163,159,0.5), transparent);
    z-index: 0;
}
.steps--6::before {
    left: 8.3%;
    right: 8.3%;
}
.step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.step__num {
    width: 76px; height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--border-glow);
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 8px 24px -8px rgba(20,163,159,0.5);
}
.step__num::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--grad-cta);
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
}
.step__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === GRID DOTS BACKGROUND === */
.dots-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 32px 32px;
}

/* === DUAL COLUMN with image === */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split--reverse .split__visual { order: -1; }

/* === CHECK LIST === */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.check-list li::before {
    content: "";
    width: 22px; height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    background-image:
        linear-gradient(135deg, var(--teal-500), var(--teal-700)),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-blend-mode: normal;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(20,163,159,0.4);
    margin-top: 1px;
}

/* === USE-CASE CARDS === */
.usecase-card {
    padding: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.usecase-card::after {
    content: "";
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(20,163,159,0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.usecase-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}
.usecase-card:hover::after { opacity: 1; }
.usecase-card__head {
    display: flex; align-items: center; gap: 14px;
}
.usecase-card__ico {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(20,163,159,0.25), rgba(20,163,159,0.05));
    border: 1px solid rgba(20,163,159,0.25);
    color: var(--teal-200);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 16px -8px rgba(20,163,159,0.4);
    flex-shrink: 0;
}
.usecase-card__ico svg { width: 24px; height: 24px; }
.usecase-card h3 { font-size: 22px; font-weight: 700; }
.usecase-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* === SCORING CATEGORY GRID === */
.score-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.score-cat {
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
    position: relative;
}
.score-cat:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}
.score-cat__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.score-cat__num {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(20,163,159,0.25), rgba(20,163,159,0.05));
    border: 1px solid rgba(20,163,159,0.25);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal-200);
    flex-shrink: 0;
}
.score-cat__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.score-cat__text {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.6;
}

/* === ACCORDION (FAQ) === */
.faq {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.faq__item[open] { border-color: var(--border-glow); }
.faq__q {
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: "+";
    font-size: 24px;
    color: var(--teal-300);
    transition: transform 0.25s ease;
}
.faq__item[open] .faq__q::after {
    content: "-";
    transform: rotate(180deg);
}
.faq__a {
    padding: 0 26px 22px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-block {
    padding: 90px 60px;
    background: linear-gradient(135deg, rgba(20,163,159,0.20), rgba(0,122,120,0.10));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(20,163,159,0.30) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,122,120,0.25) 0%, transparent 40%);
    pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.cta-block p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 32px;
}
.cta-block__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-soft);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
    position: relative;
    z-index: 1;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 22px;
}
.footer__col h5 {
    font-size: 13px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--teal-300); }
.footer__locations {
    display: flex; gap: 6px; flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}
.footer__locations span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
}
.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer__legal { display: flex; gap: 24px; }

/* === BREADCRUMB / PAGE HERO === */
.page-hero {
    padding: calc(var(--header-h) + 44px) 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero__title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin: 10px 0;
    line-height: 1.1;
}
.page-hero__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === GLOBE / WORLD VISUAL === */
.globe-wrap {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    place-items: center;
}
.globe {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 28%, rgba(199,233,231,0.28), transparent 40%),
        radial-gradient(circle at 70% 72%, rgba(0,82,79,0.4), transparent 50%),
        linear-gradient(135deg, #007a78 0%, #00524f 50%, #003835 100%);
    box-shadow:
        inset 0 0 60px rgba(0,0,0,0.5),
        inset 8px 8px 24px rgba(199,233,231,0.18),
        0 30px 80px -20px rgba(20,163,159,0.6),
        0 0 100px rgba(20,163,159,0.25);
    overflow: hidden;
    animation: rotateGlobe 60s linear infinite;
}
.globe::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 22% 32%, rgba(199,233,231,0.9), transparent 60%),
        radial-gradient(3px 3px at 38% 48%, rgba(199,233,231,0.85), transparent 60%),
        radial-gradient(2px 2px at 56% 28%, rgba(199,233,231,0.9), transparent 60%),
        radial-gradient(2.5px 2.5px at 72% 58%, rgba(199,233,231,0.8), transparent 60%),
        radial-gradient(2px 2px at 30% 70%, rgba(199,233,231,0.85), transparent 60%),
        radial-gradient(2px 2px at 60% 80%, rgba(199,233,231,0.9), transparent 60%),
        radial-gradient(2.5px 2.5px at 80% 38%, rgba(199,233,231,0.85), transparent 60%);
    background-size: 100% 100%;
    border-radius: 50%;
    animation: counterRotate 60s linear infinite;
}
.globe::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(180deg, transparent 0%, transparent 7%, rgba(93,196,192,0.18) 7.1%, rgba(93,196,192,0.18) 7.4%, transparent 7.5%, transparent 14%),
        repeating-linear-gradient(90deg, transparent 0%, transparent 6%, rgba(93,196,192,0.14) 6.1%, rgba(93,196,192,0.14) 6.4%, transparent 6.5%, transparent 12%);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
}
@keyframes rotateGlobe { to { transform: rotate(360deg); } }
@keyframes counterRotate { to { transform: rotate(-360deg); } }

.globe-orbit {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(20,163,159,0.35);
    border-radius: 50%;
    animation: rotateRing 24s linear infinite;
}
.globe-orbit::before {
    content: "";
    position: absolute;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--teal-300);
    box-shadow: 0 0 18px var(--teal-300), 0 0 6px white;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.globe-orbit.r2 {
    inset: 6%;
    animation-duration: 18s;
    animation-direction: reverse;
    border-color: rgba(93,196,192,0.25);
}
.globe-orbit.r2::before {
    background: var(--gold-400);
    box-shadow: 0 0 18px var(--gold-400), 0 0 6px white;
}

/* === BIG STAT CARD === */
.big-stat {
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(20,163,159,0.10), rgba(20,163,159,0.02));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.big-stat:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}
.big-stat__num {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}
.big-stat__label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}
.big-stat__sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
}

/* === CONTACT FORM === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info__ico {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(20,163,159,0.2), rgba(20,163,159,0.05));
    border: 1px solid rgba(20,163,159,0.25);
    color: var(--teal-200);
}
.contact-info__ico svg { width: 22px; height: 22px; }
.contact-info__item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info__item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.contact-info__item a { color: var(--teal-300); transition: color 0.2s ease; }
.contact-info__item a:hover { color: var(--teal-200); }

.contact-form {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.field input, .field textarea, .field select {
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: white;
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--teal-500);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(20,163,159,0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact form vertical rhythm — gap between every direct row of the form. */
.wpcf7-form { display: flex; flex-direction: column; gap: 22px; }
.wpcf7-form .field-row { margin: 0; }
.wpcf7-form .wpcf7-response-output { margin-top: 4px !important; }

/* Contact Form 7 inside .field — make wrappers/inputs stretch to fill the column. */
.field .wpcf7-form-control-wrap { display: block; width: 100%; }
.field input,
.field select,
.field textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    font-family: inherit;
}
.wpcf7-form .field br { display: none; }
.wpcf7-form .wpcf7-spinner { vertical-align: middle; }
.wpcf7-not-valid-tip {
    color: #ff8a8a;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}
.wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-md);
    font-size: 14px;
}

/* === TEAM CARDS === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-3d-card);
}
.team-card__avatar {
    width: 120px; height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
    display: grid;
    place-items: center;
    color: white;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,0.18),
        inset 0 -4px 8px rgba(0,0,0,0.2),
        0 16px 40px -12px rgba(20,163,159,0.55);
}
.team-card__avatar::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-300), transparent);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}
.team-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.team-card__role {
    color: var(--teal-300);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.team-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}
.team-card__email {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    color: var(--teal-300);
    font-size: 13px;
}

/* === PRICING TOGGLE & CARDS === */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-pill);
    padding: 4px;
    margin-bottom: 50px;
}
.pricing-toggle button {
    padding: 10px 22px;
    background: transparent;
    border: 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s ease;
}
.pricing-toggle button.active {
    background: var(--grad-cta);
    color: white;
    box-shadow: var(--shadow-teal);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}
.price-card {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-3d-card);
}
.price-card--featured {
    background: linear-gradient(180deg, rgba(20,163,159,0.18), rgba(20,163,159,0.02));
    border-color: rgba(20,163,159,0.5);
    box-shadow: var(--shadow-teal);
}
.price-card--featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(20,163,159,0.6), transparent 70%);
    z-index: -1;
}
.price-card__badge {
    position: absolute;
    top: 0; right: 24px;
    transform: translateY(-50%);
    padding: 6px 14px;
    background: var(--grad-cta);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-teal);
}
.price-card__name {
    font-size: 14px;
    color: var(--teal-300);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.price-card__tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 40px;
}
.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.price-card__price .currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
}
.price-card__price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.price-card__price .period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}
.price-card__alt {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.price-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}
.price-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.price-card__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--teal-300); }
.price-card__list li.muted { color: var(--text-faint); }
.price-card__list li.muted svg { color: var(--text-faint); }

.price-card .btn { width: 100%; }

/* === CODE BLOCK === */
.code-block {
    background: #02100e;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: auto;
    box-shadow: var(--shadow-3d-card);
    position: relative;
}
.code-block::before {
    content: "";
    position: absolute;
    top: 12px; left: 14px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow:
        18px 0 0 #f59e0b,
        36px 0 0 #22c55e;
}
.code-block pre { margin-top: 22px; }
.code-block .kw { color: var(--teal-300); }
.code-block .str { color: var(--gold-300); }
.code-block .com { color: var(--text-faint); font-style: italic; }
.code-block .fn { color: #b29aff; }

/* === ICON ROW === */
.icon-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
.icon-row .icon-3d {
    width: 56px; height: 56px;
    border-radius: 16px;
}
.icon-row .icon-3d svg { width: 24px; height: 24px; }

/* === BANNER (gradient cta strip) === */
.banner {
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(20,163,159,0.16), rgba(0,122,120,0.08));
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.banner h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}
.banner p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* === LEGAL / LONG-FORM PAGES === */
.legal {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.75;
}
.legal h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
    letter-spacing: -0.01em;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 28px 0 12px;
    letter-spacing: -0.005em;
}
.legal h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 8px;
}
.legal p { margin-bottom: 14px; }
.legal strong, .legal b { color: var(--text-primary); font-weight: 600; }
.legal ul, .legal ol {
    list-style: revert;
    padding-left: 24px;
    margin: 12px 0 18px;
}
.legal ul li, .legal ol li {
    margin-bottom: 8px;
    padding-left: 4px;
}
.legal ul li::marker { color: var(--teal-300); }
.legal a {
    color: var(--teal-300);
    border-bottom: 1px solid rgba(20,163,159,0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
    word-break: break-word;
}
.legal a:hover { color: var(--teal-200); border-bottom-color: var(--teal-300); }
.legal hr {
    border: none;
    height: 1px;
    background: var(--border-soft);
    margin: 36px 0;
}
.legal__meta {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(20, 163, 159, 0.08);
    border: 1px solid rgba(20, 163, 159, 0.25);
    border-radius: var(--radius-pill);
    color: var(--teal-200);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.legal dl { margin: 14px 0; }
.legal dt {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 14px;
}
.legal dd {
    margin: 4px 0 0 0;
    color: var(--text-secondary);
}
@media (max-width: 540px) {
    .legal { font-size: 15px; }
    .legal h2 { font-size: 1.35rem; }
    .legal h3 { font-size: 1.05rem; }
}

/* === REVEAL on scroll === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-aos] { transition-property: transform, opacity; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .compare__header, .compare__row { font-size: 12px; }
    .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .steps--6 { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
    .steps--6::before { display: none; }
}
@media (max-width: 900px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header__cta .btn { display: none; }
    .header__inner { gap: 12px; }
    .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 40px; }
    .hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .hero__visual { display: none; }
    .hero__chip.c1, .hero__chip.c2, .hero__chip.c3 { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid--2 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 28px; }
    /* Mobile: convert steps grid to a vertical timeline */
    .steps,
    .steps--6 {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 520px;
        margin: 0 auto;
    }
    .steps::before,
    .steps--6::before { display: none; }
    .step {
        text-align: left;
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        column-gap: 22px;
        row-gap: 4px;
        align-items: flex-start;
        padding-bottom: 36px;
    }
    .step:last-child { padding-bottom: 0; }
    .step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 30px;
        top: 60px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, rgba(20,163,159,0.55) 0%, rgba(20,163,159,0.18) 100%);
        z-index: 0;
        border-radius: 2px;
    }
    .step__num {
        width: 56px; height: 56px;
        margin: 0;
        font-size: 22px;
        position: relative;
        z-index: 1;
        align-self: start;
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .step__title {
        font-size: 17px;
        margin-top: 12px;
        margin-bottom: 4px;
        grid-column: 2;
        grid-row: 1;
    }
    .step__text {
        font-size: 14.5px;
        margin-bottom: 0;
        grid-column: 2;
        grid-row: 2;
    }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .score-cat-grid { grid-template-columns: 1fr; }
    .compare {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .compare__header, .compare__row {
        min-width: 720px;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 56px 0; }
    .section--tight { padding: 40px 0; }
    .section-head { margin-bottom: 44px; }
    .cta-block { padding: 56px 28px; }
    .price-grid { grid-template-columns: 1fr !important; max-width: 460px; margin-left: auto; margin-right: auto; }
    .page-hero { padding: calc(var(--header-h) + 36px) 0 40px; }
    .marquee__track { gap: 36px; animation-duration: 28s; }
    .marquee__item { font-size: 15px; }
    .banner { flex-direction: column; text-align: center; padding: 32px 24px; }
}
@media (max-width: 540px) {
    .price-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .cta-block { padding: 48px 22px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .brand__name { font-size: 17px; }
    .header__inner { padding: 0 16px; }
    .step { grid-template-columns: 52px 1fr; gap: 18px; padding-bottom: 30px; }
    .step__num { width: 48px; height: 48px; font-size: 19px; }
    .step:not(:last-child)::after { left: 26px; top: 52px; }
    .step__title { margin-top: 12px; font-size: 16px; }
}

/* === BLOG === */
.post-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-teal);
}
.post-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20,163,159,0.08), rgba(245,158,11,0.06));
    border-bottom: 1px solid var(--border-soft);
}
.post-card__media img,
.post-card__media-placeholder {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { display: flex; flex-direction: column; gap: 12px; padding: 24px 24px 26px; flex: 1; }
.post-card__cat {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-300);
    background: rgba(20,163,159,0.08);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(20,163,159,0.25);
}
.post-card__title { font-size: 1.2rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin: 0; }
.post-card__title a { color: white; }
.post-card__title a:hover { color: var(--teal-300); }
.post-card__excerpt { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin: 0; }
.post-card__meta { color: var(--text-muted); font-size: 12px; display: flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 4px; }

.post-pagination {
    margin: 56px auto 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.post-pagination a, .post-pagination span {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.post-pagination a:hover { color: white; border-color: var(--border-glow); background: rgba(20,163,159,0.06); }
.post-pagination .current { color: white; border-color: var(--teal-500); background: rgba(20,163,159,0.12); }

.post-cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-teal);
}
.post-cover img { width: 100%; height: auto; display: block; }

.post-body {
    max-width: 760px;
    margin: 0 auto;
}
.post-body h2 { font-size: 1.7rem; margin-top: 2.4em; }
.post-body h3 { font-size: 1.3rem; margin-top: 2em; }
.post-body p, .post-body li { font-size: 1.05rem; line-height: 1.75; }
.post-body blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--teal-500);
    background: rgba(20,163,159,0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
    font-style: italic;
}

.post-back { margin: 56px auto 0; text-align: center; max-width: 760px; }
.post-hero__meta { color: var(--text-muted); font-size: 14px; }
