:root {
    --primary: #c8102e;
    --primary-dark: #9a0c23;
    --primary-light: #ffe5e9;
    --accent: #ff8c00;
    --accent-dark: #d97700;
    --text: #1a1a1a;
    --text-light: #555;
    --text-lighter: #888;
    --bg: #fff;
    --bg-soft: #f7f8fa;
    --bg-warm: #fff8f0;
    --border: #e5e7eb;
    --border-light: #f0f1f4;
    --success: #16a34a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 18px;
    --transition: all 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ===== TOPBAR ===== */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 16px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text);
}
.logo i { color: var(--primary); font-size: 1.4rem; }
.logo-dot { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link, .nav-dropdown > a {
    padding: 10px 14px;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-link:hover, .nav-dropdown > a:hover { background: var(--bg-soft); color: var(--primary); }

.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 50;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--text);
    border-radius: 6px;
    font-size: 0.93rem;
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-lighter);
    font-weight: 600;
    padding: 4px 12px 8px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 8px;
}
.mega-arr { min-width: 380px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mega-arr .dropdown-label { grid-column: 1 / -1; }
.mega-villes { min-width: 460px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mega-villes .dropdown-label { grid-column: 1 / -1; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
}
.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(255,140,0,0.35);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,140,0,0.45);
}
.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-cta-nav { white-space: nowrap; }

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px;
}
.mob-link, .mob-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}
.mob-link:hover, .mob-toggle:hover { background: var(--bg-soft); }
.mob-section { margin-bottom: 4px; }
.mob-toggle { justify-content: space-between; }
.mob-toggle .caret { transition: transform 0.2s; margin-left: auto; }
.mob-toggle.open .caret { transform: rotate(180deg); }
.mob-sub {
    display: none;
    padding-left: 32px;
    flex-direction: column;
    gap: 2px;
}
.mob-sub.open { display: flex; }
.mob-sub a {
    padding: 10px 12px;
    color: var(--text-light);
    font-size: 0.93rem;
    border-radius: 6px;
}
.mob-sub a:hover { background: var(--bg-soft); color: var(--primary); }
.btn-cta-mob { width: 100%; margin-top: 16px; padding: 16px; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #c8102e 0%, #9a0c23 100%);
    color: white;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.25) 0%, transparent 70%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.15rem; opacity: 0.95; margin-bottom: 28px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }

.hero-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-form iframe {
    border-radius: 12px;
    display: block;
    width: 100%;
    border: none;
    min-height: 700px;
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section h2, .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.section-subtitle { color: var(--text-light); font-size: 1.1rem; margin-bottom: 36px; max-width: 720px; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== CONTENT WITH FORM ===== */
.content-with-form {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 40px;
    align-items: start;
}
.content-main h2 { margin-top: 24px; font-size: 1.6rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { margin-bottom: 16px; color: var(--text-light); }
.content-main ul { padding-left: 20px; margin-bottom: 16px; color: var(--text-light); }
.content-main ul li { margin-bottom: 6px; }
.lead-text { font-size: 1.15rem; color: var(--text); font-weight: 500; }

.form-sticky {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.form-sticky-title {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: 14px 14px 0 0;
    margin: -8px -8px 0;
    text-align: center;
}
.form-sticky-title h3 { font-size: 1.25rem; margin-bottom: 4px; }
.form-sticky-title p { font-size: 0.9rem; opacity: 0.9; margin: 0; }
.form-sticky iframe { border-radius: 0 0 14px 14px; display: block; width: 100%; border: none; min-height: 800px; }

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step {
    background: #fff;
    padding: 28px 22px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 0.92rem; }

/* ===== INFO GRID & BOXES ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-box {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.info-box:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.info-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.info-box h3 { font-size: 1.1rem; margin-bottom: 8px; }
.info-box p { color: var(--text-light); font-size: 0.95rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--bg-soft); padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-lighter); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.7rem; }

/* ===== HERO COMPACT (intern pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 48px 0 40px;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 12px; font-weight: 800; line-height: 1.2; }
.page-hero p { font-size: 1.1rem; opacity: 0.95; max-width: 760px; }

/* ===== CITIES / CARDS GRID ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.city-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: var(--transition);
    font-weight: 600;
}
.city-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.city-card-name { font-size: 1rem; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; padding: 0; }
.checklist li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text);
}
.checklist li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 1.1rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-q {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-q i { color: var(--primary); font-size: 1rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 18px; color: var(--text-light); }
.faq-item.open .faq-a { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 64px 0;
    text-align: center;
}
.cta-section h2 { color: white; font-size: 2rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.85); padding: 56px 0 24px; margin-top: 64px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
    font-size: 0.92rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-logo { color: white !important; font-size: 1.05rem; margin-bottom: 12px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.footer-trust { font-size: 0.88rem; line-height: 2; color: rgba(255,255,255,0.7); }
.footer-trust i { color: var(--accent); width: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.6); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .content-with-form { grid-template-columns: 1fr; gap: 32px; }
    .form-sticky { position: static; max-width: 600px; margin: 0 auto; width: 100%; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .btn-cta-nav { display: none; }
    .burger { display: block; }
    .mobile-menu.open { display: block; }
    .hero { padding: 40px 0; }
    .hero h1 { font-size: 1.9rem; }
    .hero-sub { font-size: 1rem; }
    .section { padding: 48px 0; }
    .section h2, .section-title { font-size: 1.55rem; }
    .steps-grid, .info-grid, .cities-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .page-hero h1 { font-size: 1.6rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .hero-trust { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .topbar-inner { padding: 12px 16px; }
    .hero h1 { font-size: 1.6rem; }
}
