/* DomestiFix - Blueprint Retro + Neon Accents Design */

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

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #FFF6EA;
    background: #0C2440;
    background-image: 
        linear-gradient(rgba(183, 255, 60, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 255, 60, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Focus styles */
*:focus {
    outline: 2px solid #B7FF3C;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #B7FF3C;
    outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', 'Arial Black', 'Helvetica Black', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #B7FF3C; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: #FFF6EA; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: #FFF6EA; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); color: #FFF6EA; }

p, li, span {
    line-height: 1.6;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 180ms ease;
}

a:hover {
    color: #B7FF3C;
    text-decoration: underline;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: 2px solid;
    border-radius: 14px;
    cursor: pointer;
    transition: all 180ms ease;
    white-space: nowrap;
}

.btn-primary {
    background: #B7FF3C;
    color: #0C2440;
    border-color: #B7FF3C;
}

.btn-primary:hover {
    background: #A8E635;
    border-color: #A8E635;
    color: #0C2440;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183, 255, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFF6EA;
    border-color: #FFF6EA;
}

.btn-secondary:hover {
    background: #FFF6EA;
    color: #0C2440;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-emergency {
    background: #FF6A5C;
    color: #FFF6EA;
    border-color: #FF6A5C;
}

.btn-emergency:hover {
    background: #E55A4C;
    border-color: #E55A4C;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 106, 92, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFF6EA;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1EAE52;
    border-color: #1EAE52;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(12, 36, 64, 0.95);
    padding: 8px 0;
    border-bottom: 1px dotted rgba(183, 255, 60, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.top-contact {
    color: #B7FF3C;
    font-weight: 600;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #25D366;
    font-weight: 600;
    transition: all 180ms ease;
}

.whatsapp-link:hover {
    color: #1EAE52;
    text-decoration: none;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 36, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(183, 255, 60, 0.1);
    transition: all 180ms ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #B7FF3C;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #B7FF3C;
    transition: all 180ms ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    transition: all 180ms ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #B7FF3C;
    transition: width 180ms ease;
}

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

.nav-legal {
    display: flex;
    gap: 16px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 246, 234, 0.2);
}

.nav-legal a {
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-legal a:hover,
.nav-legal a.active {
    opacity: 1;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(12, 36, 64, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        transform: translateY(-100vh);
        transition: transform 300ms ease;
        backdrop-filter: blur(10px);
        border-bottom: 2px solid rgba(183, 255, 60, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-legal {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 246, 234, 0.2);
        padding-top: 16px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(183, 255, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 106, 92, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-title {
    margin-bottom: 24px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: rgba(255, 246, 234, 0.9);
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    list-style: none;
    flex-wrap: wrap;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-features svg {
    color: #B7FF3C;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 24px;
    }
}

/* ===== KPIS BANNER ===== */
.kpis-banner {
    background: rgba(12, 36, 64, 0.8);
    padding: 48px 0;
    border-top: 2px solid rgba(183, 255, 60, 0.2);
    border-bottom: 2px solid rgba(183, 255, 60, 0.2);
}

.kpis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kpi-value {
    font-size: 3rem;
    font-weight: 900;
    color: #B7FF3C;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.kpi-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(255, 246, 234, 0.8);
}

/* ===== SECTIONS GENERAL ===== */
.section-title {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #B7FF3C;
    border-radius: 2px;
}

section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 246, 234, 0.7);
    border: 2px solid rgba(255, 246, 234, 0.2);
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 180ms ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: rgba(183, 255, 60, 0.1);
    color: #B7FF3C;
    border-color: #B7FF3C;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: rgba(255, 246, 234, 0.05);
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 180ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #B7FF3C;
    box-shadow: 0 16px 48px rgba(183, 255, 60, 0.1);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon svg {
    color: #B7FF3C;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #FFF6EA;
}

.service-card p {
    color: rgba(255, 246, 234, 0.8);
    margin-bottom: 24px;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-badge.urgent {
    background: #FF6A5C;
    color: #FFF6EA;
}

.service-badge.standard {
    background: rgba(255, 246, 234, 0.2);
    color: #FFF6EA;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-width: auto;
    }
}

/* ===== METHOD SECTION ===== */
.method {
    background: rgba(12, 36, 64, 0.3);
}

.method-timeline {
    display: flex;
    justify-content: center;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

.method-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.method-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -32px;
    width: 64px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #B7FF3C 0,
        #B7FF3C 8px,
        transparent 8px,
        transparent 16px
    );
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #B7FF3C;
    color: #0C2440;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Impact', 'Arial Black', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 4px solid #0C2440;
}

.step-content h3 {
    margin-bottom: 16px;
}

.step-content p {
    color: rgba(255, 246, 234, 0.8);
}

@media (max-width: 768px) {
    .method-timeline {
        flex-direction: column;
        gap: 48px;
    }
    
    .method-step:not(:last-child)::after {
        display: none;
    }
}

/* ===== RATES SECTION ===== */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.rate-card {
    background: rgba(255, 246, 234, 0.05);
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 180ms ease;
}

.rate-card.featured {
    border-color: #B7FF3C;
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(183, 255, 60, 0.2);
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: #B7FF3C;
}

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

.rate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #B7FF3C;
    color: #0C2440;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.rate-badge.approved::before {
    content: '✓ ';
    margin-right: 4px;
}

.rate-card h3 {
    margin: 24px 0 16px;
}

.rate-price {
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: rgba(255, 246, 234, 0.9);
}

.rate-price span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #B7FF3C;
    font-family: 'Impact', 'Arial Black', sans-serif;
}

.rate-card p {
    color: rgba(255, 246, 234, 0.8);
}

.rates-note {
    text-align: center;
    color: rgba(255, 246, 234, 0.7);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-card.featured {
        transform: none;
    }
    
    .rate-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ===== EMERGENCY SECTION ===== */
.emergency {
    background: linear-gradient(135deg, #B7FF3C 0%, #A8E635 100%);
    color: #0C2440;
}

.emergency-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency h2 {
    color: #0C2440;
    margin-bottom: 16px;
}

.emergency p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: rgba(12, 36, 64, 0.8);
}

.emergency-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid rgba(183, 255, 60, 0.2);
    transition: all 180ms ease;
}

.gallery-item:hover {
    border-color: #B7FF3C;
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 180ms ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: rgba(12, 36, 64, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    display: flex;
    gap: 24px;
    background: rgba(255, 246, 234, 0.05);
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 14px;
    padding: 32px;
    transition: all 180ms ease;
}

.review-card:hover {
    border-color: #B7FF3C;
    transform: translateY(-4px);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #B7FF3C;
    color: #0C2440;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.review-content p {
    margin-bottom: 16px;
    font-style: italic;
    font-size: 1.125rem;
    color: #FFF6EA;
}

.review-content cite {
    color: rgba(255, 246, 234, 0.7);
    font-style: normal;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COVERAGE SECTION ===== */
.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-cities span {
    padding: 12px 24px;
    background: rgba(183, 255, 60, 0.1);
    color: #B7FF3C;
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all 180ms ease;
}

.coverage-cities span:hover {
    border-color: #B7FF3C;
    transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: rgba(12, 36, 64, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFF6EA;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 180ms ease;
}

.faq-question:hover {
    color: #B7FF3C;
}

.faq-question svg {
    transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: rgba(255, 246, 234, 0.8);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 246, 234, 0.05);
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 14px;
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFF6EA;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(12, 36, 64, 0.5);
    border: 2px solid rgba(183, 255, 60, 0.2);
    border-radius: 8px;
    color: #FFF6EA;
    font-family: inherit;
    font-size: 1rem;
    transition: all 180ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B7FF3C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(183, 255, 60, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 246, 234, 0.5);
}

.error-message {
    color: #FF6A5C;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
}

.error-message.visible {
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF6A5C;
}

.form-privacy {
    font-size: 0.875rem;
    color: rgba(255, 246, 234, 0.7);
    margin-bottom: 32px;
}

.form-privacy a {
    color: #B7FF3C;
}

.form-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info {
    padding: 48px 0;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.info-item a {
    color: #B7FF3C;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .contact-info {
        padding: 0;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(12, 36, 64, 0.8);
    border-top: 2px solid rgba(183, 255, 60, 0.2);
    padding: 64px 0 24px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-brand span {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #B7FF3C;
    text-transform: uppercase;
}

.footer-about p {
    color: rgba(255, 246, 234, 0.8);
    margin-bottom: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    margin-bottom: 24px;
    font-size: 1rem;
    color: #B7FF3C;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 246, 234, 0.8);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: #B7FF3C;
}

.footer-column p {
    color: rgba(255, 246, 234, 0.8);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(183, 255, 60, 0.1);
    color: #B7FF3C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: all 180ms ease;
}

.footer-social a:hover {
    background: #B7FF3C;
    color: #0C2440;
    transform: scale(1.1);
}

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

.footer-bottom p {
    color: rgba(255, 246, 234, 0.6);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 36, 64, 0.95);
    border-top: 2px solid rgba(183, 255, 60, 0.2);
    padding: 24px 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 300ms ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    color: rgba(255, 246, 234, 0.9);
    font-size: 0.875rem;
}

.cookie-banner a {
    color: #B7FF3C;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #B7FF3C;
    color: #0C2440;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 300;
    transform: translateX(400px);
    transition: transform 300ms ease;
}

.toast.visible {
    transform: translateX(0);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 120px 0;
}

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

.legal-content h1 {
    margin-bottom: 32px;
    text-align: center;
}

.legal-content h2 {
    margin: 48px 0 24px;
    font-size: 1.5rem;
    color: #B7FF3C;
}

.legal-content p {
    margin-bottom: 24px;
    color: rgba(255, 246, 234, 0.9);
}

.legal-content ul {
    margin: 24px 0 24px 32px;
}

.legal-content li {
    margin-bottom: 12px;
    color: rgba(255, 246, 234, 0.9);
}

.legal-content strong {
    color: #FFF6EA;
}

.legal-intro {
    font-size: 1.125rem;
    color: #B7FF3C;
    background: rgba(183, 255, 60, 0.1);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #B7FF3C;
    margin-bottom: 48px;
}

.legal-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(183, 255, 60, 0.2);
    font-size: 0.875rem;
    color: rgba(255, 246, 234, 0.7);
}

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

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 600ms ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .kpi-value {
        font-size: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar,
    .header,
    .cookie-banner,
    .toast {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
    }
    
    .btn {
        border: 1px solid black;
        background: none;
        color: black;
    }
}