/* ========================================
   Arc Website - Brand Styles
   ======================================== */

:root {
    /* Arc Brand Colors */
    --arc-green: #4B7154;
    --arc-green-light: #608B6A;
    --arc-green-dark: #3C5A43;
    --arc-gold: #D4A017;
    --arc-gold-light: #EFCA46;
    --mist-white: #E8F0EA;
    --sage-mist: #C8DDD0;
    --graphite: #2E2E2E;
    --verdant-green: #5DBB63;
    
    /* Logo gradient colors (from the actual logo) */
    --logo-green-dark: #2D5A34;
    --logo-green-light: #A4C424;
    
    /* Semantic */
    --text-primary: #2E2E2E;
    --text-secondary: #4B7154;
    --text-muted: #6B7280;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAF9;
    --bg-accent: #E8F0EA;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--graphite);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    border: none;
    background: none;
    padding: 0;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--bg-secondary);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--arc-green) 0%, var(--arc-gold) 100%);
    backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.navbar-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--logo-green-dark), var(--arc-green));
    color: white;
    box-shadow: 0 4px 15px rgba(75, 113, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 113, 84, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--arc-green);
    border: 2px solid var(--arc-green);
}

.btn-secondary:hover {
    background: var(--arc-green);
    color: white;
}

.store-badge {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.store-badge-link {
    display: inline-block;
}

.store-badge-google {
    height: 74px;
    margin: -12px 0;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(75, 113, 84, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== WOW HERO SECTION ===== */
.hero-wow {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%) !important;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Animated mesh gradient background */
.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(75, 113, 84, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 160, 23, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(75, 113, 84, 0.2) 0%, transparent 70%);
    animation: meshMove 15s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

/* Floating notification cards - positioned around phone only */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 15;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--arc-green), var(--arc-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    color: white;
}

.floating-card .card-xp,
.floating-card .card-level,
.floating-card .card-streak {
    margin-left: auto;
    font-weight: 700;
    color: var(--arc-gold);
}

/* Position cards zig-zag around the phone - alternating left/right */
.card-1 { top: 12%; right: 5%; animation-delay: 0s; }      /* top right */
.card-2 { top: 32%; left: -5%; animation-delay: -1.5s; }   /* upper left */
.card-3 { top: 52%; right: 0%; animation-delay: -3s; }     /* middle right */
.card-4 { bottom: 15%; left: -8%; animation-delay: -4.5s; } /* bottom left */

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Particle effects */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--arc-gold);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
    opacity: 0;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 40%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 50%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 60%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { left: 70%; animation-delay: 6s; }
.hero-particles span:nth-child(8) { left: 80%; animation-delay: 7s; }
.hero-particles span:nth-child(9) { left: 90%; animation-delay: 8s; }
.hero-particles span:nth-child(10) { left: 15%; animation-delay: 0.5s; }
.hero-particles span:nth-child(11) { left: 25%; animation-delay: 1.5s; }
.hero-particles span:nth-child(12) { left: 35%; animation-delay: 2.5s; }
.hero-particles span:nth-child(13) { left: 55%; animation-delay: 4.5s; }
.hero-particles span:nth-child(14) { left: 75%; animation-delay: 6.5s; }
.hero-particles span:nth-child(15) { left: 85%; animation-delay: 7.5s; }

@keyframes particleFloat {
    0% { bottom: -10%; opacity: 0; transform: translateX(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { bottom: 110%; opacity: 0; transform: translateX(100px); }
}

/* Hero content WOW */
.hero-content-wow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hero-text-wow {
    color: white;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 113, 84, 0.3);
    border: 1px solid rgba(75, 113, 84, 0.5);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--arc-green);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--arc-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Title */
.hero-title-wow {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: white;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #6FCF7C, var(--arc-gold), #6FCF7C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    display: block;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Subtitle */
.hero-subtitle-wow {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle-wow strong {
    color: white;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.hero-buttons-wow {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-glow {
    background: linear-gradient(135deg, var(--arc-green), var(--arc-gold));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(75, 113, 84, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(75, 113, 84, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.5s both;
    min-height: 500px;
}

.hero-phone-mockup {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(75, 113, 84, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-15px) rotateY(5deg) rotateX(-5deg); }
}

.phone-notch {
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 28px;
    height: calc(100% - 10px);
    padding: 40px 16px 16px;
    overflow: hidden;
    margin-top: -20px;
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-level {
    display: inline-block;
    background: linear-gradient(135deg, var(--arc-green), var(--arc-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.app-xp-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.app-xp-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--arc-green), var(--arc-gold));
    border-radius: 4px;
    animation: xpPulse 2s ease-in-out infinite;
}

@keyframes xpPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-skill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    color: white;
    font-weight: 600;
}

.skill-level {
    color: var(--arc-gold);
    font-size: 0.85rem;
}

/* Glow effect behind phone */
.hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(75, 113, 84, 0.5) 0%, rgba(212, 160, 23, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-wow {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-wow {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons-wow {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Show floating cards on mobile - position around phone mockup only */
    .hero-floating-elements {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
    }
    
    .floating-card {
        display: flex;
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 8px;
        max-width: 160px;
    }
    
    .floating-card .card-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    
    .floating-card .card-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Position cards around the phone section only - below the text content */
    .card-1 { 
        top: auto !important; 
        bottom: 45% !important; 
        right: 10px !important; 
        left: auto !important;
    }
    .card-2 { 
        top: auto !important; 
        bottom: 35% !important; 
        left: 10px !important; 
        right: auto !important;
    }
    .card-3 { 
        top: auto !important; 
        bottom: 20% !important; 
        right: 10px !important; 
        left: auto !important;
    }
    .card-4 { 
        top: auto !important; 
        bottom: 8% !important; 
        left: 10px !important; 
        right: auto !important;
    }
    
    .hero-subtitle-wow {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--logo-green-dark), var(--logo-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 113, 84, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(75, 113, 84, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-accent), var(--sage-mist));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-card h4 {
    margin-bottom: 0.75rem;
    color: var(--arc-green-dark);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    text-align: center;
    background: linear-gradient(135deg, var(--arc-green-dark) 0%, var(--arc-green) 100%);
    color: white;
}

.download-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.download-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--arc-green);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--logo-green-dark), var(--arc-green));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h4 {
    color: var(--arc-green);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--graphite);
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--verdant-green);
    font-weight: 700;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.875rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--arc-green-dark);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--graphite);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 40px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-column h5 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--logo-green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-description {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--logo-green-dark), var(--logo-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
