/* =====================================================
   COMPOUND INSURE – MAIN STYLESHEET
   Color Palette:
     Navy:   #0a1628
     Blue:   #1a3a6c
     Bright: #1d6ff3
     Orange: #f97316
     White:  #ffffff
   ===================================================== */

:root {
    --navy: #0a1628;
    --blue-dark: #1a3a6c;
    --blue-mid: #1d4ed8;
    --blue-bright: #1d6ff3;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --green: #22c55e;
    --purple: #8b5cf6;
    --red: #ef4444;
    --white: #ffffff;
    --gray-50: #f8faff;
    --gray-100: #f1f5fd;
    --gray-200: #e2eaf8;
    --gray-600: #6b7280;
    --gray-800: #1f2937;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.2);
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-link { color: rgba(255,255,255,0.75); text-decoration: none; transition: var(--transition); }
.top-bar-link:hover { color: var(--orange); }
.top-bar-text { color: rgba(255,255,255,0.55); }
.badge-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ============ NAVBAR ============ */
.main-nav {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.main-nav.scrolled { padding: 10px 0; box-shadow: var(--shadow-lg); }
.brand-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
    box-shadow: 0 4px 12px rgba(29, 111, 243, 0.4);
}
.navbar-logo { height: 52px; width: auto; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.brand-accent { color: var(--orange); font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.brand-sub { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; margin-top: -3px; }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,0.08); }

.btn-orange-glow {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}
.btn-orange-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

/* ============ HERO ============ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2048 40%, #112566 100%);
    overflow: hidden;
    padding-top: 20px;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(29,111,243,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(249,115,22,0.08) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
    position: absolute; border-radius: 50%;
    background: rgba(29,111,243,0.06);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -150px; background: rgba(249,115,22,0.05); }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 25%; }

.min-vh-85 { min-height: 85vh; padding: 80px 0; }

.hero-badge {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.text-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 1.5rem;
}
.hero-features { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero-feature-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-feature-item i { color: var(--green); font-size: 1rem; }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
    text-decoration: none;
    display: inline-flex; align-items: center;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,0.55); color: #fff; }

.btn-hero-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex; align-items: center;
    backdrop-filter: blur(10px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-2px); }

.hero-trust { display: flex; align-items: center; gap: 10px; }
.trust-stars i { color: #fbbf24; font-size: 1rem; }
.trust-text { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* Hero car */
.hero-car-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-car-glow {
    position: absolute; inset: -30px;
    background: radial-gradient(ellipse, rgba(29,111,243,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-car-img {
    position: relative; z-index: 1;
    width: 100%; max-width: 580px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}
.hero-car-img:hover { transform: perspective(1000px) rotateY(0deg) translateY(-5px); }

.hero-badge-floating {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
}
.badge-top { top: 30px; left: -10px; }
.badge-bottom { bottom: 40px; right: 20px; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { display: block; }

/* ============ STATS BAR ============ */
.stats-bar { background: #fff; padding: 24px 0; box-shadow: 0 4px 20px rgba(10,22,40,0.06); }
.stat-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 20px;
    border-right: 1px solid var(--gray-200);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; margin-top: 4px; }

/* ============ SECTIONS ============ */
.py-6 { padding-top: 80px; padding-bottom: 80px; }
.bg-light-blue { background: var(--gray-50); }
.bg-navy { background: var(--navy) !important; }

.section-eyebrow {
    display: inline-block;
    color: var(--blue-bright);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============ FEATURE CARDS ============ */
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon-wrap { margin-bottom: 20px; }
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 6px 16px rgba(29,111,243,0.3);
}
.feature-icon.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); box-shadow: 0 6px 16px rgba(249,115,22,0.3); }
.feature-icon.bg-green  { background: linear-gradient(135deg, var(--green), #16a34a); box-shadow: 0 6px 16px rgba(34,197,94,0.3); }
.feature-icon.bg-purple { background: linear-gradient(135deg, var(--purple), #7c3aed); box-shadow: 0 6px 16px rgba(139,92,246,0.3); }
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-text  { color: var(--gray-600); font-size: 0.92rem; margin: 0; }

/* ============ COVER SECTION ============ */
.cover-list { display: flex; flex-direction: column; gap: 20px; }
.cover-item { display: flex; gap: 16px; align-items: flex-start; }
.cover-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.cover-item strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 2px; }
.cover-item p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }

/* Cars Grid */
.cars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.car-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.car-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover img { transform: scale(1.05); }
.car-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,22,40,0.85));
    color: #fff; padding: 20px 12px 10px;
    font-size: 0.82rem; font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
    border-color: transparent;
}
.step-card-featured .step-title,
.step-card-featured .step-text { color: #fff; }
.step-card-featured .step-text { color: rgba(255,255,255,0.75); }
.step-number {
    position: absolute; top: 20px; right: 24px;
    font-family: var(--font-display); font-size: 4rem; font-weight: 900;
    color: rgba(10,22,40,0.06); line-height: 1;
}
.step-card-featured .step-number { color: rgba(255,255,255,0.08); }
.step-icon-wrap { margin-bottom: 20px; }
.step-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 0 6px 16px rgba(29,111,243,0.3);
}
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-text  { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 16px; }
.step-link  { color: var(--blue-bright); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.step-link:hover { color: var(--orange); }
.step-badge {
    display: inline-flex; align-items: center;
    background: rgba(29,111,243,0.1);
    color: var(--blue-bright);
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
}
.step-badge.bg-success-soft { background: rgba(34,197,94,0.1); color: var(--green); }
.steps-connector {
    position: absolute; top: 60px; left: 37%; width: 26%;
    height: 2px; background: linear-gradient(90deg, var(--blue-bright), var(--orange));
    opacity: 0.3; z-index: 1;
}

/* ============ REQUIREMENTS BAR ============ */
.req-checks { display: flex; flex-wrap: wrap; gap: 10px; }
.req-check-item {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    padding: 8px 14px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 500;
}
.text-blue-light { color: rgba(147,197,253,0.85) !important; }
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-featured {
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    border-color: transparent;
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-featured .testimonial-author strong { color: #fff; }
.testimonial-featured .testimonial-author span { color: rgba(255,255,255,0.5); }
.testimonial-stars i { color: #fbbf24; font-size: 0.9rem; }
.testimonial-text { color: var(--gray-600); font-size: 0.95rem; margin: 12px 0 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 0.85rem;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.92rem; }
.testimonial-author span  { color: var(--gray-600); font-size: 0.82rem; }

/* ============ CTA ============ */
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 50%, #1a3a8c 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(29,111,243,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-title { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 1.5rem; }
.btn-cta-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,115,22,0.5); color: #fff; }
.btn-cta-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* CTA Badge */
.cta-badge-wrap { display: flex; justify-content: center; align-items: center; }
.cta-badge {
    width: 170px; height: 170px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 15px rgba(249,115,22,0.15), 0 0 0 30px rgba(249,115,22,0.08);
    animation: pulse-badge 2s infinite;
}
.cta-badge-inner { text-align: center; color: #fff; line-height: 1.2; }
.badge-top-text    { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; display: block; }
.badge-main-text   { font-size: 1.2rem; font-weight: 900; display: block; margin: 4px 0; }
.badge-bottom-text { font-size: 0.72rem; opacity: 0.8; display: block; }
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 15px rgba(249,115,22,0.15), 0 0 0 30px rgba(249,115,22,0.08); }
    50%       { box-shadow: 0 0 0 20px rgba(249,115,22,0.2),  0 0 0 40px rgba(249,115,22,0.1); }
}

/* ============ CONTACT CARDS ============ */
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card-featured {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: transparent;
}
.contact-card-featured h5,
.contact-card-featured p { color: #fff !important; }
.contact-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin: 0 auto 16px;
}
.whatsapp-icon { background: linear-gradient(135deg, #25d366, #16a34a) !important; }
.email-icon    { background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important; }
.contact-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card p  { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }
.contact-btn {
    display: inline-block;
    background: var(--gray-100);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.contact-btn:hover { background: var(--blue-bright); color: #fff; }
.contact-card-featured .contact-btn { background: rgba(255,255,255,0.2); color: #fff; }
.contact-card-featured .contact-btn:hover { background: rgba(255,255,255,0.35); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #16a34a) !important; color: #fff !important; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 62px; height: 62px;
    background: linear-gradient(135deg, #25d366, #16a34a);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.6); color: #fff; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(-10px); }

.whatsapp-pulse {
    position: absolute;
    width: 62px; height: 62px;
    background: rgba(37,211,102,0.4);
    border-radius: 50%;
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute;
    right: 72px; top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-tooltip::after {
    content: ''; position: absolute;
    left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--navy);
}

/* ============ FOOTER ============ */
.main-footer { background: var(--navy); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-contact li i { color: var(--blue-bright); width: 16px; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-contact span { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.social-icon {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover { background: var(--blue-bright); color: #fff; border-color: transparent; }
.social-icon.whatsapp:hover { background: #25d366; }

.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-disclaimer { max-width: 400px; text-align: right; }

/* ============ PAGE HERO SMALL ============ */
.page-hero-sm {
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero-sm::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(29,111,243,0.12) 0%, transparent 70%);
}
.page-hero-sm .container { position: relative; z-index: 1; }

/* ============ QUOTE FORM ============ */
.form-steps {
    display: flex; align-items: center; justify-content: center; gap: 0;
}
.form-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-dot {
    width: 36px; height: 36px;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    transition: var(--transition);
}
.form-step.active .step-dot { background: var(--blue-bright); color: #fff; box-shadow: 0 4px 12px rgba(29,111,243,0.4); }
.form-step span { font-size: 0.75rem; color: var(--gray-600); font-weight: 500; white-space: nowrap; }
.form-step.active span { color: var(--blue-bright); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--gray-200); min-width: 40px; margin: 0 8px; margin-bottom: 22px; }

.quote-section {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}
.quote-section-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 28px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.qs-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.qs-icon.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.qs-icon.bg-red    { background: linear-gradient(135deg, var(--red), #dc2626); }
.qs-icon.bg-purple { background: linear-gradient(135deg, var(--purple), #7c3aed); }
.quote-section-body { padding: 28px; }

/* Checkbox cards */
.check-box-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    position: relative;
}
.check-box-card.active { border-color: var(--blue-bright); background: rgba(29,111,243,0.04); }
.check-box-card:hover { border-color: var(--blue-bright); }
.check-box-input { position: absolute; opacity: 0; pointer-events: none; }
.check-box-label {
    display: flex; align-items: center; gap: 14px;
    cursor: pointer; margin: 0;
}
.check-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--blue-bright);
    transition: var(--transition);
}
.check-box-card.active .check-icon { background: var(--blue-bright); color: #fff; }
.check-box-label strong { font-size: 0.9rem; color: var(--navy); display: block; }
.check-box-label small  { color: var(--gray-600); font-size: 0.78rem; }

/* Form controls */
.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.93rem;
    transition: var(--transition);
    color: var(--navy);
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(29,111,243,0.1);
    outline: none;
}
.form-label { font-weight: 600; font-size: 0.87rem; color: var(--gray-800); margin-bottom: 6px; }
.form-label.required::after { content: ' *'; color: var(--red); }

/* Warning soft bg */
.bg-warning-soft { background: rgba(251,191,36,0.1); border-radius: var(--radius); }

/* ============ CONTACT PAGE ============ */
.contact-info-card {
    display: flex; align-items: center; gap: 16px;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-card h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.88rem; }
.contact-info-card a { color: var(--blue-bright); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.bg-green  { background: linear-gradient(135deg, #25d366, #16a34a) !important; }
.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important; }

.cta-box-sm {
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 24px;
}
.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

/* ============ REQUIREMENTS PAGE ============ */
.req-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}
.req-card-header {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 28px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.req-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.req-icon.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.req-icon.bg-red    { background: linear-gradient(135deg, var(--red), #dc2626); }
.req-icon.bg-warning-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.req-card-header h4 { margin: 0; font-size: 1.1rem; color: var(--navy); }
.req-card-body { padding: 24px 28px; }

.req-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid var(--gray-100);
}
.req-item:last-child { border-bottom: none; }
.req-item-success > i { color: var(--green); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.req-item > i { color: var(--blue-bright); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.req-item strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 4px; }
.req-item p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }

.info-need-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--gray-50);
    border-radius: 8px; padding: 10px 14px;
    font-size: 0.9rem; font-weight: 500; color: var(--navy);
}
.req-list { padding-left: 20px; color: var(--gray-600); font-size: 0.92rem; }
.req-list li { margin-bottom: 8px; }

.option-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9rem; color: var(--navy);
}
.option-label {
    display: inline-block;
    background: var(--blue-bright);
    color: #fff;
    padding: 2px 8px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 700;
    margin-bottom: 6px;
}

/* Sidebar */
.sidebar-cta {
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 28px;
}
.sidebar-cta h5 { color: #fff; font-weight: 700; }
.why-us-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}
.why-us-box h6 { font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; color: var(--gray-800); }
.why-list li i { color: var(--green); }

/* ============ FAQ ============ */
.faq-accordion .faq-item { margin-bottom: 12px; border: 1px solid var(--gray-200); border-radius: var(--radius) !important; overflow: hidden; }
.faq-accordion .accordion-button {
    font-weight: 600; font-size: 0.95rem; color: var(--navy);
    background: #fff;
    padding: 18px 24px;
    border-radius: 0 !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: var(--gray-50); color: var(--blue-bright); box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-body { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; padding: 20px 24px; }

/* ============ ABOUT PAGE ============ */
.value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    margin: 0 auto 20px;
}
.value-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p  { color: var(--gray-600); font-size: 0.92rem; }
.stat-showcase-item { display: flex; flex-direction: column; gap: 6px; }
.stat-big { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--orange); }

/* ============ SUCCESS PAGE ============ */
.success-icon-wrap { display: flex; justify-content: center; }
.success-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--green), #16a34a);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; color: #fff;
    box-shadow: 0 0 0 20px rgba(34,197,94,0.15), 0 0 0 40px rgba(34,197,94,0.07);
    animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes success-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.reference-badge {
    display: inline-block;
    background: var(--gray-100);
    border: 2px solid var(--blue-bright);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
}
.success-step {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--gray-200);
}
.success-step i { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.success-step p { margin: 0; font-size: 0.88rem; color: var(--gray-600); }
.btn-whatsapp-solid {
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: var(--transition);
}
.btn-whatsapp-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.4); color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .min-vh-85 { min-height: auto; padding: 60px 0; }
    .cta-box { padding: 36px; }
    .cta-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
}
@media (max-width: 767px) {
    .py-6 { padding-top: 50px; padding-bottom: 50px; }
    .hero-section { padding-top: 10px; }
    .form-steps { gap: 0; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
    .step-line { min-width: 20px; }
    .cars-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cta-box { padding: 28px 20px; }
    .form-card { padding: 24px; }
    .footer-disclaimer { text-align: left; }
    .badge-top { left: 0; top: 15px; }
    .stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .stats-bar .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .btn-hero-primary, .btn-hero-outline { padding: 12px 20px; font-size: 0.9rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
}


/* ============ LEGAL PAGES ============ */
.legal-toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 32px;
}
.legal-toc-title { font-weight: 700; color: var(--navy); margin-bottom: 14px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.legal-toc-list { margin: 0; padding-left: 20px; column-count: 2; column-gap: 32px; }
.legal-toc-list li { margin-bottom: 8px; }
.legal-toc-list a { color: var(--blue-bright); text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.legal-toc-list a:hover { color: var(--orange); text-decoration: underline; }

.legal-section { margin-bottom: 52px; padding-bottom: 40px; border-bottom: 1px solid var(--gray-200); }
.legal-section:last-child { border-bottom: none; }
.legal-section-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    margin-bottom: 18px;
}
.legal-section h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 16px; }
.legal-section p, .legal-section li { color: var(--gray-600); line-height: 1.8; }
.legal-section a { color: var(--blue-bright); }

.legal-list { padding-left: 20px; }
.legal-list li { margin-bottom: 12px; color: var(--gray-600); line-height: 1.75; }

.legal-highlight {
    background: rgba(29, 111, 243, 0.06);
    border-left: 3px solid var(--blue-bright);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    color: var(--gray-800);
    font-size: 0.92rem;
    margin-top: 16px;
}
.legal-highlight a { color: var(--blue-bright); }

.legal-data-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 22px;
    height: 100%;
}
.legal-data-card h6 { font-weight: 700; color: var(--navy); margin-bottom: 12px; font-size: 0.9rem; }
.legal-data-card ul { padding-left: 16px; margin: 0; }
.legal-data-card ul li { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 6px; }

.alert-info-custom {
    background: rgba(29, 111, 243, 0.07);
    border: 1px solid rgba(29, 111, 243, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--gray-800);
    font-size: 0.9rem;
}
.alert-warning-custom {
    background: rgba(249, 115, 22, 0.07);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--gray-800);
    font-size: 0.9rem;
}

/* Legal Basis Grid */
.legal-basis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.legal-basis-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; }
.legal-basis-item p { font-size: 0.88rem; color: var(--gray-600); margin: 8px 0 0; }
.basis-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.basis-contract { background: rgba(29, 111, 243, 0.12); color: var(--blue-bright); }
.basis-legal { background: rgba(139, 92, 246, 0.12); color: var(--purple); }
.basis-interest { background: rgba(249, 115, 22, 0.12); color: var(--orange); }
.basis-consent { background: rgba(34, 197, 94, 0.12); color: var(--green); }

/* Retention Table */
.retention-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 16px; }
.retention-row { display: flex; border-bottom: 1px solid var(--gray-200); }
.retention-row:last-child { border-bottom: none; }
.retention-type { flex: 0 0 220px; padding: 14px 20px; font-weight: 600; color: var(--navy); font-size: 0.9rem; background: var(--gray-50); }
.retention-period { flex: 1; padding: 14px 20px; color: var(--gray-600); font-size: 0.9rem; }

/* Rights Cards */
.rights-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.rights-card:hover { border-color: var(--blue-bright); background: rgba(29, 111, 243, 0.04); }
.rights-card i { font-size: 1.3rem; color: var(--blue-bright); margin-bottom: 10px; display: block; }
.rights-card h6 { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.9rem; }
.rights-card p { font-size: 0.86rem; color: var(--gray-600); margin: 0; }

/* Legal Contact Box */
.legal-contact-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 16px;
}
.legal-contact-box a { color: var(--blue-bright); }

/* Cookie Styles */
.cookie-type-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.cookie-type-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cookie-type-header h5 { margin: 0; color: var(--navy); font-size: 1.05rem; }
.cookie-badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-essential { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.cookie-analytics { background: rgba(29, 111, 243, 0.12); color: var(--blue-bright); }
.cookie-functional { background: rgba(249, 115, 22, 0.12); color: var(--orange); }
.cookie-table-wrap { overflow-x: auto; margin-top: 16px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cookie-table th { background: var(--navy); color: #fff; padding: 10px 16px; text-align: left; font-weight: 600; }
.cookie-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code { background: rgba(29, 111, 243, 0.08); color: var(--blue-bright); padding: 2px 7px; border-radius: 4px; font-size: 0.85rem; }

.browser-link-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 18px 12px;
    text-decoration: none; color: var(--navy);
    font-size: 0.85rem; font-weight: 600;
    transition: var(--transition); text-align: center;
}
.browser-link-card i { font-size: 1.4rem; color: var(--blue-bright); }
.browser-link-card:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-2px); }

/* Complaints Styles */
.complaints-intro-box {
    background: linear-gradient(135deg, rgba(29, 111, 243, 0.06), rgba(10, 22, 40, 0.03));
    border: 1px solid rgba(29, 111, 243, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; gap: 24px; align-items: flex-start;
}
.complaints-intro-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
}
.complaints-intro-box h5 { color: var(--navy); margin-bottom: 8px; }
.complaints-intro-box p { color: var(--gray-600); margin: 0; }

.complaint-contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.complaint-contact-card:hover { border-color: var(--blue-bright); transform: translateY(-3px); box-shadow: var(--shadow); }
.complaint-contact-icon {
    width: 48px; height: 48px; margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}
.complaint-contact-icon.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.complaint-contact-icon.bg-green { background: linear-gradient(135deg, var(--green), #15803d); }
.complaint-contact-card h6 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.complaint-contact-card a { color: var(--blue-bright); font-weight: 600; display: block; margin-bottom: 4px; }
.complaint-contact-card small { color: var(--gray-600); font-size: 0.82rem; }

/* Complaints Timeline */
.complaints-timeline { position: relative; padding-left: 0; margin-top: 32px; }
.timeline-step { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-step:not(:last-child)::after {
    content: ''; position: absolute;
    left: 21px; top: 52px; bottom: -8px;
    width: 2px; background: var(--gray-200);
}
.timeline-marker {
    flex-shrink: 0; width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem; z-index: 1;
}
.timeline-marker-alt { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.timeline-content { flex: 1; padding-top: 4px; }
.timeline-badge {
    display: inline-block; padding: 3px 12px;
    background: rgba(29, 111, 243, 0.1); color: var(--blue-bright);
    border-radius: 20px; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.timeline-badge-alt { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.timeline-content h5 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.timeline-content p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* FOS Box */
.fos-contact-box {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 20px;
}
.fos-logo-wrap { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: 1rem; }
.fos-logo-wrap i { font-size: 1.4rem; color: var(--blue-bright); }
.fos-detail { display: flex; align-items: flex-start; gap: 12px; }
.fos-detail i { margin-top: 3px; }
.fos-detail small { display: block; color: var(--gray-600); font-size: 0.8rem; }
.fos-detail strong { display: block; color: var(--navy); font-size: 0.88rem; }
.fos-detail a strong { color: var(--blue-bright); }

/* Legal CTA Box */
.legal-cta-box {
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: #fff;
}
.legal-cta-box h5 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.legal-cta-box p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }

@media (max-width: 768px) {
    .legal-toc-list { column-count: 1; }
    .legal-basis-grid { grid-template-columns: 1fr; }
    .retention-row { flex-direction: column; }
    .retention-type { flex: none; border-bottom: 1px solid var(--gray-200); }
    .complaints-intro-box { flex-direction: column; }
    .legal-cta-box { padding: 28px 20px; }
}