/* ===================================
   WEALTH FREQUENCY — Premium Redesign
   Dark Luxury · Glass · Gold
   =================================== */

/* CSS Variables */
:root {
    /* Core Palette */
    --gold: #C9A84C;
    --gold-deep: #9A7B2E;
    --gold-light: #E0C96B;
    --gold-glow: rgba(201, 168, 76, 0.35);
    --cream: #FAF6EF;
    --cream-dark: #F0E8D8;
    --black: #0A0A0A;
    --black-soft: #141414;
    --black-card: #1A1A1A;
    --gray-900: #1F1F1F;
    --gray-700: #3A3A3A;
    --gray: #7A7A7A;
    --gray-light: #A0A0A0;
    --gray-lighter: #C8C8C8;
    --emerald: #34D399;
    --purple: #A78BFA;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #9A7B2E 0%, #C9A84C 40%, #E0C96B 70%, #C9A84C 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.03) 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
    --gradient-cream: linear-gradient(180deg, #FAF6EF 0%, #F0E8D8 100%);

    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Sizing */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-2xl: 40px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.5s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   GRAIN OVERLAY — Texture depth
   =================================== */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: multiply;
}

/* ===================================
   CURSOR GLOW
   =================================== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===================================
   GLASS MORPHISM
   =================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION — Floating Glass
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-normal);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
    transition: color var(--transition-normal);
}

.nav.scrolled .nav-logo {
    color: var(--white);
}

.nav-logo .logo-icon,
.nav-logo img.logo-icon {
    width: 36px;
    height: 36px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    padding: 0.55rem 1.3rem !important;
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all var(--transition-fast) !important;
    letter-spacing: 0 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

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

.mobile-menu-content a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.mobile-menu-content a:hover {
    opacity: 1;
}

.mobile-cta {
    margin-top: var(--space-md);
    padding: 1rem 2.5rem;
    background: var(--gradient-gold) !important;
    color: var(--black) !important;
    border-radius: 100px;
    font-weight: 600;
    opacity: 1 !important;
}

/* ===================================
   HERO SECTION — Dark & Immersive
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0 5rem;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

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

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.45rem 1rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.03em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

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

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.9rem 1.6rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-icon-right {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.06);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

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

/* ===================================
   PHONE MOCKUP — with reflection
   =================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.6),
        0 30px 60px -30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-shine {
    position: absolute;
    top: 0;
    left: 20%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    border-radius: 44px;
    pointer-events: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: var(--black);
}

.phone-screen .screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Phone Reflection */
.phone-reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: scaleY(-0.3) translateY(-40px);
    opacity: 0.12;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
    filter: blur(2px);
}

.reflection-frame {
    box-shadow: none !important;
    transform: none !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   MARQUEE — Infinite seamless ticker
   =================================== */
.marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm) 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
    display: flex;
    z-index: 5;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    flex-shrink: 0;
    padding-right: var(--space-xl);
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    flex-shrink: 0;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===================================
   PROBLEM / SOLUTION — Cinematic Split
   =================================== */
.problem-solution {
    position: relative;
}

.ps-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ps-side {
    padding: var(--space-3xl) var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-side-content {
    max-width: 480px;
}

/* Dark Side — Problem */
.ps-dark {
    background: var(--black);
    color: var(--white);
}

.ps-dark .ps-title {
    color: var(--white);
}

.ps-dark .ps-text {
    color: rgba(255, 255, 255, 0.5);
}

/* Light Side — Solution */
.ps-light {
    background: var(--cream);
    position: relative;
}

.ps-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ps-light .ps-side-content {
    position: relative;
    z-index: 1;
}

/* Labels */
.ps-label {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.ps-dark .ps-label {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-label-gold {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-deep);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* Titles */
.ps-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.ps-text {
    color: var(--gray);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Problem — Icon Grid */
.ps-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: var(--space-xl);
}

.ps-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--space-md) var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    text-align: center;
}

.ps-icon-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.ps-icon-card svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.35);
}

.ps-icon-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Solution — Feature List */
.ps-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--space-xl);
}

.ps-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ps-feature-item:last-child {
    border-bottom: none;
}

.ps-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: var(--gold-deep);
    transition: all var(--transition-fast);
}

.ps-feature-item:hover .ps-feature-icon {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.05);
}

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

.ps-feature-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.ps-feature-item span {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

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

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   FEATURES — Bento Grid
   =================================== */
.features {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

/* ===================================
   FEATURES — Premium Dark Cards
   =================================== */

/* Hero Feature — Full width showcase */
.f-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--black);
    border-radius: 28px;
    padding: var(--space-2xl) var(--space-xl);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.f-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.f-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-sm);
}

.f-title-lg {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.f-desc {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 440px;
}

.f-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-lg);
}

.f-tag {
    padding: 6px 16px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.f-hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.f-hero-screen {
    width: 260px;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.5s var(--ease-out);
}

.f-hero:hover .f-hero-screen {
    transform: scale(1.03) translateY(-6px);
}

/* 3-column & 2-column rows */
.f-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.f-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Individual feature card */
.f-card {
    background: var(--white);
    border-radius: 24px;
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.f-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), transparent 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.f-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
}

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

/* Gold accent card variant */
.f-card-gold {
    background: var(--black);
    border-color: rgba(201, 168, 76, 0.12);
}

.f-card-gold .f-number-sm {
    color: rgba(201, 168, 76, 0.15);
}

.f-card-gold .f-title {
    color: var(--white);
}

.f-card-gold .f-desc {
    color: rgba(255, 255, 255, 0.5);
}

.f-card-gold .f-card-icon {
    color: var(--gold);
}

/* Card icon */
.f-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.06);
    border-radius: 20px;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.f-card:hover .f-card-icon {
    transform: scale(1.08);
    background: rgba(201, 168, 76, 0.1);
}

.f-card-icon svg {
    width: 32px;
    height: 32px;
}

.f-icon-emerald {
    background: rgba(52, 211, 153, 0.06);
    color: var(--emerald);
}

.f-card:hover .f-icon-emerald {
    background: rgba(52, 211, 153, 0.1);
}

.f-icon-purple {
    background: rgba(167, 139, 250, 0.06);
    color: var(--purple);
}

.f-card:hover .f-icon-purple {
    background: rgba(167, 139, 250, 0.1);
}

.f-icon-gold {
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold);
}

.f-card:hover .f-icon-gold {
    background: rgba(201, 168, 76, 0.1);
}

/* Number label */
.f-number-sm {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

/* Card title & description */
.f-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xs);
    color: var(--black);
}

.f-card .f-desc {
    color: var(--gray);
    line-height: 1.65;
    font-size: 0.92rem;
    max-width: none;
}

/* Card stat (balance) */
.f-card-stat {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.04), rgba(52, 211, 153, 0.01));
    border-radius: 16px;
    border: 1px solid rgba(52, 211, 153, 0.08);
    text-align: center;
}

.f-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--black);
}

.f-stat-change {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--emerald);
    margin-top: 4px;
}

/* Card bars (analytics) */
.f-card-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-lg);
}

.f-bar {
    height: 8px;
    background: rgba(167, 139, 250, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.f-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), rgba(167, 139, 250, 0.5));
    border-radius: 100px;
    transition: width 1s var(--ease-out);
}

/* Card tags (income) */
.f-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--space-lg);
}

.f-card-tags span {
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s ease;
}

.f-card-tags span.accent {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-deep);
    border-color: rgba(201, 168, 76, 0.15);
}

.f-card-tags span:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 168, 76, 0.3);
}

/* Card currencies */
.f-card-currencies {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-lg);
}

.f-currency {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.f-currency:hover {
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--gold-deep);
}

.f-currency-more {
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-deep);
    letter-spacing: 0.02em;
}

/* Card win display */
.f-card-win {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(201, 168, 76, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.f-win-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--black);
    flex-shrink: 0;
}

.f-win-badge svg {
    width: 22px;
    height: 22px;
}

.f-win-count {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.f-win-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===================================
   QUOTE SECTION — Cinematic
   =================================== */
.quote-section {
    padding: var(--space-3xl) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

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

.quote-orb-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    top: -100px;
    left: 20%;
    filter: blur(60px);
    animation: orbFloat2 10s ease-in-out infinite;
}

.quote-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: 20%;
    filter: blur(60px);
    animation: orbFloat1 12s ease-in-out infinite;
}

.main-quote {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-accent);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.main-quote p {
    font-family: var(--font-accent);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: var(--space-lg);
}

.main-quote cite {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===================================
   HOW IT WORKS — Light / Cream
   =================================== */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hiw-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hiw-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hiw-orb-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    background: rgba(201, 168, 76, 0.06);
}

.hiw-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    right: -5%;
    background: rgba(167, 139, 250, 0.04);
}

.hiw-title {
    color: var(--black);
}

.hiw-subtitle {
    color: var(--gray);
}

/* Steps container */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    max-width: 960px;
    margin: 0 auto;
}

/* Individual step — alternating layout */
.hiw-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hiw-step-reverse {
    direction: rtl;
}

.hiw-step-reverse > * {
    direction: ltr;
}

/* Phone mockup */
.hiw-step-phone {
    display: flex;
    justify-content: center;
    position: relative;
}

.hiw-phone-frame {
    width: 220px;
    background: var(--black);
    border-radius: 32px;
    padding: 8px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.12),
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--ease-out);
}

.hiw-step:hover .hiw-phone-frame {
    transform: translateY(-8px);
}

.hiw-phone-screen {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* Colored glow behind phone */
.hiw-phone-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 0.4;
}

.hiw-step:hover .hiw-phone-glow {
    opacity: 0.65;
}

.hiw-glow-gold {
    background: rgba(201, 168, 76, 0.25);
}

.hiw-glow-emerald {
    background: rgba(52, 211, 153, 0.2);
}

.hiw-glow-purple {
    background: rgba(167, 139, 250, 0.2);
}

/* Step info */
.hiw-step-info {
    padding: var(--space-md) 0;
}

.hiw-step-num {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hiw-step-num span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-deep);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.hiw-num-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.35), transparent);
}

.hiw-step-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.hiw-step-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 380px;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.testimonial-card {
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card.featured {
    background: var(--black) !important;
    color: var(--white);
    border-color: rgba(201, 168, 76, 0.2) !important;
    backdrop-filter: none;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--gray);
}

.featured .author-title {
    color: rgba(255, 255, 255, 0.45);
}

/* ===================================
   APP GALLERY — Staggered Heights
   =================================== */
.app-gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery-scroll {
    overflow-x: auto;
    padding: var(--space-md) 0 var(--space-xl);
    margin: 0 calc(-1 * var(--space-md));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    min-width: max-content;
    align-items: flex-start;
}

.gallery-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transform: translateY(calc(var(--stagger) * 12px - 40px));
    transition: transform var(--transition-normal);
}

.gallery-phone:nth-child(even) {
    transform: translateY(calc(var(--stagger) * 12px));
}

.gallery-phone:hover {
    transform: translateY(calc(var(--stagger) * 12px - 56px));
}

.gallery-phone:nth-child(even):hover {
    transform: translateY(calc(var(--stagger) * 12px - 16px));
}

.phone-frame-mini {
    width: 180px;
    height: 380px;
    background: linear-gradient(145deg, #2a2a2a 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 8px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all var(--transition-normal);
}

.gallery-phone:hover .phone-frame-mini {
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.18),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame-mini .screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
}

.screen-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.02em;
}

/* ===================================
   FINAL CTA — Dark & Dramatic
   =================================== */
.final-cta {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

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

.cta-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    animation: orbFloat2 12s ease-in-out infinite;
}

.cta-orb-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    top: -100px;
    right: 20%;
    filter: blur(60px);
    animation: orbFloat1 14s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    opacity: 0.8;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.cta-buttons .btn {
    width: auto;
    max-width: 100%;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

.cta-feature svg {
    width: 18px;
    height: 18px;
}

/* CTA mobile */
@media (max-width: 768px) {
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ===================================
   PRIVACY & TRUST
   =================================== */
.trust-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.trust-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    background: rgba(52, 211, 153, 0.08);
    border-radius: 20px;
    color: #34D399;
    transition: all 0.4s var(--ease-out);
}

.trust-card:hover .trust-icon {
    transform: scale(1.08);
}

.trust-icon svg {
    width: 34px;
    height: 34px;
}

.trust-icon-red {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

.trust-icon-blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
}

.trust-icon-purple {
    background: rgba(167, 139, 250, 0.08);
    color: #A78BFA;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--black);
}

.trust-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Trust responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badges {
        gap: var(--space-sm);
    }

    .trust-badge {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-icon,
.footer-logo img.logo-icon {
    width: 32px;
    height: 32px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--space-md);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-developer {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease-out);
    will-change: opacity, transform;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
        transform: none;
    }

    .phone-frame:hover {
        transform: none;
    }

    .ps-split {
        grid-template-columns: 1fr;
    }

    .ps-side {
        padding: var(--space-2xl) var(--space-md);
    }

    .f-hero {
        grid-template-columns: 1fr 1fr;
    }

    .f-row {
        grid-template-columns: 1fr 1fr;
    }

    .f-row .f-card:last-child {
        grid-column: span 2;
    }

    .f-row-2 {
        grid-template-columns: 1fr 1fr;
    }

    .f-row-2 .f-card:last-child {
        grid-column: span 1;
    }

    .hiw-steps {
        gap: var(--space-2xl);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-xl);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .phone-reflection {
        display: none;
    }

    .f-hero {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
    }

    .f-title-lg {
        font-size: 1.8rem;
    }

    .f-number {
        font-size: 3.5rem;
    }

    .f-hero-screen {
        width: 220px;
    }

    .f-row,
    .f-row-2 {
        grid-template-columns: 1fr;
    }

    .f-row .f-card:last-child,
    .f-row-2 .f-card:last-child {
        grid-column: span 1;
    }

    .hiw-step {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hiw-step-reverse {
        direction: ltr;
    }

    .hiw-step-desc {
        max-width: none;
    }

    .hiw-step-num {
        justify-content: center;
    }

    .hiw-num-line {
        max-width: 80px;
    }

    .hiw-phone-frame {
        width: 180px;
    }

    .hiw-step-title {
        font-size: 1.5rem;
    }

    .phone-frame {
        width: 220px;
        height: 460px;
    }

    .gallery-phone {
        transform: translateY(0) !important;
    }

    .gallery-phone:hover {
        transform: translateY(-12px) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .marquee-item {
        font-size: 0.7rem;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@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;
    }

    .cursor-glow { display: none; }
    .grain-overlay { display: none; }
}

/* Skip Link — Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 10000;
    transition: top 0.2s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Ensure minimum tap target size */
.nav-links a,
.footer-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
}
.social-icons a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

/* ===================================
   LOGO — SVG Image
   =================================== */
.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.cta-logo-img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin: 0 auto var(--space-lg);
    display: block;
    /* box-shadow: 0 0 30px rgba(201, 168, 76, 0.3); */
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    flex-shrink: 0;
    display: block;
}

/* (legacy income/bento styles removed — replaced by f-card system) */

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--space-3xl) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Sale Banner */
.sale-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: 0.75rem var(--space-lg);
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    border-radius: 100px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    animation: salePulse 2s ease-in-out infinite;
}

@keyframes salePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.sale-badge {
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sale-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Pricing section header override for dark bg */
.pricing .section-tag {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.45);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    /* align-items: start; */
}

.pricing-card {
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    background: rgba(201, 168, 76, 0.06);
    border: 2px solid rgba(201, 168, 76, 0.25);
    padding-top: calc(var(--space-xl) + 8px);
}

.pricing-featured:hover {
    transform: translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1.2rem;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-amount {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 38, 38, 0.6);
    text-decoration-thickness: 2px;
    display: block;
    margin-bottom: 4px;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.pricing-featured .price-value {
    color: var(--gold-light);
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.price-breakdown {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--emerald);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-xl);
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
}

.pricing .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        gap: var(--space-md);
    }

    .pricing-featured {
        order: -1;
    }

    .pricing-featured:hover {
        transform: translateY(-6px);
    }

    .sale-banner {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        max-width: 100%;
    }

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

    .sale-banner {
        flex-direction: column;
        gap: 4px;
        padding: 0.6rem var(--space-md);
    }

    .sale-text {
        font-size: 0.85rem;
    }
}

/* ===================================
   UTILITY
   =================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   LOADING SHIMMER
   =================================== */
.loading-shimmer {
    width: 100%;
    height: 80px;
    background: linear-gradient(
        90deg,
        rgba(201, 168, 76, 0.08) 0%,
        rgba(201, 168, 76, 0.15) 50%,
        rgba(201, 168, 76, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-btn {
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--black);
}

.cookie-btn-accept:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

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