/* ============================================
   FITCOSMOS — Premium UI System
   Senior-level design: Layered, textured, editorial
   ============================================ */

:root {
    /* === PRIMARY HIGHLIGHT (warm orange) === */
    --accent: #FF5A2C;
    --accent-dark: #E84918;
    --accent-glow: rgba(255, 90, 44, 0.14);
    --accent-glow-strong: rgba(255, 90, 44, 0.28);

    /* === SECONDARY POP (electric blue — for badges, info) === */
    --pop: #0066FF;
    --pop-glow: rgba(0, 102, 255, 0.2);

    /* === CORE NEUTRALS === */
    --navy: #0B132B;
    --black: #0B132B;
    --dark: #1A1D24;
    --gray-blue: #2D3142;

    /* === SCALE (blue-tinted grays) === */
    --gray-900: #1A1D24;
    --gray-800: #2D3142;
    --gray-700: #4A5069;
    --gray-600: #6B7085;
    --gray-400: #9AA0B4;
    --gray-200: #DFE2EA;
    --gray-100: #EEF0F5;
    --gray-50: #F8F9FA;
    --white: #FFFFFF;

    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 999px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #FF8C42, var(--accent));
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(255, 90, 44, 0.4);
    transition: width 0.1s linear;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== NAV ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: var(--radius-full);
    padding: 0 12px 0 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Scrolled state: floating pill appears --- */
.navbar.scrolled {
    padding: 12px 32px;
}

.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(11, 19, 43, 0.08);
    box-shadow: 
        0 4px 20px rgba(11, 19, 43, 0.1),
        0 1px 3px rgba(11, 19, 43, 0.06);
    padding: 0 12px 0 24px;
}

.nav-left { display: flex; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    display: flex;
    flex-shrink: 0;
    width: 82px;
    height: 70px;
    align-items: center;
    justify-content: center;
}
.logo-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--white);
}

/* On scrolled state (white pill background), text becomes dark for readability */
.navbar.scrolled .logo-text {
    color: var(--navy);
}

.nav-center {
    margin-left: auto;
    margin-right: 16px;
}

.nav-links { display: flex; gap: 6px; }
.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.1px;
}
.nav-link:hover {
    color: var(--black);
    background: rgba(0, 0, 0, 0.04);
}
.nav-link.active {
    color: var(--accent);
    background: var(--accent-glow);
    font-weight: 600;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 90, 44, 0.3); color: var(--white); }

.nav-cta i {
    font-size: 10px;
    transition: transform 0.25s;
}
.nav-cta:hover i { transform: translateX(3px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
    width: 20px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 0;
    overflow: hidden;
    background: var(--gray-50);
}

/* Noise texture */
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Geometric decorations */
.hero-geo {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.geo-1 {
    width: 500px; height: 500px;
    border: 1px solid var(--gray-200);
    top: -150px; right: -100px;
    opacity: 0.5;
}
.geo-2 {
    width: 80px; height: 80px;
    background: var(--accent);
    bottom: 200px; left: 60px;
    opacity: 0.08;
}
.geo-3 {
    width: 12px; height: 12px;
    background: var(--accent);
    top: 200px; left: 45%;
    opacity: 0.6;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Hero Content */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.eyebrow-line {
    width: 32px; height: 2px;
    background: var(--accent);
}
.hero-eyebrow span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-600);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.2vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.title-line { display: block; }
.title-word { display: inline-block; }

.outline-word {
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
}

.highlight-word {
    color: var(--accent);
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-glow-strong);
    border-radius: 4px;
    z-index: -1;
}

.hero-para {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 90, 44, 0.25);
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 90, 44, 0.35);
}
.btn-icon-wrap {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
}

.hero-btn-secondary {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 16px 24px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: all 0.25s;
}
.hero-btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-avatars {
    display: flex;
}
.avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    margin-right: -10px;
    background: var(--gray-200);
}
.a1 { background: linear-gradient(135deg, #3387FF, #0066FF); }
.a2 { background: linear-gradient(135deg, #FF7B4A, #FF5A2C); }
.a3 { background: linear-gradient(135deg, #4A5069, #2D3142); }
.a4 { background: linear-gradient(135deg, #6B7085, #9AA0B4); }

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--black);
}
.trust-text span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-frame {
    position: relative;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    position: relative;
    z-index: 3;
}

.hero-woman-img {
    position: absolute;
    left: -60px;
    bottom: 0;
    width: 240px;
    height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
    z-index: 1;
}

/* Arch / pill shape behind image — rounded top, flat bottom */
.visual-arch {
    position: absolute;
    top: 5%;
    left: 31%;
    transform: translateX(-42%);
    width: 380px;
    height: 440px;
    background: linear-gradient(180deg, #FF5A2C 0%, #FF9A6B 40%, #DFE2EA 100%);
    border-radius: 190px 190px 20px 20px;
    z-index: 0;
}

/* Spinning circular text badge */
.hero-spin-badge {
    position: absolute;
    bottom: 12%;
    right: 0;
    width: 110px;
    height: 110px;
    z-index: 10;
}

.spin-text-svg {
    width: 100%;
    height: 100%;
    animation: spinBadge 12s linear infinite;
}

.spin-text-path {
    font-size: 9.5px;
    font-weight: 600;
    fill: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@keyframes spinBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
}
.hero-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.scroll-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
}
.metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}
.metric span {
    font-size: 0.72rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.metric-sep {
    width: 1px; height: 30px;
    background: var(--gray-200);
}

/* ===== CREW — 3D COVERFLOW ===== */
.crew {
    padding: 110px 0 90px;
    text-align: center;
    overflow: hidden;
    background: var(--white);
}
.crew-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}
.coverflow { position: relative; }
.cf-stage {
    position: relative;
    height: 480px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
    user-select: none;
}
.cf-card {
    position: absolute;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(11, 19, 43, 0.22);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s, filter 0.65s;
    cursor: pointer;
    will-change: transform;
}
.cf-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    pointer-events: none;
}
.cf-card figcaption {
    padding: 16px;
    text-align: left;
}
.cf-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}
.cf-card span {
    font-size: 0.78rem;
    color: var(--gray-600);
}
.cf-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}
.cf-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    font-size: 15px;
    transition: all 0.25s;
}
.cf-nav button:hover {
    background: var(--pop);
    border-color: var(--pop);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(255, 90, 44, 0.4);
}

/* Coverflow mobile */
@media (max-width: 768px) {
    .crew { padding: 70px 0 60px; }
    .crew-heading { font-size: 1.6rem; padding: 0 20px; }
    .cf-stage { height: 420px; }
    .cf-card { width: 260px; }
    .cf-card img { height: 280px; }
    .cf-card figcaption { padding: 12px 14px; }
    .cf-card strong { font-size: 0.88rem; }
    .cf-card span { font-size: 0.72rem; }
    .cf-nav button { width: 44px; height: 44px; font-size: 13px; }
}
@media (max-width: 480px) {
    .cf-stage { height: 380px; }
    .cf-card { width: 230px; }
    .cf-card img { height: 240px; }
}

/* ===== TICKER ===== */
.ticker-strip {
    background: var(--black);
    padding: 16px 0;
    overflow: hidden;
}
.ticker-inner { width: max-content; }
.ticker-content {
    display: flex;
    gap: 24px;
    animation: tickerScroll 18s linear infinite;
    white-space: nowrap;
}
.ticker-content span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.ticker-dot { color: var(--pop); font-size: 8px; }

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SECTION UTILITIES ===== */
.section-tag-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.section-tag-line.center-tag { justify-content: center; }
.tag-line-bar {
    width: 28px; height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}
.section-tag-line span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s;
}
.link-arrow:hover { gap: 14px; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent), #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SERVICES — SWITCHABLE LAYOUTS ===== */
.svc-section {
    position: relative;
}

/* --- Layout switcher --- */
.svc-switch {
    position: sticky;
    top: 90px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto;
    transform: translateY(28px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 5px 6px 5px 16px;
    box-shadow: 0 8px 30px rgba(11, 19, 43, 0.1);
}
.ss-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-right: 6px;
}
.ss-btn {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
}
.ss-btn:hover { color: var(--navy); }
.ss-btn.active {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 19, 43, 0.25);
}

/* --- Variant visibility --- */
.svc-variant { display: none; }
.svc-variant.active {
    display: block;
    animation: svcVariantIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes svcVariantIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== VARIANT 1 — THREE PILLARS ===== */
.pillars {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.pillars-head {
    max-width: 620px;
    margin-bottom: 56px;
}
.pillars-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 18px;
}
.pillars-lead {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 520px;
}

/* --- Grid of 3 --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* --- Pillar card --- */
.pillar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(11, 19, 43, 0.12);
}

/* Featured middle pillar lifts slightly + accent border */
.pillar-feature {
    border-color: rgba(255, 90, 44, 0.25);
    box-shadow: 0 16px 44px rgba(255, 90, 44, 0.1);
}

/* --- Media header --- */
.pillar-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.pillar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pillar:hover .pillar-media img {
    transform: scale(1.05);
}
.pillar-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0) 40%, rgba(11, 19, 43, 0.55) 100%);
}

.pillar-num {
    position: absolute;
    top: 16px;
    left: 18px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    z-index: 2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.pillar-live {
    position: absolute;
    top: 20px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    z-index: 2;
}
.pl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px #10B981;
    animation: pulse 2s infinite;
}

/* --- Body --- */
.pillar-body {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pillar-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}
.pillar-body > p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* --- Sub-service list --- */
.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}
.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--gray-100);
}
.pillar-list li:first-child {
    border-top: none;
}
.pillar-list li i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: var(--accent-glow);
    color: var(--accent);
    transition: all 0.3s;
}
.pillar-list li:hover i {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}
.pillar-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 1px;
}
.pillar-list li strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.pillar-list li span {
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* --- Pillars responsive --- */
@media (max-width: 960px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 20px;
    }
    .pillars-head { text-align: center; margin: 0 auto 40px; }
    .pillars-head .section-tag-line { justify-content: center; }
    .pillars-lead { margin: 0 auto; }
}

@media (max-width: 640px) {
    .pillars { padding: 70px 0; }
    .pillar-media { height: 170px; }
    .pillar-body { padding: 24px 22px 26px; }
    .pillar-body h3 { font-size: 1.25rem; }
}

/* ===== VARIANT 2 — EDITORIAL INDEX ===== */
.editorial {
    padding: 100px 0;
    background: #FBFAF8;
    position: relative;
}
.ed-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* Sticky heading aside */
.ed-aside {
    position: sticky;
    top: 160px;
}
.ed-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--navy);
}
.ed-lead {
    font-size: 0.98rem;
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 340px;
    margin-bottom: 32px;
}
.ed-meta {
    display: flex;
    gap: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-200);
}
.ed-meta span {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ed-meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    margin-bottom: 2px;
}

/* Numbered list */
.ed-list {
    counter-reset: none;
}
.ed-row {
    display: grid;
    grid-template-columns: auto 52px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 22px 8px;
    border-top: 1px solid var(--gray-200);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.ed-row:last-child { border-bottom: 1px solid var(--gray-200); }
.ed-row::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 14px;
    opacity: 0;
    transform: scale(0.97);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    box-shadow: 0 14px 40px rgba(11, 19, 43, 0.08);
}
.ed-row:hover::before { opacity: 1; transform: scale(1); }
.ed-row:hover { border-color: transparent; padding-left: 22px; padding-right: 22px; }
.ed-row > * { position: relative; z-index: 1; }

.ed-num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.ed-row:hover .ed-num { color: var(--accent); }

.ed-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--navy);
    transition: all 0.35s;
}
.ed-row:hover .ed-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: rotate(-6deg);
}

.ed-text h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.ed-text p {
    font-size: 0.86rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.ed-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all 0.3s;
}
.ed-row:hover .ed-cat {
    color: var(--accent);
    border-color: rgba(255, 90, 44, 0.35);
    background: var(--accent-glow);
}

/* Editorial responsive */
@media (max-width: 960px) {
    .ed-layout { grid-template-columns: 1fr; gap: 40px; }
    .ed-aside { position: static; }
    .ed-lead { max-width: 100%; }
}
@media (max-width: 640px) {
    .editorial { padding: 70px 0; }
    .ed-row {
        grid-template-columns: auto 44px 1fr;
        gap: 14px;
        padding: 18px 6px;
    }
    .ed-cat { display: none; }
    .ed-icon { width: 44px; height: 44px; font-size: 1rem; }
    .ed-text h3 { font-size: 1rem; }
    .ed-text p { font-size: 0.8rem; }
    .ed-num { font-size: 0.8rem; }
}

/* ===== VARIANT 3 — ORBIT ===== */
.orbit-sec {
    padding: 90px 0 100px;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
/* Two-column: copy on the left, orbit on the right */
.orbit-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
}
.orbit-copy {
    max-width: 480px;
}
.orbit-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.14;
    color: var(--navy);
    margin-top: 10px;
}
.orbit-lead {
    font-size: 0.98rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-top: 16px;
}

/* Highlight bullets */
.orbit-highlights {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.orbit-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
}
.orbit-highlights li i {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: var(--accent-glow);
    color: var(--accent);
}

/* Mini stats row */
.orbit-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-200);
}
.orbit-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
    line-height: 1;
}
.orbit-stats span {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

/* Roaming "explore me" guide — hops between planets */
.planet--guide {
    box-shadow: 0 0 0 3px rgba(255, 90, 44, 0.45), 0 8px 22px rgba(11, 19, 43, 0.28);
}
/* Expanding pulse ring */
.planet--guide::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: guidePulse 1.6s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes guidePulse {
    0%   { transform: scale(1);   opacity: 0.9; }
    100% { transform: scale(1.7); opacity: 0; }
}
/* "Tap here" tooltip */
.planet--guide::after {
    content: 'Tap here';
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--accent);
    color: #fff;
    font: 600 11px var(--font-body);
    letter-spacing: 0.2px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 20px rgba(255, 90, 44, 0.4);
    pointer-events: none;
    z-index: 25;
    animation: guideTipBob 1.6s ease-in-out infinite;
}
@keyframes guideTipBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-3px); }
}
/* When the guided planet is being explored, hide the guide so the detail box takes over */
.planet--guide:hover::before,
.planet--guide:hover::after,
.planet--guide.is-open::before,
.planet--guide.is-open::after { display: none; }
.planet--guide:hover,
.planet--guide.is-open { box-shadow: 0 0 0 5px rgba(255, 90, 44, 0.18), 0 10px 26px rgba(11, 19, 43, 0.28); }

/* Orbit system */
.orbit-system {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
}
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(11, 19, 43, 0.14);
}
.ring-1 { inset: 26%; }
.ring-2 { inset: 13%; }
.ring-3 { inset: 0; }

/* Core */
.orbit-core {
    position: absolute;
    inset: 36%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 19, 43, 0.25), 0 0 0 8px rgba(255, 90, 44, 0.1);
    animation: coreBreath 5s ease-in-out infinite;
    z-index: 5;
}
@keyframes coreBreath {
    0%, 100% { box-shadow: 0 20px 50px rgba(11, 19, 43, 0.25), 0 0 0 8px rgba(255, 90, 44, 0.1); }
    50% { box-shadow: 0 20px 50px rgba(11, 19, 43, 0.25), 0 0 0 16px rgba(255, 90, 44, 0.06); }
}
.orbit-core img { width: 100%; height: 100%; object-fit: cover; }
.orbit-core span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font: 800 12px var(--font-display);
    letter-spacing: 2px;
    line-height: 1.4;
    background: linear-gradient(180deg, rgba(11,19,43,0.15), rgba(11,19,43,0.6));
}

@-webkit-keyframes orbitSpin {
    from { -webkit-transform: rotate(0); transform: rotate(0); }
    to   { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes orbitSpin {
    from { -webkit-transform: rotate(0); transform: rotate(0); }
    to   { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* Orbit arms — one planet each, ALL the same speed (rigid rotation).
   Each arm's start angle is set with an inline animation-delay, so planets
   keep a fixed 40° spacing and can never collide, cross, or line up radially.
   NOTE: literal 60s in the shorthand (no var()) — Safari mis-parses var() here. */
.orbit-arm {
    position: absolute;
    border-radius: 50%;
    -webkit-animation: orbitSpin 60s linear infinite;
    animation: orbitSpin 60s linear infinite;
    pointer-events: none; /* transparent ring must not block hovers to inner planets */
}
.orbit-arm.r-inner { inset: 26%; }
.orbit-arm.r-mid   { inset: 13%; }
.orbit-arm.r-outer { inset: 0; }

/* Planets — sit at the top of their arm and counter-rotate (matching inline delay) to stay upright */
.planet {
    position: absolute;
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 22px rgba(11, 19, 43, 0.22);
    -webkit-animation: orbitSpin 60s linear infinite reverse;
    animation: orbitSpin 60s linear infinite reverse;
    cursor: pointer;
    z-index: 6;
    pointer-events: auto; /* re-enable interaction on the planets themselves */
}

.p-blue { background: var(--pop); }
.p-orange { background: var(--accent); }
.p-navy { background: var(--navy); }

/* Always-visible planet labels (stay upright via counter-rotation) */
.planet em {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--navy);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 9px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(11, 19, 43, 0.1);
    transition: opacity 0.25s;
}

/* Rich hover detail box */
.planet-info {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    width: 210px;
    background: var(--navy);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 18px 44px rgba(11, 19, 43, 0.38);
    z-index: 30;
}
.planet-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: var(--navy);
}
.planet-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 5px;
    color: #fff;
}
.planet-info span {
    display: block;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

/* Shared mobile detail sheet — hidden on desktop (desktop uses the per-planet box) */
.orbit-sheet { display: none; }

/* Active planet highlight (pausing of only this planet's arm is handled in JS) */
.planet:hover,
.planet.is-open {
    box-shadow: 0 0 0 5px rgba(255, 90, 44, 0.18), 0 10px 26px rgba(11, 19, 43, 0.28);
    z-index: 20;
}
/* Backup: raise the arm holding the active planet so its detail box sits on top */
.orbit-arm:has(.planet:hover),
.orbit-arm:has(.planet.is-open) { z-index: 50; }
.planet.is-open em { opacity: 0; }
.planet.is-open .planet-info {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Orbit responsive */
@media (max-width: 960px) {
    .orbit-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .orbit-copy { max-width: 560px; margin: 0 auto; }
    .orbit-copy .section-tag-line { justify-content: center; }
    .orbit-highlights { align-items: flex-start; display: inline-flex; }
    .orbit-highlights li { justify-content: flex-start; text-align: left; }
    .orbit-stats { justify-content: center; }
    /* Hide planet name labels once the layout stacks (mobile/tablet) — names live in the tap box */
    .planet em { display: none; }
}
@media (max-width: 640px) {
    .orbit-sec { padding: 64px 0; }
    .orbit-stats { gap: 22px; }
    .orbit-stats strong { font-size: 1.4rem; }

    /* Smaller, still-revolving, tappable constellation on phone */
    .orbit-system {
        width: min(360px, 88vw);
        margin-top: 8px;
    }

    .planet {
        width: 48px; height: 48px;
        margin: -24px 0 0 -24px;
        font-size: 1rem;
    }
    /* Labels crowd a small orbit — hide them; the name lives in the tap card */
    .planet em { display: none; }
    .orbit-core span { font-size: 10px; }

    /* Highlight the tapped planet */
    .planet.is-open {
        box-shadow: 0 0 0 5px rgba(255, 90, 44, 0.22), 0 8px 22px rgba(11, 19, 43, 0.28);
    }

    /* Per-planet boxes can't be viewport-fixed (planets are transformed) — use the shared sheet */
    .planet-info { display: none !important; }

    .orbit-sheet {
        display: block;
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        background: var(--navy);
        color: #fff;
        border-radius: 16px;
        padding: 16px 18px;
        z-index: 200;
        box-shadow: 0 -10px 40px rgba(11, 19, 43, 0.35);
        -webkit-transform: translateY(140%);
        transform: translateY(140%);
        -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .orbit-sheet.show {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .orbit-sheet strong {
        display: block;
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    .orbit-sheet span {
        display: block;
        font-size: 12.5px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.72);
    }
}

/* Reduced motion — freeze planets at their angles (paused, not reset) */
@media (prefers-reduced-motion: reduce) {
    .orbit-arm, .planet { animation-play-state: paused; }
    .orbit-core { animation: none; }
}

/* ===== PRICING ===== */
.pricing-section { padding: 110px 0; }

.pricing-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin: 0 auto 48px;
}
.p-tab {
    padding: 10px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--gray-600);
    transition: all 0.25s;
}
.p-tab.active {
    background: var(--black);
    color: var(--white);
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.p-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 26px;
    position: relative;
    transition: all 0.3s;
}
.p-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.p-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, #FFF4EE 0%, var(--white) 100%);
    box-shadow: 0 8px 32px rgba(255, 90, 44, 0.12);
}
.p-featured:hover { transform: translateY(-6px); }

.p-popular {
    position: absolute;
    top: -10px;
    left: 26px;
    background: var(--pop);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    box-shadow: 0 4px 12px var(--pop-glow);
}

.p-card-top { margin-bottom: 16px; }
.p-card-top h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}
.p-sub {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}
.p-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 2px;
}
.p-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-700);
}
.p-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}
.p-cycle {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-left: 4px;
}
.p-inr {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-bottom: 18px;
}
.p-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 18px;
}
.p-features {
    margin-bottom: 24px;
}
.p-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 7px 0;
}
.p-features li i {
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.p-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    transition: all 0.25s;
}
.p-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.p-btn-fill {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.p-btn-fill:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 110px 0;
    background: var(--gray-50);
}
.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.faq-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.faq-sub {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item.open {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(255, 90, 44,0.06);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q i {
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform 0.3s;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p {
    padding: 0 22px 18px;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section { padding: 80px 0 100px; }

.cta-block {
    background: var(--black);
    border-radius: var(--radius);
    padding: 64px;
    position: relative;
    overflow: hidden;
}
.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: -4px;
    white-space: nowrap;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-inner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.7;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.cta-form input,
.cta-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus,
.cta-form select:focus { border-color: var(--accent); }
.cta-form select {
    color: rgba(255,255,255,0.35);
    appearance: none;
}
.cta-form select option { background: var(--black); color: var(--white); }

.cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}
.cta-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 90, 44,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 60px 0 28px;
    color: rgba(255,255,255,0.5);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand-col .logo { margin-bottom: 14px; }
.footer-brand-col .logo-text { color: var(--white); }
.footer-brand-col > p {
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.f-socials { display: flex; gap: 10px; }
.f-socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s;
}
.f-socials a:hover { background: var(--accent); color: var(--white); }

.footer-link-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.footer-link-col a {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-link-col a:hover { color: var(--accent); }

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    text-align: center;
}
.footer-bar p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ===== ANIMATIONS ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-eyebrow { justify-content: center; }
    .hero-para { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .visual-arch { width: 240px; height: 340px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main img { height: 350px; }
    
    .services-bento {
        grid-template-columns: 1fr 1fr;
    }
    .bento-large { grid-column: 1 / -1; grid-row: auto; }
    
    .pricing-row { grid-template-columns: 1fr 1fr; }
    
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-center {
        position: fixed;
        top: 80px; left: 16px; right: 16px;
        transform: none;
        background: var(--white);
        border-radius: var(--radius);
        padding: 16px;
        border: 1px solid var(--gray-200);
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .nav-center.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    .nav-links { flex-direction: column; gap: 4px; }
    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 14px;
    }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    
    .hero { min-height: auto; padding: 100px 0 0; }
    .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
    .visual-arch { width: 180px; height: 280px; }
    .hero-spin-badge { width: 85px; height: 85px; bottom: 8%; right: -5px; }
    .hero-bottom-inner { flex-direction: column; gap: 16px; }
    
    .services-bento { grid-template-columns: 1fr; }
    .bento-large { flex-direction: column; }
    
    .pricing-row { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    
    .transform-card { width: 280px; }
    .transform-images { height: 260px; }
    
    .cta-block { padding: 40px 24px; }
    .form-grid { grid-template-columns: 1fr; }
    
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
    .hero-spin-badge { width: 75px; height: 75px; }
}



/* ============================================
   HERO V2 — Video + Unique Glass Card Layout
   ============================================ */

.hero-v2 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 120px 40px 40px;
}

/* Video Background */
.hero-v2-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-v2-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg,
            rgba(11, 19, 43, 0.55) 0%,
            rgba(11, 19, 43, 0.3) 45%,
            rgba(11, 19, 43, 0.15) 100%),
        linear-gradient(180deg,
            rgba(11, 19, 43, 0.35) 0%,
            transparent 30%,
            rgba(11, 19, 43, 0.5) 100%);
}

.hero-v2-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ===== Corner details ===== */
.hero-v2-timecode {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}
.hero-v2-timecode span {
    color: var(--accent);
    font-weight: 700;
    margin-right: 4px;
}

.hero-v2-scroll {
    position: absolute;
    bottom: 32px;
    left: 40px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.hero-v2-scroll .scroll-bar {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}
.hero-v2-scroll .scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -44px;
    width: 44px;
    height: 100%;
    background: var(--accent);
    animation: scrollLineV2 2.4s linear infinite;
}
@keyframes scrollLineV2 {
    to { transform: translateX(88px); }
}

/* Vertical index numbers on left edge */
.hero-v2-index {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
}
.hero-v2-index .idx-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
}

/* ===== GLASS CARD BASE ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
}

/* Main glass card — tall vertical, centered left */
.hero-v2-main {
    position: relative;
    z-index: 5;
    width: 460px;
    max-width: 100%;
    padding: 40px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 60px;
    animation: cardFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
    margin-bottom: 4px;
}
.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow-strong);
    animation: eyebrowPulse 1.5s ease-in-out infinite;
}
@keyframes eyebrowPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* Title — big, tight */
.hero-v2-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -3px;
    color: var(--white);
    margin: 4px 0 8px;
    text-shadow:
        0 6px 30px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

/* "Shape" — bold pure white with subtle glow */
.hero-v2-title .word-shape {
    color: #fff;
    position: relative;
    display: inline-block;
}

/* "Your" — italic orange with strong glow */
.hero-v2-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
    padding-left: 8px;
    position: relative;
    text-shadow:
        0 0 30px var(--accent-glow-strong),
        0 0 60px rgba(255, 90, 44, 0.4);
    animation: emGlow 3s ease-in-out infinite;
}
@keyframes emGlow {
    0%, 100% {
        text-shadow:
            0 0 30px var(--accent-glow-strong),
            0 0 60px rgba(255, 90, 44, 0.4);
    }
    50% {
        text-shadow:
            0 0 40px var(--accent-glow-strong),
            0 0 90px rgba(255, 90, 44, 0.6),
            0 0 120px rgba(255, 90, 44, 0.25);
    }
}

/* "Destiny." — the hero word with gradient fill + neon glow */
.hero-v2-title .word-destiny {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg,
        #FFFFFF 0%,
        #FFFFFF 40%,
        #FFD5C2 60%,
        var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0 4px 4px 0;
    filter: drop-shadow(0 0 24px rgba(255, 90, 44, 0.35));
}

/* Underline sweep beneath "Destiny." */
.hero-v2-title .word-destiny::before {
    content: '';
    position: absolute;
    left: 0;
    right: 12px;
    bottom: 8px;
    height: 6px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent) 15%,
        var(--accent) 85%,
        transparent 100%);
    border-radius: 4px;
    filter: blur(1px);
    box-shadow: 0 0 20px var(--accent-glow-strong);
    animation: underlineSweep 3s ease-in-out infinite;
}
@keyframes underlineSweep {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.03); }
}

/* Orange period dot at the end of Destiny */
.hero-v2-title .word-destiny .dot {
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
    text-shadow:
        0 0 20px var(--accent),
        0 0 40px var(--accent-glow-strong);
    animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Meta line with orange bar */
.hero-v2-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.meta-line {
    width: 28px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Description */
.hero-v2-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

/* Buttons */
.hero-v2-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 22px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.glass-btn.primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 24px var(--accent-glow-strong);
    padding-right: 6px;
}
.glass-btn.primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--accent-glow-strong);
}
.glass-btn.primary .btn-arrow {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.25s;
}
.glass-btn.primary:hover .btn-arrow {
    transform: translateX(3px);
}
.glass-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.glass-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
.glass-btn.ghost i {
    font-size: 10px;
    color: var(--accent);
}

/* Inline stats inside the card */
.hero-v2-inline-stats {
    display: flex;
    gap: 0;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-v2-inline-stats > div {
    flex: 1;
    padding: 0 14px;
    position: relative;
}
.hero-v2-inline-stats > div:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.hero-v2-inline-stats > div:first-child { padding-left: 0; }
.hero-v2-inline-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}
.hero-v2-inline-stats span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== FLOATING MICRO GLASS TAGS ===== */
.float-tag {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: floatTag 6s ease-in-out infinite;
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.tag-live {
    top: 22%;
    right: 8%;
    font-weight: 600;
    animation-delay: 0s;
}
.live-pulse-mini {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow-strong);
    animation: livePulseMini 1.5s ease-in-out infinite;
}
@keyframes livePulseMini {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.tag-quote {
    top: 40%;
    right: 5%;
    max-width: 300px;
    font-size: 12px;
    line-height: 1.4;
    animation-delay: 1.5s;
}
.tag-quote i {
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}
.tag-quote strong {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 11px;
    margin-top: 2px;
}

.tag-country {
    top: 58%;
    right: 12%;
    animation-delay: 3s;
    padding: 8px 14px;
}
.tag-country .flag {
    font-size: 14px;
}
.tag-country strong {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-left: 4px;
}

/* ===== SESSION CARD (bottom right) ===== */
.hero-v2-session {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 7;
    width: 300px;
    padding: 18px 22px;
    animation: cardFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.session-time {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.session-time strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.session-time span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
}
.session-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.session-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}
.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    width: 68%;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 8px var(--accent-glow-strong);
    animation: progressGrow 3s ease-out infinite alternate;
}
@keyframes progressGrow {
    from { width: 45%; }
    to { width: 78%; }
}
.session-progress > span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== NAV LIGHT OVERRIDE OVER VIDEO ===== */
/* Logo text is white over dark hero */
.navbar:not(.scrolled) .logo-text { color: var(--white); }
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.navbar:not(.scrolled) .nav-link.active {
    color: var(--white);
    background: var(--accent);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

/* Mobile dropdown: always dark text on white background, even when nav is in
   light/transparent mode over the hero video. Without this, the not(.scrolled)
   overrides above turn nav-links white-on-white inside the dropdown. */
@media (max-width: 768px) {
    .navbar:not(.scrolled) .nav-center .nav-link {
        color: var(--black);
    }
    .navbar:not(.scrolled) .nav-center .nav-link:hover {
        color: var(--black);
        background: rgba(0, 0, 0, 0.04);
    }
    .navbar:not(.scrolled) .nav-center .nav-link.active {
        color: var(--white);
        background: var(--accent);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-v2-main { margin-left: 30px; }
    .tag-country { right: 5%; }
}

@media (max-width: 1024px) {
    .hero-v2-index, .hero-v2-timecode { display: none; }
    .tag-quote, .tag-country { display: none; }
    .hero-v2-session {
        right: 20px;
        bottom: 20px;
        width: 260px;
    }
}

@media (max-width: 768px) {
    /* Video-forward mobile hero — text is compact, video breathes */
    .hero-v2 {
        padding: 120px 16px 32px;
        min-height: 100vh;
        display: flex;
        align-items: flex-end;
    }

    /* Make video pop — lighten the dark overlay so video is more visible */
    .hero-v2-overlay {
        background:
            linear-gradient(180deg,
                rgba(11, 19, 43, 0.25) 0%,
                rgba(11, 19, 43, 0.1) 30%,
                rgba(11, 19, 43, 0.55) 75%,
                rgba(11, 19, 43, 0.85) 100%);
    }

    /* Compact glass card at the bottom — TRUE glassmorphism */
    .hero-v2-main {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 22px 20px 22px;
        gap: 12px;
        border-radius: 24px;
        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.08) 100%);
        backdrop-filter: blur(40px) saturate(1.8);
        -webkit-backdrop-filter: blur(40px) saturate(1.8);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
    }

    /* Subtle inner light-catching sheen */
    .hero-v2-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            transparent);
        pointer-events: none;
        border-radius: 24px 24px 0 0;
    }

    /* Make sure content sits above the sheen */
    .hero-v2-main > * { position: relative; z-index: 1; }

    /* Slightly frost/soften the eyebrow pill for glass consistency */
    .hero-v2-eyebrow {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    /* Strengthen text shadows for readability on glass */
    .hero-v2-title {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }
    .hero-v2-desc {
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    }

    /* Small eyebrow */
    .hero-v2-eyebrow {
        padding: 5px 12px;
        font-size: 9.5px;
        letter-spacing: 1.5px;
    }
    .eyebrow-dot { width: 6px; height: 6px; }

    /* Much smaller title */
    .hero-v2-title {
        font-size: 2rem;
        letter-spacing: -1.2px;
        line-height: 1.05;
        margin: 2px 0 4px;
    }
    .hero-v2-title em { padding-left: 4px; }

    /* Compact meta */
    .hero-v2-meta {
        font-size: 10.5px;
        gap: 8px;
    }
    .meta-line { width: 20px; }

    /* Compact description — 2 lines max feel */
    .hero-v2-desc {
        font-size: 0.82rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Buttons inline & smaller */
    .hero-v2-actions {
        flex-direction: row;
        gap: 8px;
        margin-top: 4px;
    }
    .glass-btn {
        padding: 10px 14px 10px 16px;
        font-size: 12px;
        gap: 6px;
        flex: 1;
        justify-content: center;
    }
    .glass-btn.primary { padding-right: 6px; }
    .glass-btn.primary .btn-arrow { width: 24px; height: 24px; font-size: 9px; }
    .glass-btn.ghost i { font-size: 9px; }

    /* Compact inline stats */
    .hero-v2-inline-stats {
        margin-top: 6px;
        padding-top: 14px;
        border-top-color: rgba(255,255,255,0.16);
    }
    .hero-v2-inline-stats > div { padding: 0 8px; }
    .hero-v2-inline-stats strong { font-size: 1rem; margin-bottom: 2px; }
    .hero-v2-inline-stats span { font-size: 8.5px; letter-spacing: 1px; }

    /* Hide desktop-only ornaments */
    .hero-v2-scroll { display: none; }
    .hero-v2-timecode { display: none; }
    .hero-v2-index { display: none; }
    .tag-live, .tag-quote, .tag-country { display: none; }
    .hero-v2-session { display: none; }
}

@media (max-width: 480px) {
    .hero-v2-title { font-size: 1.75rem; }
    .hero-v2-desc { font-size: 0.78rem; }
    .glass-btn { font-size: 11px; padding: 9px 12px; }
}

/* ===== HERO ICON SHOWER — mobile only ===== */
/* Fitness icons float up like bubbles blown from the bottom-left */
.hero-icon-shower {
    display: none;
}

@media (max-width: 768px) {
    .hero-icon-shower {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        overflow: hidden;
    }

    .icon-fly {
        position: absolute;
        bottom: -40px;
        font-size: 36px;
        color: rgba(255, 255, 255, 0.55);
        opacity: 0;
        animation: bubbleUp 5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        filter: drop-shadow(0 0 6px rgba(255, 100, 50, 0.3));
    }

    /* Stagger: different horizontal start positions (left side cluster) + delays */
    .icon-fly:nth-child(1) { left: 8%;  animation-delay: 0.1s; font-size: 34px; }
    .icon-fly:nth-child(2) { left: 15%; animation-delay: 0.6s; font-size: 30px; }
    .icon-fly:nth-child(3) { left: 5%;  animation-delay: 1.1s; font-size: 40px; }
    .icon-fly:nth-child(4) { left: 20%; animation-delay: 1.6s; font-size: 28px; }
    .icon-fly:nth-child(5) { left: 10%; animation-delay: 2.1s; font-size: 34px; }
    .icon-fly:nth-child(6) { left: 18%; animation-delay: 2.6s; font-size: 36px; }

    @keyframes bubbleUp {
        0% {
            opacity: 0;
            transform: translateY(0) translateX(0) scale(0.4) rotate(0deg);
        }
        10% {
            opacity: 0.7;
            transform: translateY(-8vh) translateX(4px) scale(1) rotate(5deg);
        }
        30% {
            opacity: 0.6;
            transform: translateY(-25vh) translateX(-6px) scale(0.95) rotate(-8deg);
        }
        50% {
            opacity: 0.45;
            transform: translateY(-45vh) translateX(8px) scale(0.9) rotate(6deg);
        }
        70% {
            opacity: 0.25;
            transform: translateY(-62vh) translateX(-4px) scale(0.85) rotate(-4deg);
        }
        100% {
            opacity: 0;
            transform: translateY(-85vh) translateX(6px) scale(0.7) rotate(10deg);
        }
    }
}

/* ===== FLOATING ACTION BUTTONS — WhatsApp + Scroll to Top ===== */
.fc-fab-stack {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.fc-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 27px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.fc-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.fc-fab-wa {
    background: #25D366;
}

.fc-fab-top {
    background: var(--accent, #ff5b2e);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.fc-fab-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .fc-fab-stack {
        bottom: 18px;
        right: 18px;
    }
    .fc-fab {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
}
