/* ============================================
   Identity Signal - Main Stylesheet
   Dark Theme, Modern Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a1a;
    --bg-secondary: #0d0d24;
    --bg-tertiary: #12122a;
    --bg-card: #151530;
    --bg-card-hover: #1a1a40;

    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;

    --accent-primary: #60A5FA;
    --accent-secondary: #3B82F6;
    --accent-gradient: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);

    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    --border-color: rgba(96, 165, 250, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(96, 165, 250, 0.4);
    --shadow-glow-sm: 0 0 30px rgba(96, 165, 250, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: rgba(96, 165, 250, 0.3);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(96, 165, 250, 0.1);
}

.btn-cta {
    background: var(--accent-gradient);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
    opacity: 0.8;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-spinner {
    animation: spin 1s linear infinite;
}

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

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

.btn:disabled:hover {
    transform: none !important;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.hidden {
    display: none !important;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo img {
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.85;
}

/* Text Logo */
.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-identity {
    color: #ffffff;
}

.logo-signal {
    color: #60A5FA;
}

.logo-text:hover .logo-identity {
    opacity: 0.85;
}

.logo-text:hover .logo-signal {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-login {
    color: var(--accent-primary) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section - Redesigned
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.75) 0%, rgba(10, 10, 26, 0.92) 100%);
}

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

/* Hero Slide Layout */
.hero-slide {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 24px;
}

/* Impact Title - Very Large, Condensed */
.hero-impact-title {
    font-family: 'Anton', 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(72px, 12vw, 140px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
    color: #D4D4D4;
    text-transform: uppercase;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

/* Thin Blue Divider */
.hero-thin-divider {
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
    margin: 0 auto 60px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Stats Block */
.hero-stats-block {
    margin: 64px auto;
    max-width: 900px;
    font-size: clamp(19px, 2.6vw, 26px);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.stats-line {
    color: rgba(255, 255, 255, 0.88);
    margin: 2px 0;
    font-weight: 400;
}

.stats-highlight {
    color: rgba(255, 255, 255, 0.95);
    margin: 2px 0;
    font-weight: 500;
}

.stats-number {
    color: #3B82F6;
    font-weight: 800;
    font-size: 1.25em;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Warning Line */
.hero-warning-line {
    font-size: clamp(24px, 3.2vw, 38px);
    color: #3B82F6;
    font-weight: 500;
    margin: 72px 0 80px;
    font-style: normal;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

/* CTA Box with Top Accent */
.hero-cta-box {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 60px 48px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 3px;
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
}

.cta-box-accent {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.cta-box-text {
    font-size: clamp(22px, 2.8vw, 30px);
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 28px 0;
    text-align: center;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-highlight {
    color: #3B82F6;
    font-weight: 600;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.hero-cta-btn:hover::before {
    opacity: 1;
}

.hero-cta-btn span {
    position: relative;
    z-index: 1;
}

.hero-login-text {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.hero-login-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hero-login-link:hover {
    color: #60A5FA;
    text-decoration: underline;
}

/* Brand Logo at Bottom */
.hero-brand {
    position: relative;
    margin-top: 90px;
}

.brand-logo {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 0.2em;
    margin: 0;
    color: #D4D4D4;
    text-transform: uppercase;
}

.brand-signal {
    color: #3B82F6;
}

.brand-glow {
    width: 350px;
    height: 3px;
    margin: 28px auto 0;
    background: linear-gradient(90deg, transparent 0%, #3B82F6 50%, transparent 100%);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.9);
}

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

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

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

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shield, .floating-lock, .floating-alert {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    animation: floatIcon 15s ease-in-out infinite;
}

.floating-shield svg, .floating-lock svg, .floating-alert svg {
    width: 100%;
    height: 100%;
    color: var(--accent-primary);
}

.floating-1 { top: 20%; left: 10%; animation-delay: 0s; }
.floating-2 { top: 60%; right: 15%; animation-delay: 5s; }
.floating-3 { bottom: 30%; left: 20%; animation-delay: 10s; }

@keyframes floatIcon {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(10deg); }
    66% { transform: translate(-10px, 10px) rotate(-5deg); }
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.hero-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 2px;
}

.price-note {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(21, 21, 48, 0.8) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-light);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
}

.mockup-dots span:first-child { background: #EF4444; opacity: 1; }
.mockup-dots span:nth-child(2) { background: #F59E0B; opacity: 1; }
.mockup-dots span:nth-child(3) { background: #10B981; opacity: 1; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 6px;
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-light);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    position: relative;
    transition: all var(--transition-fast);
}

.sidebar-item svg {
    width: 20px;
    height: 20px;
}

.sidebar-item.active {
    background: var(--accent-gradient);
    color: white;
}

.sidebar-item.alert .alert-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--danger);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.status-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--warning);
}

.status-email {
    font-size: 13px;
    color: var(--text-muted);
}

.status-action {
    padding: 8px 16px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.mockup-breaches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breach-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.breach-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.breach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.breach-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.breach-date {
    font-size: 12px;
    color: var(--text-muted);
}

.breach-type {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.mockup-emails {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
}

.emails-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.emails-count {
    background: var(--accent-gradient);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.email-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.email-item svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.email-item span:nth-child(2) {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
}

.email-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.email-status.safe {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.email-status.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 3s;
}

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

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 20px;
    height: 20px;
}

.floating-card-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.floating-card-icon.alert {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.fc-desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   Brands Section
   ============================================ */

.brands {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-scroll {
    position: relative;
    overflow: hidden;
}

.brands-scroll::before,
.brands-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
}

.brands-scroll::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.brands-scroll::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-secondary) 100%);
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

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

.brand-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    white-space: nowrap;
    transition: opacity var(--transition-fast);
}

.brand-logo:hover {
    opacity: 0.7;
}

/* ============================================
   Section Styles
   ============================================ */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ============================================
   Reality Check Section - Modern Timeline Design
   ============================================ */

.reality-check {
    position: relative;
    padding: 80px 0;
    background: #0a0a0a;
    overflow: hidden;
}

/* Background Pattern */
.reality-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.reality-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.reality-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.reality-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #EF4444 20%, #DC2626 50%, #EF4444 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.reality-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #EF4444 20%, #DC2626 50%, #EF4444 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

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

/* Header */
.reality-header {
    text-align: center;
    margin-bottom: 50px;
}

.reality-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1.5px solid rgba(239, 68, 68, 0.5);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #EF4444;
    margin-bottom: 28px;
    backdrop-filter: blur(10px) saturate(150%);
    box-shadow:
        0 4px 16px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.reality-badge:hover {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow:
        0 6px 24px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.reality-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
}

.title-highlight {
    color: #EF4444;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.reality-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Timeline */
.reality-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(239, 68, 68, 0.4) 15%,
        rgba(239, 68, 68, 0.7) 50%,
        rgba(239, 68, 68, 0.4) 85%,
        transparent 100%);
    box-shadow:
        0 0 20px rgba(239, 68, 68, 0.4),
        0 0 40px rgba(239, 68, 68, 0.2);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(239, 68, 68, 0.4),
            0 0 40px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow:
            0 0 30px rgba(239, 68, 68, 0.6),
            0 0 60px rgba(239, 68, 68, 0.3);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-right: auto;
    margin-left: calc(50% + 60px);
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-left: auto;
    margin-right: calc(50% + 60px);
}

.timeline-item::before {
    content: attr(data-time);
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    color: #EF4444;
    letter-spacing: 1px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd)::before {
    right: calc(50% + 80px);
}

.timeline-item:nth-child(even)::before {
    left: calc(50% + 80px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #EF4444;
    border: 4px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
    z-index: 2;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1);
    }
}

.timeline-card {
    position: relative;
    width: calc(50% - 80px);
    padding: 28px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 20, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    transition: all 0.4s ease;
    filter: blur(3px);
}

.timeline-card:hover::before {
    opacity: 0.18;
    transform: scale(1.1);
    filter: blur(2px);
}

.timeline-item:nth-child(1) .timeline-card::before {
    background-image: url('../images/card-bank.jpg');
}

.timeline-item:nth-child(2) .timeline-card::before {
    background-image: url('../images/card-credit.jpg');
}

.timeline-item:nth-child(3) .timeline-card::before {
    background-image: url('../images/card-score.jpg');
}

.timeline-item:nth-child(4) .timeline-card::before {
    background-image: url('../images/card-debt.jpg');
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(239, 68, 68, 0.6);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(20, 20, 20, 0.6) 100%);
    box-shadow:
        0 20px 60px rgba(239, 68, 68, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-icon-wrapper {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    color: #EF4444;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 4px 16px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover .card-icon {
    transform: scale(1.1) rotateZ(5deg);
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow:
        0 8px 24px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card-icon.red-glow {
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
    }
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    word-wrap: break-word;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.timeline-card:hover .card-content h3 {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.card-stat {
    font-size: 32px;
    font-weight: 800;
    color: #EF4444;
    margin-bottom: 6px;
    text-shadow:
        0 0 30px rgba(239, 68, 68, 0.6),
        0 0 60px rgba(239, 68, 68, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.timeline-card:hover .card-stat {
    text-shadow:
        0 0 40px rgba(239, 68, 68, 0.8),
        0 0 80px rgba(239, 68, 68, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

.card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Warning Box */
.reality-warning-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(150%);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow:
        0 8px 32px rgba(239, 68, 68, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    animation: warningBoxPulse 4s ease-in-out infinite;
}

@keyframes warningBoxPulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow:
            0 8px 32px rgba(239, 68, 68, 0.3),
            0 4px 16px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.7);
        box-shadow:
            0 12px 48px rgba(239, 68, 68, 0.4),
            0 6px 24px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

.reality-warning-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/warning-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    filter: blur(2px);
}

.warning-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 50%;
    color: #EF4444;
    animation: warningIconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 16px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes warningIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 16px rgba(239, 68, 68, 0.3),
            0 0 0 0 rgba(239, 68, 68, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.08);
        box-shadow:
            0 6px 24px rgba(239, 68, 68, 0.5),
            0 0 0 12px rgba(239, 68, 68, 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.reality-warning-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

.reality-warning-box strong {
    color: #EF4444;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .reality-check {
        padding: 70px 0;
    }

    .reality-header {
        margin-bottom: 40px;
    }

    .reality-timeline {
        margin-bottom: 35px;
    }

    .timeline-item:nth-child(even) .timeline-card,
    .timeline-item:nth-child(odd) .timeline-card {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 28px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .reality-check {
        padding: 50px 0;
    }

    .reality-bg-pattern {
        background-size: 30px 30px;
    }

    .reality-header {
        margin-bottom: 28px;
    }

    .reality-badge {
        font-size: 11px;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .reality-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 14px;
    }

    .reality-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }

    .reality-timeline {
        margin-bottom: 28px;
        padding: 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 24px;
        flex-direction: column;
        align-items: center;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-item:nth-child(even) .timeline-card,
    .timeline-item:nth-child(odd) .timeline-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card::before {
        opacity: 0.1;
        filter: blur(2px);
    }

    .card-icon-wrapper {
        margin-bottom: 12px;
    }

    .card-icon {
        width: 54px;
        height: 54px;
    }

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

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card-stat {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .card-desc {
        font-size: 13px;
        line-height: 1.4;
    }

    .reality-warning-box {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .reality-warning-box p {
        font-size: 16px;
    }

    .warning-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .reality-check {
        padding: 35px 0;
    }

    .reality-bg-pattern {
        background-size: 25px 25px;
        opacity: 0.2;
    }

    .reality-header {
        margin-bottom: 20px;
        padding: 0 4px;
    }

    .reality-badge {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .reality-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 12px;
    }

    .reality-subtitle {
        font-size: clamp(15px, 4vw, 18px);
    }

    .reality-timeline {
        margin-bottom: 20px;
        padding: 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-card::before {
        opacity: 0.08;
        filter: blur(1.5px);
    }

    .timeline-item {
        margin-bottom: 18px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-card {
        padding: 16px;
        border-radius: 14px;
    }

    .card-icon-wrapper {
        margin-bottom: 10px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

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

    .card-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .card-stat {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .card-desc {
        font-size: 13px;
        line-height: 1.4;
    }

    .reality-warning-box {
        padding: 16px 18px;
        gap: 10px;
        border-radius: 12px;
    }

    .reality-warning-box p {
        font-size: 14px;
        line-height: 1.4;
    }

    .warning-icon {
        width: 32px;
        height: 32px;
    }

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

@media (max-width: 360px) {
    .reality-check {
        padding: 30px 0;
    }

    .reality-check .container {
        padding: 0 12px;
    }

    .reality-bg-pattern {
        background-size: 20px 20px;
    }

    .reality-header {
        margin-bottom: 18px;
    }

    .reality-badge {
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .reality-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .reality-subtitle {
        font-size: 14px;
    }

    .reality-timeline {
        margin-bottom: 18px;
        padding: 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 16px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-card {
        padding: 14px;
    }

    .timeline-card::before {
        opacity: 0.06;
    }

    .card-icon-wrapper {
        margin-bottom: 8px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

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

    .card-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .card-stat {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .card-desc {
        font-size: 12px;
    }

    .reality-warning-box {
        padding: 14px 16px;
    }

    .reality-warning-box p {
        font-size: 13px;
    }

    .reality-warning-box::before {
        opacity: 0.05;
    }

    .warning-icon {
        width: 28px;
        height: 28px;
    }

    .warning-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
}

.step-visual {
    position: relative;
    margin-bottom: 24px;
}

.step-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all var(--transition-normal);
}

.step:hover .step-circle {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow-sm);
}

.step-number {
    position: absolute;
    top: -8px;
    right: calc(50% - 60px);
    background: var(--accent-gradient);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    flex-shrink: 0;
    padding-top: 50px;
}

.step-connector svg {
    width: 100%;
    height: 20px;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.feature-card-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.feature-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-illustration {
    width: 200px;
    height: 200px;
}

.illustration-globe svg {
    width: 100%;
    height: 100%;
    animation: rotateGlobe 30s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes pulseDot {
    0%, 100% { opacity: 1; r: 4; }
    50% { opacity: 0.5; r: 6; }
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

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

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonials-rating .stars {
    display: flex;
    gap: 4px;
}

.testimonials-rating .stars svg {
    width: 20px;
    height: 20px;
    color: #FBBF24;
}

.testimonials-rating span {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--accent-primary);
    opacity: 0.5;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 13px;
    color: var(--text-muted);
}

.author-rating {
    display: flex;
    gap: 2px;
}

.author-rating svg {
    width: 14px;
    height: 14px;
    color: #FBBF24;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.2) 50%, transparent 100%);
}

/* Simple Pricing Card */
.pricing-simple {
    max-width: 460px;
    margin: 0 auto;
}

.pricing-simple-card {
    position: relative;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.06) 0%, rgba(59, 130, 246, 0.03) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(96, 165, 250, 0.15);
    border-radius: 24px;
    padding: 60px 40px 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pricing-glow-bg {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    opacity: 0.6;
}

.pricing-badge-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #60A5FA;
}

.pricing-simple-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.price-dollar {
    font-size: 32px;
    font-weight: 700;
    color: #60A5FA;
    margin-right: 4px;
    align-self: flex-start;
    margin-top: 10px;
}

.price-number {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.pricing-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.pricing-cta {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.pricing-cta svg {
    transition: transform 0.3s ease;
}

.pricing-cta:hover svg {
    transform: translateX(4px);
}

.pricing-guarantee-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.pricing-guarantee-text svg {
    color: #10B981;
    flex-shrink: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--border-color);
}

.pricing-card-popular {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.1) 0%, var(--bg-card) 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.pricing-card-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-card-price .amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.pricing-card-price .period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-billed {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.savings {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 100px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
}

.pricing-card-features {
    margin-bottom: 32px;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-card-features strong {
    color: var(--text-primary);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-guarantee svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.pricing-guarantee p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.2) 50%, transparent 100%);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.cta-card {
    position: relative;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

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

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   Sticky CTA Bar
   ============================================ */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(20, 20, 35, 0.95) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding: 16px 0;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 -1px 0 0 rgba(59, 130, 246, 0.2) inset;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sticky-cta-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.sticky-highlight {
    color: var(--primary-blue);
    font-weight: 800;
}

.sticky-cta-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.sticky-cta-btn {
    white-space: nowrap;
    padding: 14px 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 12px 0;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sticky-cta-text {
        align-items: center;
    }

    .sticky-cta-title {
        font-size: 15px;
    }

    .sticky-cta-subtitle {
        font-size: 13px;
    }

    .sticky-cta-btn {
        width: 100%;
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 800px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.stripe-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .dashboard-mockup {
        transform: none;
    }

    .dashboard-mockup:hover {
        transform: none;
    }

    .floating-card {
        display: none;
    }

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

    .feature-card-large {
        grid-column: span 2;
    }

    .steps {
        flex-wrap: wrap;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .pricing-simple-card {
        padding: 56px 28px 36px;
    }

    .price-number {
        font-size: 60px;
    }

    .price-dollar {
        font-size: 28px;
        margin-top: 8px;
    }

    .price-period {
        font-size: 22px;
    }

    .pricing-cta {
        font-size: 16px;
        padding: 16px 40px;
    }

    .pricing-badge-top {
        font-size: 10px;
        padding: 5px 16px;
    }

    .hero {
        padding: 120px 0 50px;
        min-height: 90vh;
    }

    .hero-slide {
        padding: 40px 24px;
    }

    .hero-impact-title {
        font-size: 64px;
        margin-bottom: 32px;
        line-height: 1.0;
    }

    .hero-thin-divider {
        width: 110px;
        margin-bottom: 44px;
    }

    .hero-stats-block {
        font-size: 18px;
        margin: 44px auto;
        line-height: 1.35;
    }

    .stats-line {
        margin: 1px 0;
    }

    .stats-highlight {
        margin: 1px 0;
    }

    .hero-warning-line {
        font-size: 24px;
        margin: 54px 0 60px;
    }

    .hero-cta-box {
        padding: 42px 36px 40px;
        margin-bottom: 0;
    }

    .cta-box-accent {
        width: 70px;
        height: 3px;
    }

    .cta-box-text {
        font-size: 20px;
        margin-bottom: 24px;
        white-space: normal;
        text-align: center;
        padding: 0;
    }

    .hero-cta-btn {
        font-size: 17px;
        padding: 16px 44px;
        margin: 0 auto;
    }

    .hero-login-text {
        font-size: 11px;
        margin-top: 10px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-slide {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .mockup-content {
        flex-direction: column;
    }

    .mockup-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 12px;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-cards,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card-visual {
        order: -1;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-card {
        padding: 60px 24px;
    }
}

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

    .hero {
        padding: 100px 0 50px;
        min-height: 85vh;
    }

    .hero-slide {
        padding: 30px 16px;
    }

    .hero-impact-title {
        font-size: 42px;
        margin-bottom: 28px;
        line-height: 0.95;
    }

    .hero-thin-divider {
        width: 80px;
        margin-bottom: 36px;
    }

    .hero-stats-block {
        font-size: 16px;
        margin: 36px auto;
        line-height: 1.3;
    }

    .stats-line {
        margin: 0;
    }

    .stats-highlight {
        margin: 0;
    }

    .hero-warning-line {
        font-size: 20px;
        margin: 40px 0 48px;
    }

    .hero-cta-box {
        padding: 34px 18px 32px;
        margin-bottom: 0;
    }

    .cta-box-accent {
        width: 60px;
        height: 3px;
    }

    .cta-box-text {
        font-size: 15px;
        margin-bottom: 20px;
        white-space: normal;
        text-align: center;
        padding: 0;
        letter-spacing: 0;
    }

    .hero-cta-btn {
        font-size: 16px;
        padding: 15px 40px;
        width: 100%;
        margin: 0;
    }

    .hero-login-text {
        font-size: 10px;
        margin-top: 8px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 15px;
    }

    .pricing-simple-card {
        padding: 52px 24px 32px;
    }

    .price-number {
        font-size: 52px;
    }

    .price-dollar {
        font-size: 24px;
        margin-top: 6px;
    }

    .price-period {
        font-size: 20px;
    }

    .pricing-cta {
        font-size: 15px;
        padding: 15px 36px;
    }

    .pricing-badge-top {
        font-size: 9px;
        padding: 4px 14px;
        top: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .logo img {
        height: 20px !important;
    }

    .logo-text {
        font-size: 14px;
        gap: 8px;
    }
}

/* ============================================
   Animations
   ============================================ */

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

.hero-visual {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Utility Classes */
.hidden {
    display: none !important;
}
