/* ===========================================
   TAXGOAT - Main Stylesheet
   Version: 2.0
   =========================================== */

:root {
    /* Primary Colors - Emerald Theme */
    --primary: #10B981;
    --primary-hover: #059669;
    --primary-light: #D1FAE5;
    --primary-dark: #047857;

    /* Secondary Colors */
    --secondary: #6366F1;
    --accent: #F59E0B;
    --accent-light: #FEF3C7;

    /* Neutrals */
    --bg-body: #FAFBFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-card: #FFFFFF;

    /* Text Colors */
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-inverse: #FFFFFF;

    /* Borders & Shadows */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===========================================
   LANGUAGE SWITCHER
   =========================================== */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-body);
    padding: 3px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    margin-left: 0.75rem;
}

.lang-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: var(--transition-fast);
    cursor: pointer;
}

.lang-btn:hover {
    color: var(--text-main);
}

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

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    flex-shrink: 0;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

.btn-login {
    background: var(--primary-light) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.btn-login:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* Language Switcher in Navbar - Inline */
.nav-links .lang-switcher {
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* =========================================== 
   NAVBAR RESPONSIVE - Mobile First
   =========================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 4%;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    
    .nav-links .lang-switcher {
        margin: 1rem auto 0;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5% 6rem;
    min-height: 90vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #fff 0%, var(--bg-body) 100%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(16, 185, 129, 0.2);
    z-index: -1;
    transform: skewX(-8deg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 2px solid var(--border);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    width: 100%;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

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

/* ===========================================
   PROBLEM/SOLUTION SECTION
   =========================================== */
.problem-solution {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.problem-solution .container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.problem, .solution {
    flex: 1;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.problem {
    background: #FEF2F2;
    border: 2px solid #FECACA;
}

.solution {
    background: var(--primary-light);
    border: 2px solid #A7F3D0;
}

.problem h3, .solution h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.problem ul, .solution ul {
    list-style: none;
}

.problem li, .solution li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-main);
}

.arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--text-light);
}

/* ===========================================
   SECTION COMMON STYLES
   =========================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   FEATURES SECTION
   =========================================== */
.features {
    padding: var(--section-padding) 5%;
    background: var(--bg-body);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-color: var(--primary);
}

.badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-card.free .badge {
    background: #F1F5F9;
    color: var(--text-muted);
}

.feature-card.pro .badge {
    background: var(--primary);
    color: white;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border-radius: var(--radius-md);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing {
    padding: var(--section-padding) 5%;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto 3rem;
}

.pricing-grid.pricing-two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-display);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-vat {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Tax Deductible Badge */
.tax-deductible-badge {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #92400E;
    animation: pulse-glow 2s ease-in-out infinite;
}

.tax-deductible-badge .tax-icon {
    font-size: 1.25rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.2);
    }
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-main);
}

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

.pricing-card.featured .btn-primary {
    width: 100%;
}

/* Consultation Box */
.consultation-box {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 3rem auto 0;
    color: white;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.consultation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.consultation-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.consultation-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.consult-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.consult-section.ride-sharing {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
}

.consult-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.consult-icon {
    font-size: 1.1rem;
}

.consult-grid-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.consult-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.consult-time {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.consult-price {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: white;
}

.ride-sharing-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.75rem;
    line-height: 1.4;
}

.consultation-vat {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .consultation-box {
        padding: 2rem 1.5rem;
    }
    
    .consult-grid-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
    padding: var(--section-padding) 5%;
    background: var(--bg-body);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===========================================
   GAMIFICATION SECTION
   =========================================== */
.gamification {
    padding: var(--section-padding) 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.gamification-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.goat-score-visual {
    flex-shrink: 0;
}

.score-circle {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gamification-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.gamification-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gamification-text p {
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    padding: var(--section-padding) 5%;
    background: var(--bg-body);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: var(--bg-dark);
    padding: 4rem 5% 2rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-max);
    margin: 0 auto 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.25rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

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

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: var(--transition-fast);
}

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

.copyright {
    text-align: center;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.copyright span {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .gamification-content {
        flex-direction: column;
        text-align: center;
    }

    .consultation-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .cta-group {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .hero-image img {
        max-height: 300px;
    }

    .problem-solution .container {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
        justify-content: center;
    }

    .problem, .solution {
        max-width: 100%;
    }

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

    .consultation-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .consult-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        top: auto;
        bottom: 1rem;
        right: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .pricing-header .amount {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
