:root {
    /* Colors - Light Mode */
    --primary-main: hsl(210, 98%, 48%);
    --primary-light: hsl(210, 100%, 80%);
    --primary-dark: hsl(210, 100%, 35%);
    --secondary-main: #42a5f5;

    /* WhatsApp Brand Colors */
    --whatsapp-green: #25D366;
    --whatsapp-teal: #128C7E;
    --whatsapp-dark: #075E54;
    --whatsapp-blue: #34B7F1;

    /* Background */
    --bg-default: hsl(0, 0%, 99%);
    --bg-paper: hsl(220, 35%, 97%);
    --bg-hero: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(210, 100%, 97%), transparent);

    /* Text */
    --text-primary: hsl(220, 30%, 6%);
    --text-secondary: hsl(220, 20%, 35%);
    --divider: hsla(220, 20%, 80%, 0.4);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --bg-default: hsl(220, 35%, 3%);
    --bg-paper: hsl(220, 30%, 7%);
    --bg-hero: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(210, 100%, 16%), transparent);

    --text-primary: hsl(0, 0%, 100%);
    --text-secondary: hsl(220, 20%, 65%);
    --divider: hsla(220, 20%, 25%, 0.6);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-main);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family);
}

.btn-primary {
    background-color: var(--primary-main);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-main);
    color: white;
}

.btn-secondary:hover {
    background-color: #1e88e5;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-main);
    border: 1px solid var(--primary-main);
}

.btn-outline:hover {
    background-color: rgba(25, 118, 210, 0.08);
}

.btn-text {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-text:hover {
    background-color: rgba(25, 118, 210, 0.08);
}

.btn-full {
    width: 100%;
}

/* Mobile Header Buttons */
.btn-mobile-primary {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white !important;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.3);
}

.btn-mobile-primary:hover {
    color: white !important;
    box-shadow: 0 3px 8px rgba(25, 118, 210, 0.4);
}

.btn-mobile-text {
    background: transparent;
    color: var(--text-secondary) !important;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
}

.btn-mobile-text:hover {
    color: var(--primary-main) !important;
    background: rgba(25, 118, 210, 0.08);
}

/* Utilities */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: flex !important;
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-only {
        display: none !important;
    }
}

.gradient-text {
    background: linear-gradient(90deg, hsl(210, 98%, 48%) 0%, hsl(210, 98%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .gradient-text {
    background: linear-gradient(90deg, hsl(210, 100%, 65%) 0%, hsl(210, 98%, 48%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Bar - GLASS CRYSTAL EFFECT */
.app-bar {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

/* Mobile-specific app-bar positioning */
@media (max-width: 767px) {
    .app-bar {
        top: 12px;
    }
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    /* Perfect Glass Crystal Effect */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: calc(var(--border-radius) + 8px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
}

/* Compact toolbar for mobile */
@media (max-width: 767px) {
    .toolbar {
        padding: 6px 10px;
    }
}

[data-theme="dark"] .toolbar {
    background: rgba(10, 25, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: 1.25rem;
}

/* Compact logo for mobile */
@media (max-width: 767px) {
    .logo {
        font-size: 1.1rem;
        gap: 6px;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }
}

.logo-text {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-link {
    padding: 6px 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Compact mobile menu button for mobile */
@media (max-width: 767px) {
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.menu-icon {
    display: block;
    stroke-width: 2;
}

.close-icon {
    display: none;
    stroke-width: 2;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide drawer completely on desktop */
@media (min-width: 768px) {
    .mobile-drawer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.mobile-drawer.open {
    visibility: visible;
    opacity: 1;
}

/* Prevent drawer from opening on desktop */
@media (min-width: 768px) {
    .mobile-drawer.open {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .drawer-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.drawer-content {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 280px;
    max-height: calc(100vh - 120px);
    /* Solid white background */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile drawer positioning */
@media (max-width: 767px) {
    .drawer-content {
        top: 70px;
        width: 260px;
    }
}

.mobile-drawer.open .drawer-content {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

[data-theme="dark"] .drawer-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.drawer-header {
    display: none;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.drawer-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drawer-close:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    transform: scale(1.05);
}

[data-theme="dark"] .drawer-close {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .drawer-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.drawer-menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 14px;
    padding: 12px 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.15s ease;
    text-decoration: none;
}

.drawer-menu-item:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--primary-main);
}

.drawer-menu-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

.drawer-menu-item:hover svg {
    opacity: 1;
}

[data-theme="dark"] .drawer-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
    border-top: 1px solid var(--divider);
    margin-top: auto;
    flex-shrink: 0;
}

/* Compact drawer footer for mobile */
@media (max-width: 767px) {
    .drawer-footer {
        gap: 6px;
        padding: 10px 8px;
    }
}

.btn-drawer {
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/* Compact drawer buttons for mobile */
@media (max-width: 767px) {
    .btn-drawer {
        padding: 10px 14px;
        font-size: 0.875rem;
        border-radius: 10px;
    }
}

.btn-drawer-outline {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.btn-drawer-outline:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

[data-theme="dark"] .btn-drawer-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .btn-drawer-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-drawer-primary {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
    border: 1.5px solid transparent;
}

.btn-drawer-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 64px;
    background: var(--bg-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 350px;
    margin: 0 auto var(--spacing-md);
    flex-direction: column;
}

@media (min-width: 640px) {
    .hero-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--divider);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-family: var(--font-family);
    background-color: var(--bg-paper);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-main);
}

.hero-terms {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    outline: 6px solid hsla(220, 25%, 80%, 0.2);
    border: 1px solid var(--divider);
    box-shadow: 0 0 12px 8px hsla(220, 25%, 80%, 0.2);
    transition: transform 0.3s ease-out;
}

[data-theme="dark"] .hero-image {
    outline-color: hsla(220, 20%, 42%, 0.1);
    box-shadow: 0 0 24px 12px hsla(210, 100%, 25%, 0.2);
}

@media (min-width: 640px) {
    .hero-image {
        height: 700px;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats {
    padding: 40px 0;
    background: var(--bg-hero);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-md);
}

.stats-header p {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stat-card {
    text-align: center;
    min-width: 160px;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
}

.stat-value {
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-description {
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 160px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 64px 0;
}

@media (min-width: 640px) {
    .features {
        padding: 128px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-paper);
    border-radius: 20px;
    border: 1px solid rgba(25, 118, 210, 0.15);
    padding: 32px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: cardPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardPop {
    0% {
        transform: translateY(20px) scale(0.9);
        opacity: 0.5;
    }

    60% {
        transform: translateY(-15px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(25, 118, 210, 0.3);
    border-color: rgba(25, 118, 210, 0.6);
}

[data-theme="dark"] .feature-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 25px 50px rgba(25, 118, 210, 0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Logo Collection - ENHANCED */
.logo-collection {
    padding: 48px 0;
    overflow: hidden;
}

.logo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 24px;
}

.company-logo {
    width: 120px;
    height: 90px;
    object-fit: contain;
    opacity: 0;
    filter: grayscale(100%);
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.company-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.company-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.company-logo:nth-child(3) {
    animation-delay: 0.3s;
}

.company-logo:nth-child(4) {
    animation-delay: 0.4s;
}

.company-logo:nth-child(5) {
    animation-delay: 0.5s;
}

.company-logo:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes logoFadeIn {
    to {
        opacity: 0.5;
        transform: translateY(0);
    }
}

.company-logo:hover {
    opacity: 1 !important;
    filter: grayscale(0%);
    transform: translateY(-8px) scale(1.1);
}

[data-theme="dark"] .company-logo {
    filter: grayscale(100%) invert(1) brightness(0.9);
}

[data-theme="dark"] .company-logo:hover {
    filter: grayscale(0%) invert(1) brightness(1.1);
}

/* How It Works Timeline - MATCHING ORIGINAL REACT */
.how-it-works {
    padding: 64px 0;
    background-color: var(--bg-default);
    position: relative;
}

@media (min-width: 640px) {
    .how-it-works {
        padding: 128px 0;
    }
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--divider);
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 24px;
    }
}

.timeline-step {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 64px;
    position: relative;
    opacity: 0.4;
    transform: scale(0.92);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step.active {
    opacity: 1;
    transform: scale(1.02);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-step:nth-child(even) {
        justify-content: flex-end;
    }
}

.step-content {
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-left: 80px;
}

@media (min-width: 768px) {
    .step-content {
        width: 45%;
        padding-left: 0;
    }

    .step-left {
        flex-direction: row;
        text-align: right;
    }

    .step-right {
        flex-direction: row-reverse;
        text-align: left;
    }
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(25, 118, 210, 0.1);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step.active .step-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.4);
}

[data-theme="dark"] .step-icon {
    background: rgba(25, 118, 210, 0.15);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(0.95);
    opacity: 0.6;
}

.timeline-step.active .step-content h3 {
    transform: scale(1.05);
    opacity: 1;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    opacity: 0.5;
}

.timeline-step.active .step-content p {
    opacity: 1;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--divider);
    background-color: var(--bg-paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: bold;
    z-index: 2;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
    .step-number {
        left: 24px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.timeline-step.active .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 32px rgba(25, 118, 210, 0.6);
}

@media (max-width: 768px) {
    .timeline-step.active .step-number {
        transform: translateX(0) scale(1.15);
    }
}

.cta-text {
    margin-top: 64px;
    text-align: center;
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 48px 0 64px;
}

@media (min-width: 640px) {
    .pricing {
        padding: 96px 0 128px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    background: radial-gradient(circle at 50% 0%, hsl(220, 20%, 35%), hsl(220, 30%, 6%));
    border: none;
    box-shadow: 0 8px 12px hsla(220, 20%, 42%, 0.2);
    color: #f5f5f5;
}

[data-theme="dark"] .pricing-card-featured {
    background: radial-gradient(circle at 50% 0%, hsl(220, 20%, 20%), hsl(220, 30%, 16%));
    box-shadow: 0 8px 12px hsla(0, 0%, 0%, 0.8);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.pricing-header h3 {
    font-size: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 0.75rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
}

.price-period {
    font-size: 1.25rem;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--divider);
    margin: 16px 0;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--primary-main);
}

.pricing-card-featured .pricing-features svg {
    color: var(--primary-light);
}

/* FAQ Section */
.faq {
    padding: 48px 0 64px;
}

@media (min-width: 640px) {
    .faq {
        padding: 96px 0 128px;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--divider);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 64px 0 40px;
}

@media (min-width: 640px) {
    .footer {
        padding: 80px 0;
    }
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-main);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    max-width: 250px;
    padding: 8px 12px;
    border: 1px solid var(--divider);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-family: var(--font-family);
    background-color: var(--bg-paper);
    color: var(--text-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-main);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    padding-top: 32px;
    border-top: 1px solid var(--divider);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 64px;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links span {
    color: var(--text-secondary);
    opacity: 0.5;
}

.copyright {
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-main);
    background-color: rgba(25, 118, 210, 0.08);
}

/* Link */
.link {
    color: var(--primary-main);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Mobile Specific Fixes */
@media (max-width: 767px) {
    .app-bar {
        top: 12px;
    }

    .toolbar {
        padding: 6px 10px;
    }

    .logo {
        font-size: 1.125rem;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .nav-right {
        gap: 4px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .container {
        padding: 0 16px;
    }

    /* Ensure mobile drawer is above everything */
    .mobile-drawer {
        z-index: 9999;
    }

    .drawer-content {
        top: 70px;
        right: 12px;
        width: 300px;
    }

    .drawer-menu-item {
        padding: 11px 12px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .drawer-content {
        right: 8px;
        width: calc(100vw - 16px);
        max-width: 340px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        display: none;
    }

    .drawer-content {
        width: calc(100vw - 16px);
    }
}

/* ==========================================
   API DEMO SECTION
   ========================================== */
.api-demo {
    padding: 80px 0;
    background: var(--bg-default);
}

.api-demo-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.api-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--divider);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.api-tab:hover {
    border-color: var(--primary-main);
    color: var(--primary-main);
}

.api-tab.active {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--secondary-main) 100%);
    border-color: transparent;
    color: white;
}

.api-demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .api-demo-container {
        grid-template-columns: 1fr;
    }
}

.api-demo-request,
.api-demo-response {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-paper);
    border: 1px solid var(--divider);
}

[data-theme="dark"] .api-demo-request,
[data-theme="dark"] .api-demo-response {
    background: hsl(220, 25%, 10%);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.code-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid var(--divider);
}

[data-theme="dark"] .code-panel-header {
    background: rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.code-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.method-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.status-badge.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--divider);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.copy-btn:hover {
    border-color: var(--primary-main);
    color: var(--primary-main);
    background: rgba(59, 130, 246, 0.05);
}

.code-panel-body {
    padding: 16px;
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
}

.api-code,
.response-code {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.7;
    white-space: pre;
    display: none;
}

.api-code.active {
    display: block;
}

.response-code {
    display: block;
}

.api-code code,
.response-code code {
    color: var(--text-primary);
}

/* Syntax Highlighting */
.code-comment {
    color: #6b7280;
    font-style: italic;
}

.code-keyword {
    color: #c084fc;
}

.code-string {
    color: #22c55e;
}

.code-key {
    color: #60a5fa;
}

.code-number {
    color: #f59e0b;
}

[data-theme="dark"] .code-comment {
    color: #9ca3af;
}

.api-demo-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.api-demo-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Scrollbar styling for code panels */
.code-panel-body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.code-panel-body::-webkit-scrollbar-track {
    background: transparent;
}

.code-panel-body::-webkit-scrollbar-thumb {
    background: var(--divider);
    border-radius: 3px;
}

.code-panel-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-main);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-default);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 20px;
    padding: 32px 28px;
    width: 280px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-main), var(--secondary-main));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-main);
}

.step-card:hover::before {
    opacity: 1;
}

[data-theme="dark"] .step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
}

.step-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-main);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.step-badge.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.step-icon-bg.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.step-icon-svg {
    position: relative;
    z-index: 1;
    color: var(--primary-main);
}

.step-icon-svg.success {
    color: #22c55e;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.step-features span svg {
    color: #22c55e;
    flex-shrink: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    opacity: 0.5;
}

@media (max-width: 1000px) {
    .step-connector {
        transform: rotate(90deg);
    }

    .steps-container {
        flex-direction: column;
    }

    .step-card {
        width: 100%;
        max-width: 340px;
    }
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-subtext {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ==========================================
   TIMELINE STYLES
   ========================================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-main) 0%, var(--secondary-main) 50%, #22c55e 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

[data-theme="dark"] .timeline-line {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.6) 0%, rgba(66, 165, 245, 0.6) 50%, rgba(34, 197, 94, 0.6) 100%);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step[data-step="0"] .step-content,
.timeline-step[data-step="2"] .step-content {
    margin-right: auto;
    padding-right: 80px;
    text-align: right;
}

.timeline-step[data-step="1"] .step-content {
    margin-left: auto;
    padding-left: 80px;
    text-align: left;
}

.timeline-step[data-step="1"] {
    flex-direction: row-reverse;
}

.step-content {
    width: calc(50% - 40px);
    background: var(--bg-paper);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-main);
}

[data-theme="dark"] .step-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .step-content:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.timeline-step[data-step="0"] .step-content .step-icon,
.timeline-step[data-step="2"] .step-content .step-icon {
    margin-left: auto;
}

.timeline-step[data-step="0"] .step-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-main);
}

.timeline-step[data-step="1"] .step-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-main);
}

.timeline-step[data-step="2"] .step-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary-main);
}

.step-content:hover .step-icon {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-paper);
    border: 3px solid var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-main);
    z-index: 10;
    transition: all 0.3s ease;
}

[data-theme="dark"] .step-number {
    background: hsl(220, 30%, 10%);
    border-color: rgba(59, 130, 246, 0.6);
}

.timeline-step:hover .step-number {
    background: var(--primary-main);
    color: white;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.cta-text {
    text-align: center;
    margin-top: 60px;
}

.cta-text .btn {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.cta-text p {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 25px;
    }

    .timeline-step {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
    }

    .step-content {
        width: 100% !important;
        padding-right: 24px !important;
        padding-left: 24px !important;
        text-align: left !important;
    }

    .timeline-step[data-step="0"] .step-content .step-icon,
    .timeline-step[data-step="2"] .step-content .step-icon {
        margin-left: 0;
    }

    .step-number {
        left: 25px;
        top: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-step:hover .step-number {
        transform: translateX(-50%) scale(1.05);
    }
}