/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lavender: #E9E7FF;
    --mint: #E0FFF8;
    --rose: #FFE9F0;
    --sky: #E6F3FF;
    --violet: #DDD6FE;
    --teal: #CCFBF1;
    --peach: #FFE4D6;
    --lemon: #FEF9C3;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-bg-hover: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(139, 92, 246, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(99, 102, 241, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(99, 102, 241, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    color: #4a5568;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #E9E7FF 0%, #E0FFF8 25%, #FFE9F0 50%, #E6F3FF 75%, #DDD6FE 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradient 25s ease infinite;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 231, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 233, 240, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(224, 255, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(230, 243, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #8B5CF6;
}

.btn-login {
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(150%);
    color: #2d3748 !important;
    padding: 10px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(139, 92, 246, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(139, 92, 246, 0.12);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d3748;
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #2d3748;
    animation: fadeInUp 0.6s ease-out;
}

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

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(150%);
    color: #2d3748;
    padding: 16px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(139, 92, 246, 0.08);
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.12);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(139, 92, 246, 0.06);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(139, 92, 246, 0.1);
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 400;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 300;
}

.hero-card {
    position: relative;
    animation: float 6s ease-in-out infinite, fadeInUp 0.6s ease-out 0.4s backwards;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
    pointer-events: none;
}

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

.mockup-browser {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(50px) saturate(160%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.12);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.browser-dots span:nth-child(1) { background: rgba(255, 95, 86, 0.6); }
.browser-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.browser-dots span:nth-child(3) { background: rgba(39, 201, 63, 0.6); }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #a0aec0;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 16px;
    border-radius: 8px;
    margin-left: 16px;
}

.browser-content {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    min-height: 400px;
}

.dashboard-preview {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.preview-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.preview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.preview-info {
    flex: 1;
}

.preview-name {
    height: 20px;
    width: 150px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 8px;
    animation: shimmer 2s ease-in-out infinite;
}

.preview-subtitle {
    height: 16px;
    width: 200px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    animation: shimmer 2s ease-in-out 0.2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.preview-card {
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: shimmer 2s ease-in-out 0.4s infinite;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-item {
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: shimmer 2s ease-in-out 0.6s infinite;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 100px 0;
}

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

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #2d3748;
}

.section-description {
    font-size: 18px;
    color: #718096;
    font-weight: 300;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(50px) saturate(160%);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(139, 92, 246, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.feature-description {
    color: #718096;
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 100px 0;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.step:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3), 0 8px 24px rgba(139, 92, 246, 0.2);
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.step-description {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.step-line {
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: 100px 0;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(50px) saturate(160%);
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(139, 92, 246, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.12);
}

.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 20px;
    font-weight: 400;
    color: #718096;
}

.price-amount {
    font-size: 56px;
    font-weight: 300;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: #a0aec0;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: #718096;
    font-size: 15px;
    font-weight: 300;
}

.pricing-features li.disabled {
    color: #cbd5e0;
    opacity: 0.6;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2d3748;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(139, 92, 246, 0.08);
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(139, 92, 246, 0.12);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    border: none;
}

.btn-pricing-featured:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(150%);
    color: #2d3748;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(139, 92, 246, 0.08);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 24px 64px rgba(139, 92, 246, 0.12);
}

.btn-cta-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px) saturate(140%);
    color: #4a5568;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(139, 92, 246, 0.06);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(139, 92, 246, 0.1);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(40px) saturate(150%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 32px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

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

.footer-brand .logo svg circle,
.footer-brand .logo svg path {
    fill: white;
}

.footer-brand .logo-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}
