/* ========================================
   VASLEVI - Award-Winning Design 2024
   Modern Financial Newsletter Landing Page
   ======================================== */

/* ========================================
   Anti-bot Honeypot Field
   ======================================== */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* ========================================
     Shopify BuyButton modal: prevent scroll jump
     ======================================== */

/*
    BuyButton.js toggles `body.is-active` (and `shopify-buy-modal-is-active`) when the modal opens.
    On small screens, the default CSS uses `position: fixed` on `body.is-active`, which can
    reset the scroll position and feel like a "jump to top".
*/
body.is-active {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        overflow: hidden !important;
        height: auto !important;
}

html.shopify-buy-modal-is-active,
body.shopify-buy-modal-is-active {
        height: auto !important;
        overflow: hidden !important;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --primary-950: #0f172a;
    
    --accent-green: #34d399;
    --accent-purple: #93c5fd;
    --accent-cyan: #22d3ee;
    --accent-pink: #f472b6;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #3b82f6 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
    
    /* Typography (Tailwind default: font-sans) */
    --font-primary: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Fixed navbar height (used to offset fixed hero background image) */
    --nav-height: 96px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 60px rgba(96, 165, 250, 0.4);
    --shadow-glow-green: 0 0 60px rgba(52, 211, 153, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Stable viewport height (prevents mobile URL-bar "vh jump") */
    --viewport-height: 100vh;
    /* Dedicated mobile hero background height (frozen by JS on mobile) */
    --mobile-bg-height: 100vh;
}

@supports (height: 100svh) {
    :root {
        --viewport-height: 100svh;
    }
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-950);
    color: #fff;
    line-height: 1.6;
    overflow-x: clip;
    min-height: var(--viewport-height);
}

/* ========================================
   RESPONSIVE VISIBILITY
   ======================================== */

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

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

    .desktop-only {
        display: none;
    }
}

::selection {
    background: var(--primary-500);
    color: white;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-600);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(100vh) scale(0);
    --particle-alpha: 0.6;
    animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: var(--particle-alpha);
    }
    90% {
        opacity: var(--particle-alpha);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease-out-expo);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s, border-color 0.3s;
}

/* Custom cursor disabled (use system cursor) */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--primary-400);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-lg) var(--space-xl);
    transition: all 0.4s var(--ease-out-expo);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav.scrolled {
    background: rgba(15, 23, 42, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) var(--space-xl);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0;
    transition: transform 0.3s var(--ease-out-back);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-mobile-brand {
    display: none;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
}

.nav-mobile-brand:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-mobile-brand-vas {
    color: white;
}

.nav-mobile-brand-levi {
    color: var(--primary-400);
}

.logo-text {
    color: white;
}

.logo-accent {
    color: var(--primary-400);
}

.logo-dot {
    color: var(--primary-300);
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: nowrap;
}

.nav-social-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.nav-link.nav-social {
    padding: calc(var(--space-sm) * 0.75);
    line-height: 0;
}

.nav-link.nav-social::after {
    display: none;
}

.nav-link {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 101;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1280px) {
    .nav-links {
        gap: var(--space-lg);
    }

    .nav-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: var(--space-md);
    }

    .nav-link {
        font-size: 0.78rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 76px;
    }

    .nav {
        padding: var(--space-md) var(--space-lg);
    }

    .nav.scrolled {
        padding: var(--space-sm) var(--space-lg);
    }

    .nav-container {
        display: flex;
        align-items: center;
    }

    .logo {
        display: none;
    }

    .nav-mobile-brand {
        display: inline-flex;
        align-items: baseline;
        margin-right: auto;
    }

    .nav-toggle {
        margin-left: auto;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(15, 23, 42, 0.98);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
    padding: var(--space-xl) var(--space-lg);
}

.mobile-link {
    color: white;
    text-decoration: none;
}

.mobile-link.mobile-social {
    line-height: 0;
}

.mobile-link.mobile-social .social-icon {
    width: 22px;
    height: 22px;
}

.mobile-menu-panel {
    width: min(520px, 100%);
    border-radius: 28px;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.mobile-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s var(--ease-out-expo), background 0.2s var(--ease-out-expo), border-color 0.2s var(--ease-out-expo);
    -webkit-tap-highlight-color: transparent;
}

.mobile-tile:active {
    transform: scale(0.99);
}

.mobile-tile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.mobile-tile-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.mobile-tile-icon svg {
    width: 20px;
    height: 20px;
}

.mobile-tile-text {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.mobile-menu-social-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-lg);
}

.mobile-social {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s var(--ease-out-expo), background 0.2s var(--ease-out-expo), border-color 0.2s var(--ease-out-expo);
}

.mobile-social:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.mobile-social:active {
    transform: scale(0.99);
}

@media (max-width: 420px) {
    .mobile-menu-panel {
        padding: var(--space-md);
        border-radius: 24px;
    }

    .mobile-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MOBILE HOME (PHONE-ONLY)
   ======================================== */

.mobile-home {
    position: relative;
    z-index: 10;
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) calc(var(--space-3xl) + env(safe-area-inset-bottom, 0px));
    max-width: 560px;
    margin: 0 auto;
}

.mobile-home-bg {
    position: fixed;
    left: 0;
    top: 0;
    height: var(--mobile-bg-height);
    width: min(560px, 68vw);
    background-image: url('background.31916eabf8.webp');
    background-repeat: no-repeat;
    background-position: left calc(100% + 18px);
    background-size: contain;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    body.inapp-mobile .particles {
        display: none;
    }

    body.inapp-mobile .gradient-orb {
        animation: none;
    }
}

.mobile-home-intro {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mobile-widgets {
    position: relative;
    z-index: 1;
}

.mobile-home-intro .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
    margin-bottom: var(--space-md);
    text-align: center;
}

.mobile-home-intro .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 44ch;
}

.mobile-home-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.mobile-home-copy {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    margin-bottom: var(--space-lg);
}

.mobile-home-bonus {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: border-color 0.3s ease;
}

.mobile-home-bonus.is-expired {
    border-color: rgba(251, 113, 133, 0.35);
}

.mobile-home-intro .mobile-home-bonus,
.mobile-home-intro .mobile-mini-form {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-home-bonus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(96, 165, 250, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.35);
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-home-bonus-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

.mobile-home-bonus-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.mobile-home-bonus-cta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
}

.mobile-home-bonus-timer-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    justify-content: center;
}

.mobile-home-bonus-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
    color: #fdba74;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.12) inset;
    border-radius: var(--radius-lg);
    padding: 4px 12px;
    min-width: 72px;
}

.mobile-home-bonus.is-expired .mobile-home-bonus-timer {
    color: #fda4af;
    background: rgba(251, 113, 133, 0.12);
    border-color: rgba(251, 113, 133, 0.3);
}

.mobile-home-bonus-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(147, 197, 253, 0.45);
    background: rgba(59, 130, 246, 0.2);
    color: white;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out-expo), background 0.2s ease, opacity 0.3s ease;
}

.mobile-home-bonus-retry[hidden] {
    display: none;
}

.mobile-home-bonus-retry:active {
    transform: scale(0.97);
}

.mobile-home-bonus-retry:hover {
    background: rgba(59, 130, 246, 0.36);
}

/* Social proof + label above input */
.mobile-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.mobile-social-proof {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: none;
    border: none;
    text-align: center;
    line-height: 1.4;
}

.mobile-social-proof strong {
    font-weight: 800;
    color: var(--primary-300);
}

.mobile-mini-form {
    margin-top: var(--space-md);
}

.mobile-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 10px 10px 14px;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.mobile-email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    padding: 6px 0;
    min-width: 0;
}

.mobile-email-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.mobile-submit-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border: 1px solid rgba(147, 197, 253, 0.55);
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out-expo), background 0.2s var(--ease-out-expo);
    flex-shrink: 0;
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.35),
        0 0 0 4px rgba(96, 165, 250, 0.14),
        0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.mobile-submit-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(18px 18px at 30% 28%, rgba(255, 255, 255, 0.55), transparent 70%);
    opacity: 0.9;
    pointer-events: none;
}

.mobile-submit-btn svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.mobile-submit-btn:active {
    transform: scale(0.98);
}

.mobile-submit-btn:hover {
    background: linear-gradient(180deg, rgba(147, 197, 253, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
}

.mobile-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.mobile-submit-btn.loading {
    opacity: 0.75;
}

.mobile-submit-btn.success {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.5);
}

/* Pop attention for key CTAs (mobile home) */
.mobile-submit-btn,
.widget-books .widget-coupon-code,
.widget-btn.primary {
    animation: mobile-cta-pulse 2.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-submit-btn,
    .widget-books .widget-coupon-code,
    .widget-btn.primary {
        animation: none;
    }
}

@keyframes mobile-cta-pulse {
    0%, 100% {
        transform: translateZ(0);
        filter: saturate(1);
    }
    50% {
        transform: translateZ(0) scale(1.015);
        filter: saturate(1.08);
    }
}

.consent-checkbox-wrapper.mobile-consent {
    margin-top: var(--space-sm);
    display: flex;
    justify-content: center;
}

.mobile-home-note {
    margin-top: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-align: center;
}

.mobile-widgets {
    margin-top: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    align-items: stretch;
}

.mobile-widgets .books-widget-embed {
    margin: 0;
    grid-column: 1 / -1;
}

.mobile-widgets .widget-books-full {
    grid-column: 1 / -1;
}

.mobile-widget {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: var(--space-md);
    color: white;
    text-decoration: none;
    min-height: 220px;
}

.widget-books {
    border-color: rgba(52, 211, 153, 0.34);
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.14), rgba(34, 211, 238, 0.06));
    box-shadow:
        0 14px 40px rgba(16, 185, 129, 0.2),
        0 0 0 1px rgba(52, 211, 153, 0.12) inset;
}

.widget-books-img {
    margin-top: var(--space-md);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.widget-books-img img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.widget-open-indicator {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: -0.01em;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.widget-open-indicator svg {
    width: 16px;
    height: 16px;
}

.widget-coaching {
    border-color: rgba(96, 165, 250, 0.34);
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.14), rgba(96, 165, 250, 0.06));
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.22),
        0 0 0 1px rgba(96, 165, 250, 0.12) inset;
    display: flex;
    flex-direction: column;
}

.widget-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.widget-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

.widget-books .widget-icon {
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.28) 0%, rgba(34, 211, 238, 0.16) 100%);
    border-color: rgba(52, 211, 153, 0.3);
}

.widget-coaching .widget-icon {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.28) 0%, rgba(147, 197, 253, 0.16) 100%);
    border-color: rgba(96, 165, 250, 0.3);
}

.widget-icon svg {
    width: 18px;
    height: 18px;
}

.widget-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.widget-books .widget-badge {
    background: rgba(16, 185, 129, 0.16);
    border-color: rgba(52, 211, 153, 0.32);
}

.widget-coaching .widget-badge {
    background: rgba(96, 165, 250, 0.16);
    border-color: rgba(96, 165, 250, 0.32);
}

.widget-calc {
    grid-column: 1 / -1;
    min-height: 0;
    border-color: rgba(148, 163, 184, 0.22);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.46), rgba(30, 41, 59, 0.4));
    padding: 14px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.2);
}

.widget-calc .widget-head {
    margin-bottom: 0;
}

.widget-calc .widget-title {
    font-size: 0.98rem;
}

.widget-calc-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.widget-calc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius-full);
    font-weight: 800;
    text-decoration: none;
    color: rgba(226, 232, 240, 0.95);
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.34);
    box-shadow: none;
}

.widget-calc-btn--inline {
    width: auto;
    margin-top: 0;
    padding: 7px 11px;
    font-size: 0.76rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.widget-coupon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.widget-coupon-code {
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.35);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.widget-books .widget-coupon-code {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.32) 0%, rgba(34, 211, 238, 0.16) 100%);
    border-color: rgba(52, 211, 153, 0.6);
    box-shadow:
        0 18px 60px rgba(16, 185, 129, 0.35),
        0 0 0 4px rgba(52, 211, 153, 0.18),
        0 0 0 1px rgba(0, 0, 0, 0.12) inset;
    font-size: 1.05rem;
    padding: 6px 12px;
    border-radius: 12px;
}

.widget-coupon-hint {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.coupon-inline {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(52, 211, 153, 0.45);
    color: rgba(255, 255, 255, 0.95);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.widget-copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out-expo);
}

.widget-copy-btn svg {
    width: 16px;
    height: 16px;
}

.widget-copy-btn:active {
    transform: scale(0.98);
}

.widget-desc {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.books-thought-highlight {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(147, 197, 253, 0.3);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.24);
}

.books-thought-highlight p {
    margin: 0 0 6px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
}

.books-thought-highlight p:last-child {
    margin-bottom: 0;
}

.books-thought-strong {
    font-family: var(--font-display);
    font-weight: 800;
    color: #dbeafe;
}

.widget-media {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 110px;
    height: 148px;
    object-fit: cover;
    border-radius: 18px;
    transform: rotate(6deg);
    opacity: 0.95;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-actions {
    display: flex;
    gap: 10px;
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.widget-coaching .widget-actions {
    margin-top: auto;
}

.widget-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    padding: 10px 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
}

.widget-btn.primary {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border-color: rgba(147, 197, 253, 0.55);
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.26),
        0 0 0 4px rgba(96, 165, 250, 0.12);
}

.widget-offer {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: 16px 14px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
        0 22px 70px rgba(37, 99, 235, 0.16),
        0 0 0 1px rgba(0, 0, 0, 0.14) inset;
    position: relative;
    z-index: 1;
}

.widget-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
    background: radial-gradient(180px 120px at 18% 0%, rgba(96, 165, 250, 0.28), transparent 60%);
}

.widget-offer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.4), rgba(96, 165, 250, 0.12), rgba(245, 158, 11, 0.18));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
}

.widget-offer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.widget-offer-kicker-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.75) 55%, rgba(236, 72, 153, 0.55) 100%);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 14px 34px rgba(245, 158, 11, 0.18),
        0 0 0 3px rgba(245, 158, 11, 0.10),
        0 0 0 1px rgba(0, 0, 0, 0.12) inset;
}

.widget-offer-kicker-icon svg {
    width: 18px;
    height: 18px;
}

.widget-offer-kicker-text {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.widget-offer-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    min-width: 0;
}

.widget-price-old {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex: 0 0 auto;
}

.widget-price-new {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    font-weight: 950;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.98);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.28) 0%, rgba(37, 99, 235, 0.22) 100%);
    border: 1px solid rgba(147, 197, 253, 0.32);
    box-shadow:
        0 18px 60px rgba(37, 99, 235, 0.22),
        0 0 0 4px rgba(96, 165, 250, 0.12);
    white-space: nowrap;
    flex: 0 1 auto;
}

.widget-price-unit {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    flex: 0 1 auto;
}

.widget-benefits {
    list-style: none;
    padding: 0;
    margin: 12px 0 10px;
    display: grid;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.widget-benefit {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.25;
}

.widget-benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(52, 211, 153, 0.95);
    font-weight: 900;
}

.widget-offer-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.widget-offer-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 900;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.widget-timer {
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(96, 165, 250, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.22);
    white-space: nowrap;
}

.widget-offer-footnote {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
}

.widget-offer.expired {
    opacity: 0.75;
}

/* ========================================
   COACHING WIDGET – COMPACT SALES CARD
   ======================================== */

/* Transform pill: ●Káosz → Rendszer● */
.wc-transform {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    width: fit-content;
}

.wc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wc-dot--red {
    background: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.wc-dot--blue {
    background: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 6px rgba(96, 165, 250, 0.5);
}

.wc-transform-label {
    color: rgba(255, 255, 255, 0.55);
}

.wc-transform-label--highlight {
    color: var(--primary-400);
    font-weight: 800;
}

.wc-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

/* Micro review */
.wc-review {
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.wc-review-stars {
    font-size: 0.74rem;
    color: #fbbf24;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.wc-review-quote {
    font-size: 0.86rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    margin: 0;
}

.wc-review-name {
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.58);
}

/* Pricing row */
.wc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.wc-price-old {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.5);
    text-decoration-thickness: 1.5px;
}

.wc-price-now {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    padding: 2px 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.22) 0%, rgba(37, 99, 235, 0.18) 100%);
    border: 1px solid rgba(147, 197, 253, 0.28);
}

.wc-save-pill {
    font-size: 0.68rem;
    font-weight: 800;
    color: #34d399;
    padding: 3px 7px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    white-space: nowrap;
}

/* Scarcity line */
.wc-scarcity {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fbbf24;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* Dual buttons */
.wc-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.wc-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.15s, opacity 0.15s;
}

.wc-btn:active {
    transform: scale(0.96);
}

.wc-btn--book {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border: 1px solid rgba(147, 197, 253, 0.55);
    color: white;
    box-shadow:
        0 8px 24px rgba(37, 99, 235, 0.25),
        0 0 0 2px rgba(96, 165, 250, 0.1);
    animation: mobile-cta-pulse 2.6s ease-in-out infinite;
}

.wc-btn--details {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

/* Mini Transformation Teaser (coaching widget) */
.widget-transform-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: var(--space-sm) 0;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.widget-transform-from {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(239, 68, 68, 0.75);
}

.widget-transform-arrow {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.widget-transform-to {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(96, 165, 250, 0.9);
}

/* Mini Review (coaching widget) */
.widget-mini-review {
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
    margin: var(--space-sm) 0;
    position: relative;
    z-index: 1;
}

.widget-mini-review-author {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* Colorful mobile menu icons */
.tile-home .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(147, 197, 253, 0.22) 0%, rgba(96, 165, 250, 0.12) 100%);
}

.tile-tools .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.22) 0%, rgba(96, 165, 250, 0.12) 100%);
}

.tile-coaching .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.22) 0%, rgba(147, 197, 253, 0.12) 100%);
}

.tile-archive .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.22) 0%, rgba(148, 163, 184, 0.1) 100%);
}

.tile-products .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.22) 0%, rgba(34, 211, 238, 0.12) 100%);
}

.tile-newsletter .mobile-tile-icon {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.22) 0%, rgba(96, 165, 250, 0.12) 100%);
}

.widget-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 520px) {
    .mobile-widgets {
        grid-template-columns: 1fr;
    }

    .widget-media {
        width: 120px;
        height: 160px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    z-index: 10;
    min-height: var(--viewport-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: fixed;
    top: var(--nav-height);
    left: 0;
    height: calc(var(--viewport-height) - var(--nav-height));
    width: min(560px, 48vw);
    background-image: url('background.31916eabf8.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero::before {
        /* Keep the hero image pinned to the bottom-left on small screens */
        background-position: left bottom;
        bottom: 0;
        top: auto;
        height: var(--viewport-height);
    }
}

@media (max-width: 1024px) {
    .hero::before {
        background-position: left bottom;
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-200);
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: inline-block;
    position: relative;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    opacity: 0.7;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

.subscribe-form .consent-checkbox-wrapper {
    flex-basis: 100%;
    margin-top: var(--space-xs);
}

.subscribe-form .consent-label {
    justify-content: center;
    text-align: center;
}

.subscribe-form .consent-text {
    text-align: left;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.subscribe-form .input-wrapper {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
    isolation: isolate;
}

.subscribe-form .input-wrapper:focus-within {
    border-color: rgba(147, 197, 253, 0.55);
    background: rgba(255, 255, 255, 0.10);
    box-shadow:
        0 0 0 4px rgba(96, 165, 250, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 12px 32px rgba(0, 0, 0, 0.25);
}

.input-icon {
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--primary-300);
    z-index: 2;
}

.email-input {
    width: 100%;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 52px;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s var(--ease-out-expo);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-input:focus {
    outline: none;
}

.input-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: var(--gradient-accent);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s;
}

.email-input:focus ~ .input-glow,
.subscribe-form .input-wrapper:focus-within .input-glow {
    opacity: 0.3;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text, .btn-icon, .btn-success {
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-success {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
}

.btn-success svg {
    width: 24px;
    height: 24px;
}

.submit-btn.success .btn-text,
.submit-btn.success .btn-icon {
    opacity: 0;
    transform: scale(0.8);
}

.submit-btn.success .btn-success {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.submit-btn.success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }
    
    .submit-btn {
        justify-content: center;
    }
}

/* Hero Note */
.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-3xl);
}

.note-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s var(--ease-out-expo);
}

.hero-scroll-cta:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(96, 165, 250, 0.08);
    transform: translateY(-1px);
}

.hero-scroll-cta:focus {
    outline: none;
}

.hero-scroll-cta:focus-visible {
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.hero-scroll-cta-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-400);
    animation: hero-arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-400);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .stats-row {
        gap: var(--space-xl);
    }

    .hero-scroll-cta {
        font-size: 0.9rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float-gentle 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in.visible {
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */

.calculator-section {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) var(--space-xl);
}

@media (max-width: 600px) {
    .calculator-section {
        padding: var(--space-3xl) var(--space-md);
    }
}

@media (max-width: 420px) {
    .calculator-section {
        padding: var(--space-3xl) var(--space-sm);
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-300);
    margin-bottom: var(--space-lg);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.section-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-400);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Calculator Card */
.calculator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-3xl);
    padding: var(--space-2xl);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .calculator-card {
        padding: var(--space-xl);
    }
}

@media (max-width: 420px) {
    .calculator-card {
        padding: var(--space-lg);
        border-radius: var(--radius-2xl);
    }
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

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

/* Input Panel */
.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Mode Switcher */
.mode-switcher {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-xs);
    background: rgba(30, 58, 138, 0.3);
    border-radius: var(--radius-xl);
    position: relative;
}

.mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    z-index: 2;
}

.mode-btn svg {
    width: 18px;
    height: 18px;
}

.mode-btn.active {
    color: white;
}

.mode-indicator {
    position: absolute;
    top: var(--space-xs);
    left: var(--space-xs);
    width: calc(50% - var(--space-xs));
    height: calc(100% - var(--space-xs) * 2);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease-out-expo);
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.mode-switcher[data-mode="target"] .mode-indicator {
    transform: translateX(calc(100% + var(--space-xs)));
}

/* Input Groups */
.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.input-group.small {
    flex: 1;
}

.input-group.hidden {
    display: none;
}

.input-row {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 520px) {
    .input-row {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .stepper-btn {
        width: 40px;
        height: 40px;
    }
    .stepper-value {
        min-height: 56px;
    }
}

.input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.label-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.label-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-300);
    pointer-events: none;
    user-select: none;
}

/* Calculator number inputs */
.number-input-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--radius-lg);
    min-height: 60px;
}

.calc-number-input {
    flex: 1;
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    -moz-appearance: textfield;
    appearance: textfield;
    caret-color: rgba(255, 255, 255, 0.9);
}

.calc-number-input:focus,
.calc-number-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-suffix {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.number-input-container:focus-within {
    border-color: rgba(96, 165, 250, 0.15);
    box-shadow: none;
}

/* Fancy Slider */
.slider-container {
    position: relative;
    height: 24px;
}

.fancy-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    cursor: pointer;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
}

.fancy-slider::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
    border: 0;
}

.fancy-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.25);
    margin-top: -5px;
    transition: transform 0.15s var(--ease-out-expo);
}

.fancy-slider:active::-webkit-slider-thumb {
    transform: scale(0.95);
}

.fancy-slider::-moz-range-track {
    height: 8px;
    background: transparent;
    border: 0;
}

.fancy-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.25);
    transition: transform 0.15s var(--ease-out-expo);
}

.fancy-slider:active::-moz-range-thumb {
    transform: scale(0.95);
}

.fancy-slider::-moz-focus-outer {
    border: 0;
}

.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
    background: rgba(30, 58, 138, 0.5);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: width 0.28s var(--ease-out-expo);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

@media (max-width: 768px) {
    /* Mobile performance: avoid expensive blending/filters */
    .noise-overlay,
    .grid-overlay {
        display: none;
    }

    .gradient-orb {
        animation: none;
        filter: blur(80px);
        opacity: 0.35;
    }

    .nav.scrolled {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(15, 23, 42, 0.95);
    }

    .mobile-menu {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(15, 23, 42, 0.98);
    }
}

/* Stepper */
.stepper {
    display: flex;
    align-items: stretch;
    gap: var(--space-sm);
}

.stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: auto;
    min-height: 60px;
    background: rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary-300);
    cursor: pointer;
    transition: all 0.2s var(--ease-out-expo);
}

.stepper-btn:hover {
    background: rgba(59, 130, 246, 0.4);
    border-color: var(--primary-400);
    color: white;
}

.stepper-btn:active {
    transform: scale(0.95);
}

.stepper-btn svg {
    width: 16px;
    height: 16px;
}

.stepper-value {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--radius-lg);
    min-height: 60px;
}

.stepper-value span:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stepper-unit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Results Panel */
.calc-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Result Cards */
.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* Make result cards adapt earlier (prevents crowding/truncation on smaller desktops) */
@media (max-width: 1100px) {
    .result-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

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

.result-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: var(--space-lg);
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.result-head {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 0;
}

.result-head .result-label {
    margin: 0;
    white-space: normal;
    overflow: visible;
    line-height: 1.2;
}

.result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.3);
}

.result-card.primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-color: rgba(96, 165, 250, 0.3);
}

.result-card.profit {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.1) 100%);
    border-color: rgba(52, 211, 153, 0.25);
}

.result-card.profit .result-icon {
    color: var(--accent-green);
}

.result-card.profit .result-value {
    color: var(--accent-green);
}

.result-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: var(--primary-400);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-400);
    flex-shrink: 0;
}

.result-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 480px) {
    .result-card {
        padding: var(--space-md);
        gap: 8px;
    }
    
    .result-icon {
        width: 32px;
        height: 32px;
    }
    
    .result-icon svg {
        width: 20px;
        height: 20px;
    }
}


.result-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xs);
}

.result-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 700;
    color: white;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    white-space: normal;
    word-break: break-word;
    overflow: visible;
    pointer-events: none;
    user-select: none;
}

/* .result-card.primary .result-value {
    font-size: clamp(1.25rem, 1.9vw, 1.6rem);
} */

@media (max-width: 420px) {
    /* On very small screens, allow wrapping instead of cutting off */
    .result-value {
        white-space: normal;
    }
}

/* Chart Container */
.chart-container {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    height: 300px;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding-top: var(--space-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-sm);
}

.legend-color.balance {
    background: var(--primary-400);
}

.legend-color.invested {
    background: rgba(147, 197, 253, 0.5);
    border: 2px dashed var(--primary-300);
}

/* ========================================
   SECTION ALTERNATING BACKGROUNDS
   ======================================== */

.section-dark {
    background: rgba(15, 23, 42, 0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.section-light {
    background: transparent;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

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

/* Feature Card */
.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

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

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-xl);
}

.feature-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-xl);
    color: var(--primary-400);
    transition: all 0.4s var(--ease-out-expo);
}

.feature-icon.accent {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.2);
    color: var(--accent-green);
}

.feature-icon.special {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
    color: var(--accent-purple);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover .feature-icon.accent {
    box-shadow: var(--shadow-glow-green);
}

.icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-2xl);
    animation: rotate-slow 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .icon-ring {
    opacity: 1;
}

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

.icon-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.icon-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.icon-particles span:nth-child(1) { top: -10px; left: 50%; }
.icon-particles span:nth-child(2) { bottom: -10px; left: 50%; }
.icon-particles span:nth-child(3) { left: -10px; top: 50%; }
.icon-particles span:nth-child(4) { right: -10px; top: 50%; }

.feature-card:hover .icon-particles span {
    opacity: 0.6;
    animation: particle-pop 0.4s var(--ease-out-back);
}

@keyframes particle-pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-400);
    transition: all 0.3s;
    cursor: pointer;
}

a.feature-link {
    text-decoration: none;
}

/* Make entire card clickable when it's an <a> */
a.feature-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card {
    cursor: pointer;
}

.feature-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-expo);
}

.feature-link:hover {
    color: var(--primary-300);
}

.feature-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   BLOG / POSTS
   ======================================== */

.hero-compact {
    min-height: auto;
    padding: 104px var(--space-xl) var(--space-lg);
}

.blog-hero-cta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
    text-align: center;
}

.hero-compact .subscribe-form {
    margin-bottom: var(--space-md);
}

.hero-compact .hero-note {
    margin-bottom: var(--space-xl);
}

.archive-section {
    padding-top: var(--space-2xl);
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.archive-help {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 820px;
    margin: 0 auto var(--space-xl);
    font-size: 1rem;
    line-height: 1.7;
}

.archive-help code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.hero-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 980px;
    margin: 0 auto;
}

.hero-post {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 12px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo), background 0.25s var(--ease-out-expo);
    max-width: min(520px, 100%);
}

.hero-post:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.25);
    background: rgba(96, 165, 250, 0.06);
}

.hero-post:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.hero-post-date {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-post-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .hero-post {
        width: 100%;
        justify-content: flex-start;
    }
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

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

.blog-issue-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(15, 23, 42, 0.28);
    border-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
        0 20px 45px -18px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.issue-media {
    height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.35), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(167, 139, 250, 0.25), transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.issue-media.has-image {
    height: auto;
    aspect-ratio: 16 / 9;
}

.issue-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 60%, rgba(52, 211, 153, 0.25), transparent 55%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.0), rgba(15, 23, 42, 0.35));
    opacity: 0.9;
}

.issue-media.has-image::after {
    opacity: 0.75;
}

.issue-media-a {
    background:
        radial-gradient(circle at 25% 20%, rgba(96, 165, 250, 0.45), transparent 55%),
        radial-gradient(circle at 75% 40%, rgba(52, 211, 153, 0.22), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.issue-media-b {
    background:
        radial-gradient(circle at 20% 35%, rgba(167, 139, 250, 0.35), transparent 55%),
        radial-gradient(circle at 80% 25%, rgba(96, 165, 250, 0.25), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.issue-media-c {
    background:
        radial-gradient(circle at 25% 25%, rgba(52, 211, 153, 0.3), transparent 55%),
        radial-gradient(circle at 75% 35%, rgba(96, 165, 250, 0.25), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.issue-media-d {
    background:
        radial-gradient(circle at 35% 20%, rgba(96, 165, 250, 0.35), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(244, 114, 182, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.issue-body {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.issue-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.issue-meta-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.blog-issue-card .feature-title {
    margin-bottom: 0;
}

.blog-issue-card .feature-desc {
    margin-bottom: 0;
}

.blog-issue-card .feature-link {
    margin-top: auto;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    margin-top: calc(var(--space-md) * -0.6);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.post-date-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.18);
    color: rgba(167, 243, 208, 0.95);
    font-size: 0.85rem;
    font-weight: 600;
}

.post-page .section-container {
    max-width: 900px;
}

.post-top {
    margin-bottom: var(--space-xl);
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s var(--ease-out-expo);
}

.post-back svg {
    width: 18px;
    height: 18px;
    color: var(--primary-400);
}

.post-back:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(96, 165, 250, 0.08);
    transform: translateY(-1px);
}

.post-back:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.post-card {
    padding: var(--space-3xl);
}

@media (max-width: 600px) {
    .post-card {
        padding: var(--space-xl);
    }
}

.post-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
}

.post-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin: 0;
}

.post-content {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
}

.post-content a {
    color: var(--primary-300);
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.35);
    text-underline-offset: 3px;
    transition: color 0.25s var(--ease-out-expo), text-decoration-color 0.25s var(--ease-out-expo);
}

.post-content a:hover {
    color: var(--primary-200);
    text-decoration-color: rgba(147, 197, 253, 0.75);
}

.post-content a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
    border-radius: 10px;
}

.post-content h2 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 800;
    margin: var(--space-xl) 0 var(--space-md);
}

.post-content p {
    margin: 0 0 var(--space-md);
}

.post-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.6);
}

.post-figure {
    margin: var(--space-xl) 0;
}

.post-figure figcaption {
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.post-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0 0;
}

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

.post-resource-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    text-decoration: none;
    box-shadow:
        0 16px 38px -22px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo), background 0.25s var(--ease-out-expo);
}

.post-resource-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius-2xl) - 6px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 36px -26px rgba(0, 0, 0, 0.65);
    margin-bottom: var(--space-sm);
}

.post-resource-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-resource-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.28);
    background: rgba(96, 165, 250, 0.06);
}

.post-resource-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.post-resource-meta {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.post-resource-title {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    line-height: 1.25;
    font-size: 1.05rem;
}

.post-resource-cta {
    margin-top: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-300);
    font-weight: 700;
    text-decoration: none;
}

.post-resource-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s var(--ease-out-expo);
}

.post-resource-card:hover .post-resource-cta svg {
    transform: translateX(4px);
}

.post-content ul,
.post-content ol {
    margin: 0 0 var(--space-md);
    padding-left: 1.25rem;
}

.post-content li {
    margin: 0 0 var(--space-sm);
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) var(--space-xl);
}

.newsletter-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    text-align: center;
}

@media (max-width: 600px) {
    .newsletter-card {
        padding: var(--space-2xl) var(--space-lg);
        border-radius: var(--radius-2xl);
    }
}

@media (max-width: 420px) {
    .newsletter-card {
        padding: var(--space-xl) var(--space-md);
    }
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.newsletter-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.newsletter-orb.orb-a {
    width: 300px;
    height: 300px;
    background: var(--primary-500);
    top: -100px;
    left: -100px;
}

.newsletter-orb.orb-b {
    width: 250px;
    height: 250px;
    background: var(--accent-purple);
    bottom: -80px;
    right: -80px;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.newsletter-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.newsletter-input-wrap {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.newsletter-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.newsletter-btn:hover svg {
    transform: translateX(4px);
}

/* Newsletter Button - Icon States (shared with hero button) */
.newsletter-btn .btn-text,
.newsletter-btn .btn-icon,
.newsletter-btn .btn-success {
    transition: all 0.3s var(--ease-out-expo);
}

.newsletter-btn .btn-icon svg {
    width: 18px;
    height: 18px;
}

.newsletter-btn .btn-success {
    position: absolute;
    right: var(--space-xl);
    transform: scale(0);
    opacity: 0;
}

.newsletter-btn .btn-success svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.newsletter-btn {
    position: relative;
}

.newsletter-btn.success .btn-text,
.newsletter-btn.success .btn-icon {
    opacity: 0;
    transform: translateX(-10px);
}

.newsletter-btn.success .btn-success {
    transform: scale(1);
    opacity: 1;
}

.newsletter-btn.success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

@media (max-width: 500px) {
    .newsletter-input-wrap {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
}

/* ========================================
   NEWSLETTER BONUS BOX
   ======================================== */

.newsletter-bonus-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 2px solid rgba(96, 165, 250, 0.5);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    animation: bonusPulse 3s ease-in-out infinite;
}

.newsletter-bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    animation: bonusShine 4s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 35px rgba(59, 130, 246, 0.5); }
}

@keyframes bonusShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50%, 100% { transform: translateX(100%) rotate(45deg); }
}

.bonus-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem 0.4rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.bonus-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bonus-text strong {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.bonus-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bonus-peek {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-300);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.bonus-peek:hover {
    opacity: 1;
    color: white;
}

/* Hero Bonus Tag */
.hero-bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 1px solid rgba(96, 165, 250, 0.4);
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    margin-left: 0.35rem;
    font-size: 0.85em;
    color: var(--primary-300);
    animation: heroBonusPulse 2s ease-in-out infinite;
}

@keyframes heroBonusPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 16px rgba(59, 130, 246, 0.4); }
}

/* Hero Bonus Box */
.hero-bonus-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 2px solid rgba(96, 165, 250, 0.5);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    animation: bonusPulse 3s ease-in-out infinite;
}

.hero-bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    animation: bonusShine 4s ease-in-out infinite;
}

.hero-bonus-box .bonus-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
}

.hero-bonus-box .bonus-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 500px) {
    .hero-bonus-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.25rem 1rem;
        padding-top: 2rem;
    }

    .hero-bonus-box .bonus-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .hero-bonus-box .bonus-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .bonus-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-badge {
        right: 50%;
        transform: translateX(50%);
    }
    
    .newsletter-bonus-box {
        padding-top: 2rem;
    }
    
    .hero-bonus-tag {
        display: flex;
        margin-left: 0;
        margin-top: 0.5rem;
        justify-content: center;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    z-index: 10;
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-logo .accent {
    color: var(--primary-400);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link.footer-social {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-link:hover {
    color: white;
}

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

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */

.toast {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--success);
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.error {
    background: #ef4444;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.toast svg {
    width: 20px;
    height: 20px;
}

/* Button loading state */
.submit-btn.loading,
.newsletter-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading .btn-text::after,
.newsletter-btn.loading span::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
    display: none !important;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: 20px;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text p:first-child {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-text a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   CONSENT CHECKBOX
   ======================================== */

.consent-checkbox-wrapper {
    width: 100%;
    margin-top: 12px;
}

.newsletter-consent {
    margin-top: 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.consent-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    margin-top: 2px;
}

.consent-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.consent-checkbox:checked + .consent-checkmark {
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    border-color: var(--primary-400);
}

.consent-checkbox:checked + .consent-checkmark::after {
    display: block;
}

.consent-checkbox:focus + .consent-checkmark {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

/* Error state overrides focus */
.consent-checkbox-wrapper.error .consent-checkbox:focus + .consent-checkmark,
.consent-checkbox-wrapper.error .consent-checkmark {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
}

.consent-label:hover .consent-checkmark {
    border-color: var(--primary-300);
    background: rgba(255, 255, 255, 0.12);
}

.consent-text {
    flex: 1;
}

/* ========================================
   SUBSCRIBE MODAL
   ======================================== */

body.no-scroll {
    overflow: hidden;
}

.subscribe-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 15, 40, 0.65);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 12000;
}

.subscribe-modal.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.subscribe-modal-card {
    position: relative;
    width: min(520px, 100%);
    background: radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.12), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(52, 211, 153, 0.12), transparent 30%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(10px);
    transition: transform 0.25s ease;
}

.subscribe-modal.show .subscribe-modal-card {
    transform: translateY(0);
}

.subscribe-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subscribe-modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.subscribe-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.35);
}

.subscribe-modal-title {
    margin: 0 0 10px;
    color: var(--text-primary);
    font-size: 1.2rem;
    line-height: 1.4;
}

.subscribe-modal-text {
    margin: 0 0 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.subscribe-modal-text strong {
    color: var(--text-primary);
}

.subscribe-modal-subtext {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.subscribe-modal-btn {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.35);
}

.subscribe-modal-btn:hover {
    transform: translateY(-1px);
}

.subscribe-modal-btn:active {
    transform: translateY(0);
}

.consent-text a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.consent-text a:hover {
    opacity: 0.8;
}

/* Shake animation for validation error */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.consent-checkbox-wrapper.shake {
    animation: shake 0.5s ease-in-out;
}

/* ========================================
   KISOKOS - Interactive PDF Styles
   ======================================== */

.kisokos-wrapper {
    min-height: var(--viewport-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem;
    padding-top: 100px; /* fallback; JS overrides dynamically */
    position: relative;
    z-index: 10;
}

/* ========================================
   PASSWORD MODAL - Glass-morphism
   ======================================== */

.password-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.password-overlay.hidden {
    display: none;
}

.password-modal {
    background: 
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.06), transparent 50%),
        rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(96, 165, 250, 0.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    max-height: 95vh;
    overflow-y: auto;
}

.password-brand {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease-out-back);
}

.password-brand:hover {
    transform: scale(1.05);
}

.password-brand-text {
    color: white;
}

.password-brand-accent {
    color: var(--primary-400);
}

.password-brand-dot {
    color: var(--primary-300);
    opacity: 0.7;
}

.password-lock-icon {
    margin-bottom: 1rem;
}

.password-lock-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-400);
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.3));
}

.password-modal h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.password-modal p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.password-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.password-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.password-input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
    background: rgba(30, 41, 59, 0.95);
}

.password-input.error {
    border-color: var(--error);
    animation: kisokos-shake 0.5s ease-in-out;
}

@keyframes kisokos-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.password-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.password-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.password-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.password-submit:hover::before {
    opacity: 1;
}

.password-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-error.visible {
    opacity: 1;
}

.password-hint {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.password-hint a {
    color: var(--primary-400);
    text-decoration: none;
}

.password-hint a:hover {
    text-decoration: underline;
}

.password-cta {
    display: block;
    margin-top: 1.25rem;
    padding: 0.8rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.password-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.password-hint-secondary {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.password-hint-secondary a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.password-hint-secondary a:hover {
    color: white;
    text-decoration: underline;
}

/* ========================================
   PDF CONTAINER & HEADER
   ======================================== */

.pdf-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Header with progress */
.pdf-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: sticky;
    top: var(--sticky-top, 68px);
    z-index: 50;
    transition: top 0.3s ease;
}

.pdf-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdf-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.pdf-logo-icon {
    font-size: 1.35rem;
}

.pdf-page-indicator {
    background: rgba(96, 165, 250, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Progress Bar */
.pdf-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.pdf-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.5s var(--ease-out-expo);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

/* Progress Steps */
.pdf-progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 0.25rem;
}

.pdf-step {
    flex: 1;
    height: 28px;
    border: none;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pdf-step:hover {
    background: rgba(96, 165, 250, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.pdf-step.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
}

.pdf-step.completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

/* Finish button in header (shows on last page) */
.pdf-header-finish {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: kisokos-pageIn 0.4s var(--ease-out-expo);
}

.pdf-header-finish:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ========================================
   PAGE WRAPPER & TRANSITIONS
   ======================================== */

.pdf-page {
    display: none;
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(96, 165, 250, 0.08);
    animation: kisokos-pageIn 0.5s var(--ease-out-expo);
}

.pdf-page.active {
    display: block;
}

@keyframes kisokos-pageIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================
   HERO HEADER (Page 1)
   ======================================== */

.pdf-hero {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
    padding: 3rem 2rem;
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pdf-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.pdf-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.pdf-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

/* ========================================
   SECTION HEADER (Dark-themed border)
   ======================================== */

.pdf-section-header {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pdf-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-cyan), var(--primary-400));
}

.pdf-section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pdf-section-header p {
    opacity: 0.85;
    font-size: 1rem;
}

/* ========================================
   CONTENT AREA
   ======================================== */

.pdf-content {
    padding: 2.5rem 2rem;
    color: #1e293b;
}

.pdf-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-600);
}

.pdf-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.pdf-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}

.pdf-content p.lead {
    font-size: 1.1rem;
    color: #334155;
}

/* ========================================
   FEATURE CARDS (with hover interactions)
   ======================================== */

.pdf-content .feature-cards {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pdf-content .feature-card {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.pdf-content .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-300);
}

.pdf-content .feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-content .feature-card p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   INFO BOX
   ======================================== */

.info-box {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-600);
    padding: 1.25rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 1.5rem 0;
}

.info-box.highlight {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-left-color: var(--primary-700);
}

.info-box p {
    margin-bottom: 0;
    color: var(--primary-800);
    font-weight: 500;
}

/* ========================================
   LIST STYLES
   ======================================== */

.pdf-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pdf-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
}

.pdf-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-600);
    border-radius: 50%;
}

/* ========================================
   COMPARISON GRID (with hover)
   ======================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-200);
}

.comparison-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-100);
}

.comparison-card .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.comparison-card .section-label:first-of-type {
    margin-top: 0;
}

.pros-list li::before {
    background: var(--success) !important;
}

.cons-list li::before {
    background: var(--warning) !important;
}

/* ========================================
   PERSONA CARDS (with hover)
   ======================================== */

.persona-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.persona-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-200);
}

.persona-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.persona-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.persona-avatar svg {
    width: 24px;
    height: 24px;
    color: var(--primary-800);
}

.persona-avatar.pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.persona-avatar.pink svg {
    color: #be185d;
}

.persona-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-900);
    margin: 0;
}

.persona-quote {
    font-style: italic;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #cbd5e1;
}

.persona-card .logic {
    color: #475569;
}

.persona-card .logic strong {
    color: var(--primary-800);
}

/* ========================================
   STEPS LIST
   ======================================== */

.steps-list {
    counter-reset: step;
    margin: 1.5rem 0;
}

.step-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    border-left: 2px solid var(--primary-100);
    margin-left: 1rem;
}

.step-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.step-item::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -1.15rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.step-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   DAY CHIPS
   ======================================== */

.day-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.day-chip {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: #475569;
    transition: all 0.2s ease;
}

.day-chip:hover {
    border-color: var(--primary-200);
    background: var(--primary-50);
}

.day-chip strong {
    color: var(--primary-900);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-badge svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary-800);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   PDF NAVIGATION (Dark-themed border)
   ======================================== */

.pdf-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04) 0%, rgba(30, 58, 138, 0.04) 100%);
    border-top: 1px solid rgba(30, 58, 138, 0.08);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.nav-btn.prev {
    background: transparent;
    color: #64748b;
}

.nav-btn.prev:hover {
    background: rgba(30, 58, 138, 0.06);
    color: var(--primary-900);
}

.nav-btn.next {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: #fff;
}

.nav-btn.next:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.nav-btn.finish {
    background: linear-gradient(135deg, var(--success), #059669);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   DISCLAIMER (Dark-themed border)
   ======================================== */

.disclaimer {
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.03);
    border-top: 1px solid rgba(30, 58, 138, 0.06);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.disclaimer p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   BACK LINK
   ======================================== */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-400);
    transform: translateX(-4px);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   COMPLETION & FEEDBACK OVERLAYS
   ======================================== */

.completion-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1rem 2rem;
    overflow-y: auto;
}

.completion-modal {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: kisokos-slideUp 0.4s var(--ease-out-expo);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes kisokos-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feedback Form */
.feedback-form {
    text-align: left;
    margin-top: 1.5rem;
}

.feedback-field {
    margin-bottom: 1.25rem;
}

.feedback-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feedback-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
    resize: vertical;
    transition: all 0.2s ease;
}

.feedback-field textarea::placeholder {
    color: #94a3b8;
}

.feedback-field textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    background: white;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

.feedback-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.feedback-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.feedback-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.feedback-submit-btn .spinner {
    width: 20px;
    height: 20px;
    animation: kisokos-spin 1s linear infinite;
}

.feedback-submit-btn .btn-loading,
.feedback-submit-btn .btn-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feedback-submit-btn .btn-success svg,
.feedback-submit-btn .btn-loading svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@keyframes kisokos-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feedback-skip {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: center;
}

.feedback-skip:hover {
    color: #0f172a;
}

/* Confetti */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
}

/* Completion Content */
.completion-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.completion-modal h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.completion-lead {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.completion-content {
    text-align: left;
}

.completion-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.completion-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.completion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.completion-btn svg {
    width: 20px;
    height: 20px;
}

.completion-btn.coaching {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.completion-btn.coaching:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.completion-btn.primary {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.completion-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.completion-btn.secondary {
    background: #f1f5f9;
    color: #334155;
}

.completion-btn.secondary:hover {
    background: #e2e8f0;
}

.completion-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}

.completion-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.completion-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.completion-social svg {
    width: 18px;
    height: 18px;
}

.completion-social.youtube {
    background: #ff0000;
}

.completion-social.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.completion-social.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.completion-social.instagram:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.completion-social.tiktok {
    background: #000000;
}

.completion-social.tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
}

.completion-newsletter {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 1.5rem;
}

.completion-newsletter-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.completion-newsletter h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.25rem;
}

.completion-newsletter p {
    font-size: 0.85rem;
    color: #15803d;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   KISOKOS RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .kisokos-wrapper {
        /* padding-top set by JS */
    }

    .pdf-header {
        padding: 0.75rem 1rem;
    }

    .pdf-hero {
        padding: 2.5rem 1.5rem;
    }

    .pdf-content {
        padding: 2rem 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .completion-overlay {
        padding: 2rem 1rem 1.5rem;
    }

    .completion-modal {
        padding: 2rem 1.5rem;
        max-height: none;
    }
}

@media (max-width: 640px) {
    .kisokos-wrapper {
        padding: 1rem 0.75rem;
        /* padding-top set by JS */
    }

    .pdf-header {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
        border-radius: var(--radius-lg);
    }

    .pdf-header-finish {
        padding: 0.5rem 0.75rem;
        font-size: 0.78rem;
    }

    .pdf-logo {
        font-size: 0.9rem;
    }

    .pdf-logo-icon {
        font-size: 1.15rem;
    }

    .pdf-page-indicator {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .pdf-step {
        height: 24px;
        font-size: 0.6rem;
    }

    .pdf-hero {
        padding: 2rem 1.25rem;
    }

    .pdf-hero h1 {
        font-size: 1.75rem;
    }

    .pdf-section-header {
        padding: 1.5rem 1.25rem;
    }

    .pdf-section-header h2 {
        font-size: 1.4rem;
    }

    .pdf-content {
        padding: 1.5rem 1.25rem;
    }

    .pdf-navigation {
        padding: 1rem 1.25rem;
    }

    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .day-chips {
        flex-direction: column;
    }

    .password-modal {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-xl);
        margin: 0.5rem;
    }

    .password-brand {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .password-lock-icon svg {
        width: 40px;
        height: 40px;
    }

    .password-modal h2 {
        font-size: 1.15rem;
    }

    .password-modal p {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .password-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .password-submit {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .password-cta {
        padding: 0.7rem 1rem;
        font-size: 0.82rem;
    }

    .password-hint {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.78rem;
    }

    .password-hint-secondary {
        font-size: 0.7rem;
    }

    .completion-modal {
        padding: 2rem 1.25rem;
    }

    .completion-socials {
        flex-direction: column;
    }

    .completion-social {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .kisokos-wrapper {
        /* padding-top set by JS */
    }

    .pdf-header-finish {
        padding: 0.45rem 0.6rem;
        font-size: 0.72rem;
    }

    .completion-overlay {
        padding: 1rem 0.75rem 1rem;
    }

    .completion-modal {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-xl);
    }

    .pdf-hero h1 {
        font-size: 1.5rem;
    }

    .pdf-content h2 {
        font-size: 1.25rem;
    }

    .step-item {
        padding-left: 2.75rem;
    }

    .comparison-card {
        padding: 1.25rem;
    }

    .persona-card {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 2rem 1.25rem;
    }
}

/* ========================================
   COACHING HERO CARD (Homepage)
   ======================================== */

.coaching-hero-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
}

.coaching-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), #3b82f6);
}

.coaching-hero-inner {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coaching-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-xl);
    display: inline-block;
}

.coaching-hero-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-xl);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
    animation: coaching-icon-pulse 3s ease-in-out infinite;
}

@keyframes coaching-icon-pulse {
    0%, 100% { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 20px rgba(96, 165, 250, 0.25); }
    50% { transform: scale(1.15) rotate(3deg); box-shadow: 0 0 30px rgba(96, 165, 250, 0.4); }
}

.coaching-hero-icon svg {
    width: 34px;
    height: 34px;
    color: var(--primary-400);
}

/* Always-active animated ring & particles for coaching icon */
.coaching-icon-wrapper .icon-ring.always-active {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-2xl);
    animation: rotate-slow 20s linear infinite;
    opacity: 1;
}

.coaching-icon-wrapper .icon-particles.always-active {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.coaching-icon-wrapper .icon-particles.always-active span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-pop 0.4s var(--ease-out-back);
}

.coaching-icon-wrapper .icon-particles.always-active span:nth-child(1) { top: -10px; left: 50%; }
.coaching-icon-wrapper .icon-particles.always-active span:nth-child(2) { bottom: -10px; left: 50%; }
.coaching-icon-wrapper .icon-particles.always-active span:nth-child(3) { left: -10px; top: 50%; }
.coaching-icon-wrapper .icon-particles.always-active span:nth-child(4) { right: -10px; top: 50%; }

.coaching-hero-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xl);
}

.coaching-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 480px;
    margin: 0 auto var(--space-xl);
    text-align: left;
}

.coaching-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.coaching-feature-item svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--accent-green);
    margin-top: 2px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    padding: 3px;
    filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.3));
}

.coaching-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.coaching-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.coaching-cta-btn svg {
    width: 20px;
    height: 20px;
}

.coaching-cta-btn.small {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

/* Coaching Transform Pill (Desktop) */
.coaching-transform-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.c-pill-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.c-pill-dot--red {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.c-pill-dot--blue {
    background: var(--accent-green);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.4);
}

.c-pill-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.c-pill-highlight {
    color: var(--accent-green);
    font-weight: 600;
}

/* Coaching Pricing Row (Desktop) */
.coaching-pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    margin-bottom: 0.5rem;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.coaching-price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.7);
}

.coaching-price-now {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

.coaching-price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.coaching-save-pill {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Coaching Scarcity */
.coaching-scarcity {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Coaching Dual Buttons (Desktop) */
.coaching-dual-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.coaching-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.coaching-details-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.coaching-details-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   BOOKS SHOWCASE (Desktop Homepage)
   ======================================== */

.books-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.books-showcase-img {
    border-radius: 20px;
    overflow: hidden;
}

.books-showcase-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.books-coupon-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.books-coupon-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.books-coupon-code {
    font-family: var(--font-mono, monospace);
    font-size: 1.15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.28) 0%, rgba(34, 211, 238, 0.14) 100%);
    border: 1px solid rgba(52, 211, 153, 0.55);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    box-shadow:
        0 18px 60px rgba(16, 185, 129, 0.24),
        0 0 0 4px rgba(52, 211, 153, 0.12);
}

.books-showcase-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: var(--space-xl);
}

.books-showcase .books-thought-highlight {
    margin-top: calc(var(--space-xl) * -0.45);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    border-radius: 16px;
}

.books-showcase .books-thought-highlight p {
    font-size: 0.96rem;
}

.books-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.books-showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.books-showcase-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .books-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-lg);
    }

    .books-coupon-row {
        justify-content: center;
    }

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

/* ========================================
   REVIEWS GRID (Homepage)
   ======================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(52, 211, 153, 0.35);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-lg);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(52, 211, 153, 0.08);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(52, 211, 153, 0.2);
    border-left-color: rgba(52, 211, 153, 0.6);
    transform: translateY(-3px);
}

.review-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.review-author {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: var(--space-sm);
}

.review-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
}

.review-text em {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

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

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .coaching-hero-inner {
        padding: var(--space-xl) var(--space-lg);
    }

    .coaching-hero-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   KISOKOS CTA REVIEWS (Page 8 & Completion)
   ======================================== */

.kisokos-reviews {
    margin-top: 2rem;
    text-align: left;
}

.kisokos-reviews-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

.kisokos-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.kisokos-review-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}

.kisokos-review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
}

.kisokos-review-author {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.kisokos-review-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

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

/* Completion overlay mini reviews */
.completion-reviews {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.completion-review-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--primary-700, #334155);
    padding: 0.5rem 0.75rem;
    background: var(--primary-50, #f8fafc);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-100, #e2e8f0);
}

.completion-review-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.completion-review-author {
    font-weight: 600;
    color: var(--primary-900, #0f172a);
    white-space: nowrap;
}

.completion-review-text {
    color: var(--primary-600, #475569);
    font-style: italic;
}

/* ========================================
   CALENDLY BADGE WIDGET OVERRIDES
   ======================================== */

/* Ensure the Calendly badge sits above other content but below modals */
.calendly-badge-widget {
    z-index: 900 !important;
}

.calendly-badge-widget .calendly-badge-content {
    border-radius: var(--radius-full) !important;
    font-family: var(--font-primary) !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
}

/* ========================================
   MOBILE HOMEPAGE — TRANSFORMATION HERO
   ======================================== */

.m-transform {
    text-align: center;
    padding-bottom: var(--space-xl);
}

.m-transform-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
}

.m-transform-title em {
    font-style: normal;
    color: rgba(239, 68, 68, 0.85);
}

.m-transform-sub {
    margin-top: var(--space-md);
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

/* Journey A → B Visual */
.m-journey {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.m-journey-card {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    text-align: left;
}

.m-journey-before {
    background: linear-gradient(160deg, rgba(239, 68, 68, 0.12) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(245, 158, 11, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-left: 3px solid rgba(239, 68, 68, 0.5);
}

.m-journey-after {
    background: linear-gradient(160deg, rgba(96, 165, 250, 0.14) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(52, 211, 153, 0.08) 100%);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-left: 3px solid rgba(96, 165, 250, 0.6);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12);
}

.m-journey-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.m-journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.m-dot-red {
    background: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.m-dot-blue {
    background: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
    animation: dot-glow 2s ease-in-out infinite;
}

@keyframes dot-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(96, 165, 250, 0.5); }
    50% { box-shadow: 0 0 16px rgba(96, 165, 250, 0.8); }
}

.m-journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-journey-list li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    position: relative;
}

.m-journey-before .m-journey-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(239, 68, 68, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
}

.m-journey-after .m-journey-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(96, 165, 250, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Bridge Connector */
.m-journey-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
    position: relative;
    z-index: 1;
}

.m-journey-line {
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.3), rgba(96, 165, 250, 0.6));
}

.m-journey-arrow-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.9), rgba(37, 99, 235, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 20px rgba(96, 165, 250, 0.4),
        0 0 60px rgba(96, 165, 250, 0.15);
    animation: arrow-pulse 2.5s ease-in-out infinite;
}

.m-journey-arrow-node svg {
    width: 18px;
    height: 18px;
    color: white;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.4), 0 0 60px rgba(96, 165, 250, 0.15);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(96, 165, 250, 0.6), 0 0 80px rgba(96, 165, 250, 0.25);
    }
}

.m-transform-punch {
    margin-top: var(--space-xl);
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.m-transform-punch strong {
    color: white;
    display: block;
    font-size: 1.15rem;
    margin-top: 4px;
}

/* ========================================
   MOBILE HOMEPAGE — TESTIMONIALS CAROUSEL
   ======================================== */

.m-reviews {
    padding: var(--space-lg) 0 var(--space-xl);
}

.m-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    text-align: center;
    width: 100%;
}

.m-reviews-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.m-reviews-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.m-review-slide {
    min-width: 100%;
    padding: var(--space-lg) var(--space-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    text-align: center;
}

.m-review-stars {
    font-size: 1.1rem;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.m-review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.m-review-author {
    display: block;
    margin-top: var(--space-md);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.m-reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.m-reviews-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.m-reviews-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.12);
}

.m-reviews-btn svg {
    width: 16px;
    height: 16px;
}

.m-reviews-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.m-reviews-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-400);
}

/* ========================================
   MOBILE HOMEPAGE — COACHING CTA
   ======================================== */

.m-coaching-cta {
    padding: var(--space-md) 0 var(--space-xl);
}

.m-coaching-cta-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(96, 165, 250, 0.14) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(37, 99, 235, 0.10) 100%);
    border: 1px solid rgba(96, 165, 250, 0.25);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    text-align: center;
    overflow: hidden;
}

.m-coaching-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.7;
}

.m-cta-scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: var(--space-md);
}

.m-cta-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: var(--space-sm);
}

.m-cta-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.m-cta-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
}

.m-cta-price-old {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.m-cta-price-new {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    color: white;
}

.m-cta-price-unit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.m-cta-timer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.m-cta-timer-row .widget-timer {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fbbf24;
}

.m-cta-book-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border: 1px solid rgba(147, 197, 253, 0.55);
    color: white;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    letter-spacing: -0.01em;
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.26),
        0 0 0 4px rgba(96, 165, 250, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: mobile-cta-pulse 2.6s ease-in-out infinite;
}

.m-cta-book-btn:active {
    transform: scale(0.98);
}

.m-cta-details-link {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.m-cta-details-link:hover {
    color: var(--primary-400);
}

/* ========================================
   MOBILE HOMEPAGE — NEWSLETTER SECTION
   ======================================== */

.m-newsletter-section {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.m-newsletter-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: var(--space-sm);
}

/* Books Widget Full Width */
.mobile-widgets-books {
    padding-bottom: var(--space-lg);
}

.widget-books-full {
    display: block;
    min-height: 180px;
}

.books-widget-embed {
    width: 100%;
    margin: var(--space-xl) 0;
}

.books-widget-embed--tight {
    margin: var(--space-lg) 0;
}

.books-widget-title {
    margin: 0 0 var(--space-md);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(1.25rem, 2.8vw, 1.7rem);
    color: white;
    text-align: center;
}

.books-widget-embed .mobile-widget {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   COACHING PAGE — FULL FUNNEL STYLES
   ======================================== */

/* Hero */
.c-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    text-align: center;
}

.c-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.c-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
    margin-top: var(--space-lg);
}

.c-hero-title em {
    font-style: normal;
    color: rgba(239, 68, 68, 0.85);
}

.c-hero-sub {
    margin-top: var(--space-lg);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.c-hero-punch {
    margin-top: var(--space-lg);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid rgba(96, 165, 250, 0.4);
    text-align: left;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(96, 165, 250, 0.06);
}

.c-hero-punch strong {
    color: white;
}

.c-hero-cta {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* Shared CTA Button */
.c-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border: 1px solid rgba(147, 197, 253, 0.55);
    color: white;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.01em;
    box-shadow:
        0 14px 40px rgba(37, 99, 235, 0.26),
        0 0 0 4px rgba(96, 165, 250, 0.12);
    transition: transform 0.2s, box-shadow 0.3s;
}

.c-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 50px rgba(37, 99, 235, 0.35),
        0 0 0 4px rgba(96, 165, 250, 0.18);
}

.c-btn-primary:active {
    transform: scale(0.98);
}

.c-btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.c-scarcity-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    opacity: 0.9;
}

/* Shared Section Styles */
.c-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Problem Section */
.c-problem {
    padding: var(--space-3xl) var(--space-lg);
}

.c-problem-inner {
    max-width: 640px;
    margin: 0 auto;
}

.c-problem-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.c-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-md);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.c-problem-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.c-problem-conclusion {
    margin-top: var(--space-2xl);
    text-align: center;
}

.c-problem-conclusion p:first-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-sm);
}

.c-problem-bold {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

/* Transformation Section */
.c-transformation {
    padding: var(--space-3xl) var(--space-lg);
}

.c-transform-inner {
    max-width: 700px;
    margin: 0 auto;
}

.c-transform-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-transform-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.c-transform-a {
    background: linear-gradient(160deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-left: 3px solid rgba(239, 68, 68, 0.5);
}

.c-transform-b {
    background: linear-gradient(160deg, rgba(96, 165, 250, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-left: 3px solid rgba(96, 165, 250, 0.6);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.1);
}

.c-transform-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.c-transform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.c-dot-red {
    background: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.c-dot-blue {
    background: rgba(96, 165, 250, 0.9);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
    animation: dot-glow 2s ease-in-out infinite;
}

.c-transform-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c-transform-card ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 22px;
    position: relative;
}

.c-transform-a ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(239, 68, 68, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
}

.c-transform-b ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(96, 165, 250, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Transform Arrow */
.c-transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
}

.c-transform-arrow-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.3), rgba(96, 165, 250, 0.6));
}

.c-transform-arrow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.9), rgba(37, 99, 235, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.4);
    animation: arrow-pulse 2.5s ease-in-out infinite;
}

.c-transform-arrow-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.c-transform-identity {
    margin-top: var(--space-2xl);
    text-align: center;
}

.c-transform-identity p:first-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.c-transform-bold {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

/* About Levi Section */
.c-about {
    padding: var(--space-3xl) var(--space-lg);
}

.c-about-inner {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.c-about-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 2px solid rgba(96, 165, 250, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.c-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.c-about-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.c-about-content .c-section-title {
    text-align: left;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: var(--space-lg);
}

.c-about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.c-about-stat {
    display: flex;
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    border-radius: 16px;
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.c-about-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1.1;
}

.c-about-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.c-about-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.c-about-highlight {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-top: var(--space-sm);
}

@media (max-width: 640px) {
    .c-about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .c-about-photo {
        width: 180px;
        margin: 0 auto;
    }

    .c-about-content .c-section-title {
        text-align: center;
    }

    .c-about-stats {
        justify-content: center;
    }
}

/* Benefits Section */
.c-benefits {
    padding: var(--space-3xl) var(--space-lg);
}

.c-benefits-inner {
    max-width: 640px;
    margin: 0 auto;
}

.c-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.c-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: var(--space-md) var(--space-lg);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(96, 165, 250, 0.12);
    transition: border-color 0.3s, background 0.3s;
}

.c-benefit-item:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.06);
}

.c-benefit-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary-400);
}

.c-benefit-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.c-benefits-note {
    margin-top: var(--space-2xl);
    text-align: center;
}

.c-benefits-note p:first-child {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.c-benefits-bold {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

/* Audience Section */
.c-audience {
    padding: var(--space-3xl) var(--space-lg);
}

.c-audience-inner {
    max-width: 900px;
    margin: 0 auto;
}

.c-audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .c-audience-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

.c-audience-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.c-audience-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
}

.c-audience-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(37, 99, 235, 0.3));
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-400);
    margin-bottom: var(--space-md);
}

.c-audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.c-audience-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.c-audience-result {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-400);
}

/* Reviews Section (coaching page) */
.c-reviews {
    padding: var(--space-3xl) var(--space-lg);
}

.c-reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Urgency Section */
.c-urgency {
    padding: var(--space-3xl) var(--space-lg);
}

.c-urgency-inner {
    max-width: 640px;
    margin: 0 auto;
}

.c-urgency-card {
    padding: var(--space-2xl) var(--space-xl);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(245, 158, 11, 0.08) 0%, rgba(96, 165, 250, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.c-urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
}

.c-urgency-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
}

.c-urgency-punch {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.c-urgency-cost {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xl);
}

.c-urgency-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.c-urgency-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
}

.c-urgency-badge--price {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.25);
    color: var(--primary-300);
}

/* Urgency — Pricing highlight */
.c-urgency-pricing {
    text-align: center;
    margin: var(--space-xl) 0 var(--space-lg);
    padding: var(--space-lg);
    border-radius: 20px;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.c-urgency-price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.5);
    text-decoration-thickness: 2px;
    margin-bottom: var(--space-sm);
}

.c-urgency-price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.c-urgency-price-amount {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: white;
    padding: 4px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.2) 0%, rgba(37, 99, 235, 0.15) 100%);
    border: 1px solid rgba(147, 197, 253, 0.3);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.18);
}

.c-urgency-price-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.c-urgency-save {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: 0.88rem;
    font-weight: 800;
    color: #34d399;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Urgency — Countdown timer */
.c-urgency-timer-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.c-urgency-timer-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
}

.c-urgency-timer-wrap .widget-timer {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fbbf24;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    letter-spacing: 0.02em;
}

/* Positioning Section */
.c-positioning {
    padding: var(--space-3xl) var(--space-lg);
}

.c-positioning-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.c-positioning-nots {
    margin-bottom: var(--space-2xl);
}

.c-positioning-nots p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-sm);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.85);
    text-decoration-thickness: 2.5px;
}

.c-positioning-yes {
    margin-bottom: var(--space-2xl);
}

.c-positioning-bold {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
}

.c-positioning-yes p:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.c-positioning-thought {
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.06));
    border: 1px solid rgba(96, 165, 250, 0.28);
    box-shadow: 0 12px 34px rgba(2, 6, 23, 0.34);
}

.c-positioning-thought-main {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.45;
    color: #dbeafe;
    margin-bottom: var(--space-sm);
}

.c-positioning-thought p:last-child {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.c-positioning-thought strong {
    color: #93c5fd;
}

.c-positioning-closing {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    border-radius: 20px;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.c-positioning-closing p:first-child {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.c-positioning-last {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.c-final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}
