/* ========================================
   KALVEX – Landing Page Institucional
   Design Futurista / Glassmorphism / Neon
   ======================================== */

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

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

:root {
    --color-black: #050508;
    --color-dark: #0c0c14;
    --color-graphite: #13131f;
    --color-surface: #1a1a2e;
    --color-card: #16162a;
    --color-gray: #3a3a5c;
    --color-mid: #6e6e8a;
    --color-light: #a0a0bc;
    --color-silver: #c8c8e0;
    --color-off-white: #e8e8f0;
    --color-white: #f4f4fa;

    --neon-cyan: #00f0ff;
    --neon-cyan-dim: #00b8c4;
    --neon-cyan-glow: rgba(0, 240, 255, 0.15);
    --neon-cyan-glow-strong: rgba(0, 240, 255, 0.35);

    --glass-bg: rgba(20, 20, 40, 0.6);
    --glass-border: rgba(0, 240, 255, 0.1);
    --glass-blur: blur(16px);

    --font-display: 'Orbitron', monospace, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.15), 0 0 60px rgba(0, 240, 255, 0.05);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-light);
    background: var(--color-black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* ============ ANIMATED BACKGROUND PARTICLES ============ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 240, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 5, 8, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

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

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.main-nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent !important;
    color: var(--neon-cyan) !important;
    padding: 9px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--neon-cyan) !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.08);
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition);
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-cyan-dim));
    color: var(--color-black);
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.4), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-gray);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 0.95rem;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.5) 0%,
        rgba(5, 5, 8, 0.6) 40%,
        rgba(5, 5, 8, 0.85) 80%,
        rgba(5, 5, 8, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 140px 24px 100px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
}

.hero h1 span {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-silver);
    margin-bottom: 12px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-disclaimer {
    font-size: 0.75rem;
    color: var(--color-mid);
    margin-bottom: 36px;
    font-style: italic;
}

/* Animated line under hero */
.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.4;
}

/* ============ STATS ============ */
.stats-section {
    background: var(--color-dark);
    padding: 70px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: var(--shadow-neon);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-mid);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--color-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--neon-cyan);
}

.section-subtitle {
    text-align: center;
    color: var(--color-mid);
    font-size: 1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative line under titles */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--neon-cyan);
    margin: 16px auto 0;
    box-shadow: 0 0 10px var(--neon-cyan);
    border-radius: 2px;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-mid);
    line-height: 1.6;
}

/* ============ ABOUT ============ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--color-light);
    line-height: 1.8;
}

.about-content strong {
    color: var(--neon-cyan);
}

/* ============ BENEFITS ============ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    border-left: 3px solid var(--neon-cyan);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    border-left-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    transform: translateX(4px);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.benefit-card p {
    color: var(--color-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ DO / DON'T ============ */
.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.do-card, .dont-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.do-card {
    border-top: 3px solid var(--neon-cyan);
}

.dont-card {
    border-top: 3px solid #ff4060;
}

.do-card h3, .dont-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.do-card ul, .dont-card ul {
    list-style: none;
}

.do-card li, .dont-card li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--color-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.do-card li:last-child, .dont-card li:last-child {
    border-bottom: none;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-neon);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--neon-cyan);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--color-light);
    font-style: italic;
    margin-bottom: 18px;
    padding-top: 28px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.8rem;
    color: var(--neon-cyan-dim);
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-silver);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--neon-cyan);
    transition: var(--transition);
    font-family: var(--font-display);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-item.active .faq-question {
    color: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 22px;
    color: var(--color-mid);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-graphite) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.cta-content p {
    color: var(--color-mid);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--color-black);
    color: var(--color-mid);
    padding: 70px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col p, .footer-col li {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--color-mid);
}

.footer-col a:hover {
    color: var(--neon-cyan);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--color-mid);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--color-gray) !important;
    font-style: italic;
    margin-top: 14px !important;
    margin-bottom: 14px !important;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.15);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
}

/* ============ COOKIES POPUP ============ */
.cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 20, 0.95);
    backdrop-filter: var(--glass-blur);
    color: var(--color-light);
    padding: 22px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--glass-border);
}

.cookies-popup.active {
    transform: translateY(0);
}

.cookies-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookies-inner p {
    font-size: 0.85rem;
    flex: 1;
}

.cookies-inner a {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.cookies-actions {
    display: flex;
    gap: 12px;
}

.cookies-actions .btn {
    padding: 10px 22px;
    font-size: 0.8rem;
}

/* ============ LEGAL PAGES ============ */
.page-legal {
    padding: 130px 0 70px;
    position: relative;
    z-index: 1;
}

.page-legal h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.legal-updated {
    color: var(--color-mid);
    font-size: 0.85rem;
    margin-bottom: 44px;
}

.page-legal h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-top: 36px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.page-legal p {
    margin-bottom: 14px;
    color: var(--color-light);
    line-height: 1.8;
}

.page-legal ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 18px;
}

.page-legal li {
    color: var(--color-light);
    margin-bottom: 8px;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.page-legal li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-line {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
    }
    .main-nav.active {
        transform: translateY(0);
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .services-grid, .benefits-grid, .do-dont-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cookies-inner {
        flex-direction: column;
        text-align: center;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section {
        padding: 70px 0;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        padding: 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
}
