/* Green & White Dynamic Design - Fresh & Energetic Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Green Color Scheme */
:root {
    /* Primary Green Colors */
    --green-primary: #00C853;
    --green-dark: #00A344;
    --green-light: #4CAF50;
    --green-lighter: #81C784;
    --green-pale: #C8E6C9;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F1F8F4;
    --bg-green-light: #E8F5E9;
    --bg-green-lighter: #C8E6C9;
    
    /* Text Colors */
    --text-dark: #1B5E20;
    --text-gray: #4A5568;
    --text-light: #718096;
    
    /* Accent Colors */
    --accent-yellow: #FFC107;
    --accent-orange: #FF9800;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 200, 83, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 200, 83, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 200, 83, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 200, 83, 0.25);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated SVG Background */
.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-svg {
    width: 100%;
    height: 100%;
}

.floating-shape {
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    animation-delay: 2s;
    animation-duration: 30s;
}

.shape-3 {
    animation-delay: 4s;
    animation-duration: 22s;
}

.shape-4 {
    animation-delay: 1s;
    animation-duration: 28s;
}

.shape-5 {
    animation-delay: 3s;
    animation-duration: 24s;
}

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

.wave-shape {
    animation: wave 15s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
}

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

/* Navigation - Fresh Green Style */
.navbar {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 200, 83, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--bg-green-light);
    overflow: visible;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--green-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

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

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    border-radius: 12px;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary) 0%, var(--green-light) 100%);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--green-primary);
}

.nav-link.active {
    color: var(--green-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: 500px;
}


.mobile-link {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-green-light);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--green-primary);
    padding-left: 15px;
}

/* Hero Section - Dynamic Green */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-green-light) 100%);
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item svg {
    color: var(--green-primary);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-secondary:hover {
    background: var(--bg-green-light);
    transform: translateY(-3px);
}

/* Hero Image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.product-showcase {
    position: relative;
    max-width: 500px;
    animation: floatProduct 6s ease-in-out infinite;
}

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

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

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

.product-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 200, 83, 0.3));
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--bg-green-light);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-primary);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.trust-icon svg {
    color: white;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
}

.benefit-icon svg {
    color: white;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* Symptoms Section */
.symptoms {
    background: var(--bg-white);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.symptom-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--green-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.symptom-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-lg);
}

.symptom-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.symptom-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.symptom-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.symptom-item p {
    color: var(--text-gray);
    line-height: 1.7;
    padding-left: 70px;
}

.symptoms-visual img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

/* Ingredients Section */
.ingredients {
    background: var(--bg-light);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.ingredient-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-primary);
}

.ingredient-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.ingredient-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.1);
}

.ingredient-content {
    padding: 30px;
}

.ingredient-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.ingredient-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.research-link:hover {
    gap: 12px;
    color: var(--green-dark);
}

/* Order Section */
.order-section {
    background: var(--bg-white);
}

.order-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-visual img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    animation: floatProduct 6s ease-in-out infinite;
}

.order-info {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--bg-green-light);
}

.price-badge {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
}

.heading-order {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.subtitle-order {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid var(--bg-green-light);
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1);
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-green-light);
    padding: 50px 0;
}

.disclaimer-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.disclaimer-content svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.disclaimer-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.disclaimer-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--text-dark) 0%, #0D3818 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 0;
    clear: both;
}

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

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

.footer-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--green-lighter);
    padding-left: 5px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

.fab svg {
    color: white;
}

/* Success/Error Messages */
.success-message,
.error-message {
    display: none;
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    margin-top: 25px;
}

.success-message {
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid var(--green-primary);
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #F44336;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.success-message svg {
    color: var(--green-primary);
}

.error-message svg {
    color: #F44336;
}

.success-message h3,
.error-message h3 {
    font-size: 26px;
    margin: 15px 0 10px;
    font-weight: 700;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-wrapper {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .benefits-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .order-info {
        padding: 30px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h4 {
        font-size: 18px;
    }
}