:root {
    --primary: #004aad;
    --primary-dark: #003a8c;
    --secondary: #10b981;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    background: white;
    padding: 8px 18px;
    border-radius: 50px; /* Estilo cápsula */
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
    margin-right: 30px;
    border: 1px solid #f1f5f9;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.footer-logo {
    box-shadow: none;
    background: white;
    padding: 12px 20px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
}

.logo-main {
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9), rgba(16, 185, 129, 0.4));
}

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

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-headline {
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-brand {
    font-weight: 900;
    font-size: 4.5rem;
    letter-spacing: -2px;
    color: white;
    text-transform: uppercase;
    display: inline-block;
}

.hero-sub-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    vertical-align: middle;
    margin-left: 10px;
    background: rgba(255,255,255,0.1);
    padding: 2px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-weight: 500;
    font-size: 2.8rem;
    display: block;
    margin-top: 10px;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

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

.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

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

.trust-line {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
    border-left: 3px solid var(--secondary);
    padding-left: 20px;
}

/* --- TRUST INDICATORS --- */
.hero-trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 40px 0;
    width: 100%;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.tc-icon {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.tc-data .hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: white !important;
    display: block;
    line-height: 1.2;
}

.tc-data p {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.tc-data small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .hero-trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 2.2rem; }
    .hero-brand { font-size: 3rem; }
    .hero-title { font-size: 1.6rem; }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--bg-light);
    padding: 40px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 5px;
}

/* --- SECTIONS COMMON --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.ab-text strong {
    display: block;
    font-size: 1.1rem;
}

.ab-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.about-feat {
    display: flex;
    gap: 20px;
}

.feat-icon {
    font-size: 24px;
    color: var(--primary);
}

.about-feat h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* --- VALUES --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.vc-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- SERVICES --- */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.sc-icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sc-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- PLATFORM CALLOUT --- */
.platform-callout {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.platform-callout:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.pc-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 74, 173, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px;
    flex-shrink: 0;
}

.pc-content {
    flex-grow: 1;
}

.pc-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-tag {
    font-size: 10px;
    background: var(--secondary);
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pc-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .platform-callout {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .pc-content h3 {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
}

/* --- FORM SECTION --- */
.form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #001f3f, #004aad);
    color: white;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.section-tag.light {
    color: var(--secondary);
}

.form-info h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.form-benefits {
    margin: 40px 0;
}

.fb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.fb-item i {
    color: var(--secondary);
}

.form-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-contact-mini a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.input-wrap input, 
.input-wrap select, 
.input-wrap textarea {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 15px 12px 45px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.input-wrap select option {
    background: #001f3f;
    color: white;
}

.input-wrap textarea {
    padding-top: 12px;
}

.textarea-wrap i {
    top: 20px;
    transform: none;
}

.input-wrap input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.form-privacy {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.field-error {
    color: #fda4af;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.hidden { display: none; }

/* --- FOOTER --- */
.footer {
    background: #0f172a;
    color: white;
}

.footer-top {
    padding: 80px 20px 60px; /* Asegurar padding lateral */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-brand .logo-main { color: white; }
.footer-brand p {
    color: #94a3b8;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links-col h4, 
.footer-contact-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links-col ul {
    list-style: none;
}

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

.footer-links-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    color: #94a3b8;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact-item a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
}

/* --- EXTRA ELEMENTS --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000; /* Aumentado para estar sobre el sticky-cta */
    text-decoration: none;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 12px 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 998;
}

.sticky-cta-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-headline { font-size: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 25px; }
    .footer-top { padding: 60px 25px; }
    .navbar { padding: 15px 0; background: white; }
    .nav-links { display: none; }
    .hero { height: auto; padding: 120px 0 80px; }
    .hero-headline { font-size: 2.5rem; }
    .hero-indicators { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .about-grid { grid-template-columns: 1fr; }
    .form-container { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .sticky-cta { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
    
    /* WhatsApp en mobile integrado visualmente */
    .wa-float {
        bottom: 12px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.success-msg {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.error-msg {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
}

/* --- COOKIE CONSENT --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 0;
    border-radius: 16px;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    animation: cookieSlideUp 0.5s ease forwards;
}

@keyframes cookieSlideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

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

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cookie-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 0.85rem;
}

.btn-cookie-accept {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: #0ea271;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner {
        bottom: 80px; /* Space for sticky mobile CTA */
    }
}
/* --- COVERAGE SECTION --- */
.coverage-section {
    padding: 100px 0;
    background: #f8fafc;
}

.coverage-directory {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-top: 40px;
}

.directory-legend {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
}

.state-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    transition: var(--transition);
    border-bottom: 1px solid #f1f5f9;
}

.state-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    border-color: var(--secondary);
}

.state-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.state-item strong {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 800;
    background: rgba(0, 74, 173, 0.05);
    padding: 2px 10px;
    border-radius: 6px;
    min-width: 45px;
    text-align: center;
}

.state-item:hover strong {
    background: var(--secondary);
    color: white;
}

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

@media (max-width: 768px) {
    .state-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-directory { padding: 20px; }
    .state-item span { font-size: 0.85rem; }
}

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

/* --- FAQ FLOATING WIDGET --- */
.faq-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
    font-family: var(--font-main);
}

.faq-toggle {
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.3);
    transition: var(--transition);
    position: relative;
}

.faq-toggle i {
    font-size: 1.4rem;
}

.faq-toggle:hover {
    transform: scale(1.05);
    background: var(--secondary);
}

.online-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    top: 5px;
    left: 5px;
    animation: pulse 2s infinite;
}

.faq-card {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.faq-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.faq-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.faq-header p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.faq-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.faq-body {
    padding: 10px;
    overflow-y: auto;
    flex: 1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 12px;
    background: #f8fafc;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.faq-q {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-q i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.faq-item.active .faq-q {
    background: white;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 15px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.faq-item.active .faq-a {
    max-height: 200px;
    padding: 0 15px 15px;
}

.faq-footer {
    padding: 15px;
    border-top: 1px solid #f1f5f9;
    background: white;
}

.faq-cta {
    padding: 12px !important;
    font-size: 0.9rem !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 480px) {
    .faq-card {
        width: calc(100vw - 40px);
        left: -10px;
        bottom: 70px;
    }
    .faq-toggle-text { display: none; }
    .faq-toggle { padding: 12px; border-radius: 50%; }
}
