/* ═══════════════════════════════════════════════════════════════════════════
   BUYTOKFOLLOWERS - ULTIMATE DESIGN SYSTEM v2.0
   Premium TikTok Growth Service - Complete CSS Framework
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FONTS - Premium Typography (Satoshi + Plus Jakarta Sans)
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES - Complete Design Token System
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* ══ Brand Colors ══ */
    --brand-cyan: #00f2ea;
    --brand-pink: #ff0050;
    --brand-cyan-dark: #00c9c2;
    --brand-pink-dark: #e6004a;
    
    /* ══ Gradients ══ */
    --grad-brand: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    --grad-brand-reverse: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    --grad-brand-vertical: linear-gradient(180deg, #00f2ea 0%, #ff0050 100%);
    --grad-pink: linear-gradient(135deg, #ff0050 0%, #ff6b35 100%);
    --grad-cyan: linear-gradient(135deg, #00f2ea 0%, #0ea5e9 100%);
    --grad-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-dark-vertical: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --grad-glow-cyan: radial-gradient(ellipse at center, rgba(0,242,234,0.15) 0%, transparent 70%);
    --grad-glow-pink: radial-gradient(ellipse at center, rgba(255,0,80,0.15) 0%, transparent 70%);
    
    /* ══ Light Mode Colors ══ */
    --bg-body: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --bg-input: #f1f5f9;
    --bg-hover: #f8fafc;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    --text-inverse: #ffffff;
    
    --border-default: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.04);
    --border-focus: var(--brand-cyan);
    
    /* ══ Semantic Colors ══ */
    --success: #10b981;
    --success-bg: #ecfdf5;
    --success-border: #a7f3d0;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --warning-border: #fcd34d;
    --error: #ef4444;
    --error-bg: #fef2f2;
    --error-border: #fecaca;
    --info: #3b82f6;
    --info-bg: #eff6ff;
    --info-border: #bfdbfe;
    
    /* ══ Shadows ══ */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow-cyan: 0 0 40px rgba(0, 242, 234, 0.2);
    --shadow-glow-pink: 0 0 40px rgba(255, 0, 80, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-button: 0 4px 14px rgba(0, 0, 0, 0.1);
    --shadow-button-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    /* ══ Border Radius ══ */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;
    
    /* ══ Typography ══ */
    --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    
    /* ══ Font Sizes ══ */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* ══ Spacing ══ */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* ══ Transitions ══ */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
    
    /* ══ Z-Index Scale ══ */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 500;
    --z-modal-backdrop: 900;
    --z-modal: 1000;
    --z-toast: 1100;
    --z-tooltip: 1200;
    
    /* ══ Container ══ */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DARK MODE
   ───────────────────────────────────────────────────────────────────────────── */
[data-theme="dark"] {
    --bg-body: #0a0f1a;
    --bg-alt: #111827;
    --bg-card: #1a1f2e;
    --bg-elevated: #1e2433;
    --bg-input: #1e2433;
    --bg-hover: #252b3b;
    
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    --border-default: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
    
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error-bg: rgba(239, 68, 68, 0.1);
    --info-bg: rgba(59, 130, 246, 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--text-subtle) transparent;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--text-subtle);
    border-radius: var(--radius-full);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background var(--duration-normal) var(--ease-out),
                color var(--duration-normal) var(--ease-out);
}

::selection {
    background: var(--brand-cyan);
    color: var(--bg-body);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: var(--text-xl); font-weight: 700; }
h5 { font-size: var(--text-lg); font-weight: 600; }
h6 { font-size: var(--text-base); font-weight: 600; }

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }
.container-2xl { max-width: var(--container-2xl); }

.section {
    padding: var(--space-24) 0;
}

.section-sm { padding: var(--space-16) 0; }
.section-lg { padding: calc(var(--space-24) * 1.5) 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATED BACKGROUND
   ───────────────────────────────────────────────────────────────────────────── */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-mesh::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 242, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(255, 0, 80, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 80%, rgba(0, 242, 234, 0.04) 0%, transparent 40%);
    animation: meshFloat 30s ease-in-out infinite;
}

[data-theme="dark"] .bg-mesh::before {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 242, 234, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(255, 0, 80, 0.04) 0%, transparent 50%);
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, -1%) rotate(-1deg); }
}

/* Noise texture overlay */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.015;
    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");
}

[data-theme="dark"] .bg-noise {
    opacity: 0.03;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

[data-theme="dark"] .header {
    background: rgba(10, 15, 26, 0.85);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 15, 26, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-8);
}

.header.scrolled .header-inner {
    height: 68px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height var(--duration-normal) var(--ease-out);
}

.header.scrolled .logo img {
    height: 50px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    position: relative;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.nav-link.active {
    color: var(--brand-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--duration-fast) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-alt);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
}

.header-rating .stars {
    color: #fbbf24;
    letter-spacing: -2px;
}

.header-rating .count {
    color: var(--text-muted);
    font-weight: 500;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-alt);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    transition: all var(--duration-fast) var(--ease-out);
}

.theme-toggle:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    transform: rotate(15deg);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    gap: 5px;
    background: var(--bg-alt);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: calc(var(--z-header) - 1);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg {
    transform: translateX(3px);
}

/* Primary Button */
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-body);
    box-shadow: var(--shadow-button);
}

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

[data-theme="dark"] .btn-primary {
    background: var(--bg-body);
    color: var(--text-primary);
}

/* Gradient Button */
.btn-gradient {
    background: var(--grad-brand);
    color: white;
    box-shadow: var(--shadow-button), var(--shadow-glow-cyan);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-pink);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-default);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--bg-hover);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .card-glass {
    background: rgba(26, 31, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: var(--space-8);
}

.card-sm .card-body { padding: var(--space-6); }
.card-lg .card-body { padding: var(--space-10); }

/* ─────────────────────────────────────────────────────────────────────────────
   FORM ELEMENTS
   ───────────────────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: var(--bg-input);
    border: 2px solid var(--border-default);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input::placeholder {
    color: var(--text-subtle);
}

.form-input:focus {
    outline: none;
    background: var(--bg-card);
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(0, 242, 234, 0.1);
}

.form-input.error {
    border-color: var(--error);
    background: var(--error-bg);
}

.form-input.success {
    border-color: var(--success);
    background: var(--success-bg);
}

.form-hint {
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-subtle);
}

.form-error {
    margin-top: var(--space-2);
    font-size: var(--text-sm);
    color: var(--error);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BADGES
   ───────────────────────────────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(0, 242, 234, 0.1);
    color: var(--brand-cyan-dark);
    border: 1px solid rgba(0, 242, 234, 0.2);
}

.badge-secondary {
    background: rgba(255, 0, 80, 0.1);
    color: var(--brand-pink);
    border: 1px solid rgba(255, 0, 80, 0.2);
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid var(--warning-border);
}

.badge-dark {
    background: var(--text-primary);
    color: var(--bg-body);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    margin-bottom: var(--space-8);
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(255, 0, 80, 0.1) 100%);
    border: 1px solid rgba(0, 242, 234, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 242, 234, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(0, 242, 234, 0); }
}

.hero h1 {
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    max-width: 640px;
    margin: 0 auto var(--space-10);
    font-size: var(--text-xl);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRICING SLIDER
   ───────────────────────────────────────────────────────────────────────────── */
.pricing-card {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-12);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow-cyan);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.pricing-label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-10);
}

/* Custom Range Slider */
.range-slider {
    position: relative;
    margin: var(--space-8) 0;
    padding: var(--space-2) 0;
}

.range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 14px;
    background: var(--bg-input);
    border-radius: var(--radius-full);
    cursor: pointer;
    background-image: var(--grad-brand);
    background-size: 30% 100%;
    background-repeat: no-repeat;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 4px solid var(--brand-pink);
    border-radius: var(--radius-full);
    cursor: grab;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
    transition: transform var(--duration-fast) var(--ease-spring);
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-slider input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 4px solid var(--brand-pink);
    border-radius: var(--radius-full);
    cursor: grab;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
}

.pricing-display {
    text-align: center;
    margin: var(--space-8) 0;
}

.price-tag {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 900;
    background: var(--grad-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-per {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-default);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-feature svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS / TRUST INDICATORS
   ───────────────────────────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin: var(--space-12) 0;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-value .gradient {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border-default);
    border-bottom: 1px solid var(--border-default);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    position: relative;
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(0, 242, 234, 0.05) 100%);
    border-radius: var(--radius-lg);
    font-size: var(--text-3xl);
}

.feature-card h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
    background: var(--grad-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 242, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 0, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: var(--text-lg);
    letter-spacing: 2px;
    margin-bottom: var(--space-5);
}

.testimonial-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
}

.testimonial-info h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: var(--space-3);
    padding: 2px var(--space-2);
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #34d399;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-default);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-6) 0;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

.faq-header:hover {
    color: var(--brand-pink);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    font-weight: 400;
    transition: all var(--duration-fast) var(--ease-out);
}

.faq-item.active .faq-icon {
    background: var(--grad-brand);
    color: white;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-content {
    padding-bottom: var(--space-6);
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--grad-dark-vertical);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-50%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-12);
    padding: var(--space-16) 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin: var(--space-5) 0;
    max-width: 280px;
}

.footer-logo {
    height: 50px;
    /* For dark bg, we need light version or filter */
    filter: brightness(1.2);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
    background: var(--grad-brand);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

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

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-5);
}

.footer-column ul li {
    margin-bottom: var(--space-3);
}

.footer-column a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-column a:hover {
    color: var(--brand-cyan);
}

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

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer-payments span {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: var(--space-2);
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xs);
    font-size: var(--text-xs);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIVE TICKER BAR
   ───────────────────────────────────────────────────────────────────────────── */
.ticker-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-default);
    padding: var(--space-2) 0;
}

.ticker-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    font-size: var(--text-xs);
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: tickerPulse 2s ease-in-out infinite;
}

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

.ticker-value {
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-label {
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TOAST NOTIFICATION
   ───────────────────────────────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    max-width: 340px;
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-toast);
    transform: translateX(calc(-100% - var(--space-6)));
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-inner {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.toast-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.toast-content h5 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-content p {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.toast-close {
    position: absolute;
    top: var(--space-2);
    right: var(--space-3);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: color var(--duration-fast);
}

.toast-close:hover {
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL TO TOP
   ───────────────────────────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: var(--bg-body);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .scroll-top {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COOKIE BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-5) var(--space-6);
    background: var(--bg-card);
    border-top: 1px solid var(--border-default);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out);
}

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

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
    max-width: var(--container-xl);
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--brand-pink);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

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

.float {
    animation: float 4s ease-in-out infinite;
}

/* Pulse */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.shimmer {
    background: linear-gradient(90deg, var(--bg-alt) 0%, var(--bg-card) 50%, var(--bg-alt) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION HEADERS
   ───────────────────────────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-5);
    background: rgba(255, 0, 80, 0.08);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--brand-pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────────────────────────────────────── */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-column {
    padding: var(--space-10);
}

.comparison-them {
    background: var(--bg-alt);
    border-right: 1px solid var(--border-default);
}

.comparison-us {
    background: var(--bg-card);
    position: relative;
}

.comparison-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
}

.comparison-column h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
}

.comparison-them h3 {
    color: var(--text-muted);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.comparison-them .comparison-item {
    color: var(--text-muted);
}

.comparison-us .comparison-item {
    color: var(--text-primary);
    font-weight: 600;
}

.icon-x {
    color: var(--error);
    font-size: var(--text-lg);
    font-weight: 700;
    flex-shrink: 0;
}

.icon-check {
    color: var(--success);
    font-size: var(--text-lg);
    font-weight: 700;
    flex-shrink: 0;
}

.best-badge {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    padding: var(--space-1) var(--space-3);
    background: var(--grad-pink);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOW IT WORKS / STEPS
   ───────────────────────────────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.step-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
    background: var(--grad-brand);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 242, 234, 0.3);
}

.step-card h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.step-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    background: var(--grad-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-card-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.blog-card-tag {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.blog-card-body {
    padding: var(--space-6);
}

.blog-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--brand-pink);
}

.blog-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-xs);
    color: var(--text-subtle);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section {
    text-align: center;
    padding: var(--space-16);
    background: var(--text-primary);
    border-radius: var(--radius-2xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 242, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 0, 80, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-6: 1.25rem;
        --space-8: 1.5rem;
        --space-12: 2.5rem;
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 100px var(--space-6) var(--space-6);
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: left var(--duration-normal) var(--ease-out);
        z-index: calc(var(--z-header) + 1);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--space-4) var(--space-4);
        font-size: var(--text-base);
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .header-rating {
        display: none;
    }
    
    .hero {
        padding: var(--space-12) 0;
    }
    
    .pricing-card {
        padding: var(--space-8);
    }
    
    .pricing-amount {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .stat-value {
        font-size: var(--text-3xl);
    }
    
    .features-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-wrapper {
        grid-template-columns: 1fr;
    }
    
    .comparison-them {
        border-right: none;
        border-bottom: 1px solid var(--border-default);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .toast {
        left: var(--space-4);
        right: var(--space-4);
        max-width: none;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .trust-bar {
        gap: var(--space-4);
    }
    
    .trust-item {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .pricing-card {
        padding: var(--space-6);
    }
    
    .btn-xl {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
    
    .range-slider input[type="range"]::-webkit-slider-thumb {
        width: 40px;
        height: 40px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   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;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--brand-cyan);
    outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
    .header,
    .footer,
    .toast,
    .scroll-top,
    .cookie-banner,
    .bg-mesh,
    .bg-noise {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
