/* ============================================
   CookSmart Landing Page - Premium CSS
   ============================================ */

/* CSS Variables */
:root {
    --primary: #FF8E53;
    --primary-dark: #E67A45;
    --primary-light: #FFB088;
    --secondary: #4F46E5;
    --accent: #10B981;
    --dark: #1F2937;
    --dark-light: #374151;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-lighter: #E5E7EB;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --gradient: linear-gradient(135deg, #FF8E53 0%, #FE6B8B 100%);
    --gradient-text: linear-gradient(135deg, #FF8E53 0%, #FE6B8B 50%, #FF8E53 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 142, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 142, 83, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-lighter);
}

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

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

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.apple-icon {
    width: 20px;
    height: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.logo-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

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

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

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--dark);
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow-x: clip;
    overflow-y: visible;
    background: linear-gradient(180deg, #FFF5F0 0%, #FFFFFF 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 142, 83, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(254, 107, 139, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 142, 83, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

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

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

/* Phone Mockup */
.hero-visual {
    position: relative;
    padding: 20px 60px;
    overflow: visible;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 44px;
    padding: 8px;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    display: inline-block;
}

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

.phone-screen {
    background: linear-gradient(180deg, #FFF5F0 0%, #FFFFFF 100%);
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 9/19;
    width: 280px;
}

.app-preview {
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.greeting {
    font-size: 22px;
    font-weight: 700;
}

.app-header .subtitle {
    font-size: 14px;
    color: var(--gray);
}

.app-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 142, 83, 0.1);
    border-radius: 12px;
}

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

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.card-desc {
    font-size: 12px;
    color: var(--gray);
}

.recipe-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.recipe-image {
    height: 100px;
    background:
        linear-gradient(135deg, rgba(255, 176, 136, 0.3) 0%, rgba(254, 107, 139, 0.3) 100%),
        url('https://images.unsplash.com/photo-1519708227418-c8fd9a32b7a2?w=400&h=200&fit=crop') center/cover no-repeat;
    border-radius: 12px;
    position: relative;
}

.recipe-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recipe-title {
    font-weight: 600;
    font-size: 15px;
}

.recipe-meta {
    font-size: 12px;
    color: var(--gray);
}

.recipe-tags {
    display: flex;
    gap: 6px;
}

.tag {
    font-size: 10px;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 500;
}

.ai-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
}

.ai-icon {
    font-size: 24px;
}

.ai-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ai-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-text {
    font-size: 12px;
    color: var(--dark);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: -80px;
    right: -80px;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 10;
}

.float-card {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.float-emoji {
    font-size: 20px;
}

.float-1 {
    top: 60px;
    left: -60px;
    animation-delay: 0s;
}

.float-2 {
    top: 25%;
    right: -40px;
    animation-delay: 1s;
}

.float-3 {
    bottom: 20%;
    right: -50px;
    animation-delay: 2s;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Logos Section */
.logos-section {
    padding: 60px 0;
    background: var(--white);
}

.logos-title {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-light);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.platform-icon {
    font-size: 28px;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 142, 83, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 142, 83, 0.2);
}

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

.feature-card.feature-full {
    grid-column: span 3;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

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

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.feature-visual {
    margin-top: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.scanner-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scan-item {
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.1) 0%, rgba(254, 107, 139, 0.1) 100%);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    animation: pop-in 0.5s ease forwards;
    opacity: 0;
}

.scan-item:nth-child(1) { animation-delay: 0.1s; }
.scan-item:nth-child(2) { animation-delay: 0.2s; }
.scan-item:nth-child(3) { animation-delay: 0.3s; }
.scan-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes pop-in {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.stats-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-bar .stat-label {
    width: 70px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--gray-lighter);
    border-radius: 100px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 100px;
    transition: width 1s ease;
}

.bar-green .bar-fill {
    background: var(--accent);
}

.bar-orange .bar-fill {
    background: #F59E0B;
}

.stat-bar .stat-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    min-width: 70px;
    text-align: right;
}

/* How It Works */
.how-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    position: relative;
    transition: all 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--gray-lighter);
    font-weight: 300;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

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

.testimonial-card.featured {
    background: var(--gradient);
    color: var(--white);
}

.testimonial-card.featured .testimonial-text {
    color: var(--white);
}

.testimonial-card.featured .author-title {
    color: rgba(255,255,255,0.8);
}

.stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-card.featured .author-avatar {
    background: rgba(255,255,255,0.2);
}

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

.author-name {
    font-weight: 600;
    font-size: 15px;
}

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

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.pricing-card.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-lighter);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray);
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
}

.pricing-features li.disabled {
    color: var(--gray-light);
}

.check {
    color: var(--accent);
    font-weight: bold;
}

.x {
    color: var(--gray-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    color: var(--gray-light);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gray-light);
}

.footer-links a {
    display: block;
    color: var(--white);
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-social a {
    font-size: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        align-items: center;
    }

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

    .floating-cards {
        display: none;
    }

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

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

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

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

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

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

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

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

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

    .feature-card.feature-large,
    .feature-card.feature-full {
        grid-column: span 1;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

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

    .pricing-card.pricing-featured {
        transform: scale(1);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

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

    .stat-divider {
        display: none;
    }

    .phone-screen {
        width: 260px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
    }
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.legal-content .last-updated {
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--dark-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--dark-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}
