/* ÉlagPro Theme — CSS éco-conçu, WCAG AAA */

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

/* === VARIABLES === */
:root {
  --green: #07785E;
  --green-hover: #065E4A;
  --green-light: #D9EDD9;
  --green-bg: #FAFAFA;
  --ink: #1A1A1A;
  --text: #4A4A4A;
  --text-light: #B5B5B5;
  --white: #FFFFFF;
  --gold: #FABF2E;
  --border: #E8E8E8;
  --radius: 16px;
  --radius-sm: 8px;
  --max-w: 1200px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* === BASE === */
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* === SKIP LINK === */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--green); color: var(--white); padding: 8px 16px; font-size: 14px; z-index: 100; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }

/* === NAV === */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max-w); margin: 0 auto; border-bottom: 1px solid #EDEDEB; }
.nav-logo img, .nav-logo .custom-logo { height: 80px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 48px; line-height: 1; }
.logo-icon-img { height: 48px; width: auto; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-reseau { font-size: 22px; font-weight: 800; color: #1B3A5C; letter-spacing: 2px; }
.logo-elagueurs { font-size: 22px; font-weight: 800; color: #07785E; letter-spacing: 2px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links li { list-style: none; }
.nav-links a { color: var(--text); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--green); }
/* Submenus */
.nav-links li { position: relative; }
.has-submenu > a::after { content: " ▾"; font-size: 16px; vertical-align: -1px; }
.submenu { display: none; position: absolute; top: 100%; left: -12px; background: var(--white); border: 1px solid #EDEDEB; border-radius: var(--radius-sm); padding: 8px 0; min-width: 200px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); z-index: 50; list-style: none; }
.submenu li { padding: 0; }
.submenu a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text); white-space: nowrap; min-height: 44px; line-height: 24px; }
.submenu a:hover { background: var(--green-bg); color: var(--green); }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }

.nav-btns { display: flex; gap: 10px; align-items: center; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 10px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: opacity 0.2s; text-decoration: none; text-align: center; }
.btn:hover { opacity: 0.9; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-white { background: var(--white); color: var(--green); }

/* === HERO CTA (image + boutons) === */
.hero { display: flex; align-items: center; gap: 48px; padding: 48px 24px; max-width: var(--max-w); margin: 0 auto; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: clamp(28px, 4.5vw, 52px); line-height: 1.15; color: var(--ink); margin-bottom: 8px; }
.hero-text h1 .accent { color: var(--green); }
.hero-text > p { font-size: 16px; margin: 16px 0; max-width: 560px; }
.hero-cta-row { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.hero-cta-row .btn { font-size: 16px; padding: 14px 32px; }
.hero-trust { display: flex; gap: 16px; margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--text); }
.hero-callout { display: flex; align-items: center; gap: 12px; border-left: 4px solid var(--green); border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 20px; font-size: 13px; }
.hero-callout strong { color: var(--green); }
.hero-img { flex-shrink: 0; width: 460px; height: 400px; border-radius: 20px; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* === HERO FORM (formulaire intégré) === */
.hero-form { flex-shrink: 0; width: 480px; }
.form-box, div.form-box { background: var(--white); border-radius: 20px !important; overflow: hidden !important; box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.form-box .form-header { border-radius: 0 !important; }
.form-header { background: var(--green); padding: 22px 28px 16px; text-align: center; border-radius: 0; }
.form-header h2, .post-content .form-header h2 { color: var(--white) !important; font-size: 18px; font-weight: 700; margin: 0 0 2px !important; }
.form-header p, .post-content .form-header p { color: #E0FBE8 !important; font-size: 13px; margin: 0 !important; }
.progress-bar { height: 3px; background: #E0E0E0; }
.progress-fill { height: 100%; background: var(--green); transition: width 0.4s ease; width: 0%; }
.step-info { padding: 14px 24px 0; font-size: 12px; color: var(--text-light); }
.step-info .step-num { font-weight: 600; color: var(--green); }
.form-body { padding: 14px 24px 24px; }
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.step h3 { font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.step .desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

/* === CHOICES (radio cards) === */
.choices { display: flex; flex-direction: column; gap: 8px; }
.choice { display: flex; align-items: center; gap: 10px; padding: 14px 16px; min-height: 48px; border: 2px solid var(--border); border-radius: 10px; cursor: pointer; font-size: 14px; color: var(--ink); font-weight: 500; transition: all 0.15s; background: var(--white); }
.choice:hover { border-color: var(--green); background: #F0FAF5; }
.choice.selected { border-color: var(--green); background: #EDF7F2; }
.choice input[type="radio"], .choice input[type="checkbox"] { display: none; }
.check-box { width: 18px; height: 18px; border: 2px solid #D0D0D0; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.choice-check.selected .check-box { border-color: var(--green); background: var(--green); }
.choice-check.selected .check-box::after { content: "✓"; color: var(--white); font-size: 12px; font-weight: 700; }
.choice .dot { width: 18px; height: 18px; border: 2px solid #D0D0D0; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.choice.selected .dot { border-color: var(--green); background: var(--green); }
.choice.selected .dot::after { content: ""; width: 7px; height: 7px; background: var(--white); border-radius: 50%; }

/* === FORM FIELDS === */
.f-field { margin-bottom: 14px; }
.f-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.f-field input, .f-field textarea, .f-field select { width: 100%; padding: 10px 14px; border: 2px solid var(--border); border-radius: 10px; font-size: 14px; font-family: var(--font); color: var(--ink); transition: border-color 0.15s; }
.f-field input:focus, .f-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(7,120,94,0.08); }
.f-field input::placeholder, .f-field textarea::placeholder { color: #CCC; }
.f-field input:-webkit-autofill, .f-field input:-webkit-autofill:hover, .f-field input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px #fff inset !important; -webkit-text-fill-color: var(--ink) !important; transition: background-color 5000s ease-in-out 0s; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-drop { border: 2px dashed #D0D0D0; border-radius: 10px; padding: 18px; text-align: center; cursor: pointer; transition: all 0.15s; color: var(--text-light); font-size: 13px; }
.photo-drop:hover { border-color: var(--green); background: #F0FAF5; }
.photo-drop input { display: none; }
.photo-drop.has-photos { padding: 10px; font-size: 12px; }
.photo-previews { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.photo-preview { position: relative; width: 90px; height: 90px; border-radius: 8px; overflow: hidden; border: 2px solid var(--border); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-remove { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 50%; font-size: 14px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.photo-preview-remove:hover { background: #C62828; }
.photo-preview-name { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.5); color: #fff; font-size: 9px; padding: 2px 4px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.pwd-toggle { position:absolute;right:10px;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;padding:4px;line-height:0; }
.pwd-toggle:hover svg { stroke: #4A4A4A; }
.f-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.f-check input { margin-top: 2px; accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.f-check label { font-size: 12px; color: var(--text); line-height: 1.4; cursor: pointer; }
.f-btns { display: flex; gap: 10px; margin-top: 18px; }
.f-btn { padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: var(--font); cursor: pointer; border: none; flex: 1; transition: all 0.15s; }
.f-btn-go { background: var(--green); color: var(--white); }
.f-btn-go:hover { background: var(--green-hover); }
.f-btn-go:disabled { opacity: 0.5; cursor: not-allowed; }
.f-btn-back { background: transparent; color: var(--text); border: 2px solid var(--border); flex: 0; padding: 12px 16px; }
.f-success { text-align: center; padding: 20px 0; }
.f-success .check { font-size: 40px; display: block; margin-bottom: 12px; }
.f-success h3 { color: var(--green); font-size: 20px; margin-bottom: 6px; }
.f-error { background: #FFF0F0; color: #C62828; padding: 8px 14px; border-radius: 8px; font-size: 12px; margin-bottom: 12px; display: none; }

/* === DEVIS PAGE (full-page form) === */
.devis-page { min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; background: var(--green-bg); padding: 40px 24px; }
.devis-page .form-box { max-width: 560px; width: 100%; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card-link { text-decoration: none; color: inherit; }
.service-card-link:hover .service-card { box-shadow: 0 8px 32px rgba(0,0,0,0.15); transform: translateY(-6px); }
.service-card { background: var(--green-bg); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.service-card img { width: 100%; height: 140px; object-fit: cover; }
.service-card-body { padding: 16px 20px; }
.service-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.service-card p { font-size: 14px; margin-bottom: 8px; }
.service-card .price { font-size: 13px; font-weight: 600; color: var(--green); }
.section-label { font-size: 13px; font-weight: 600; color: var(--green); text-transform: uppercase; text-align: center; margin-bottom: 8px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--ink); text-align: center; margin-bottom: 40px; }

/* === STEPS === */
.steps-bg { background: var(--green-bg); }
.steps-tag { display: inline-block; background: var(--green-light); color: var(--green); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 28px; }
.step-card .num { font-size: 48px; font-weight: 700; color: var(--green); line-height: 1; }
.step-card h3 { font-size: 20px; color: var(--ink); margin: 12px 0 8px; }
.step-card p { font-size: 15px; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--green-bg); border-radius: 14px; padding: 20px; }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.review-card blockquote { font-size: 14px; margin-bottom: 8px; font-style: normal; }
.review-card cite { font-size: 13px; font-weight: 600; color: var(--ink); font-style: normal; }

/* === CTA BANNER === */
.cta-banner { background: var(--green); border-radius: 24px; padding: 48px; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: #E0FBE8; font-size: 15px; margin-bottom: 20px; }

/* === BLOG === */
.post-list { max-width: var(--max-w); margin: 0 auto; padding: 40px 24px; }

/* Category filters */
.cat-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.cat-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 100px; font-size: 14px; font-weight: 500; color: var(--text); background: var(--green-bg); border: 1.5px solid transparent; text-decoration: none; transition: all 0.15s; }
.cat-chip:hover { border-color: var(--green); color: var(--green); background: #F0FAF5; }
.cat-chip-active { background: var(--green); color: var(--white); border-color: var(--green); }
.cat-chip-active:hover { background: var(--green-hover); color: var(--white); }
.cat-count { font-size: 11px; background: rgba(255,255,255,0.25); padding: 1px 6px; border-radius: 100px; font-weight: 600; }
.cat-chip:not(.cat-chip-active) .cat-count { background: rgba(0,0,0,0.06); }
.cat-desc { text-align: center; max-width: 600px; margin: -16px auto 32px; font-size: 15px; color: var(--text); }

/* Post items */
.post-item.has-thumb { display: flex; gap: 24px; align-items: flex-start; }
.post-thumb { flex-shrink: 0; width: 220px; height: 150px; border-radius: var(--radius); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-item-content { flex: 1; }
.post-item-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.post-item-meta .post-meta { margin-bottom: 0; }
.post-cat-tag { font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-bg); padding: 3px 10px; border-radius: 100px; text-decoration: none; }
.post-read-more { font-weight: 600; font-size: 14px; }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #EDEDEB; }
.blog-pagination a, .blog-pagination span { padding: 8px 14px; border-radius: 8px; font-size: 14px; text-decoration: none; }
.blog-pagination a { color: var(--green); background: var(--green-bg); }
.blog-pagination a:hover { background: #E0F5EC; }
.blog-pagination .current { background: var(--green); color: var(--white); }
.post-item { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #EDEDEB; }
.post-item:last-child { border: none; }
.post-item h2 { font-size: 28px; color: var(--ink); margin-bottom: 8px; }
.post-item h2 a { color: var(--ink); }
.post-item h2 a:hover { color: var(--green); }
.post-meta { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.post-content { max-width: 720px; }
.post-content p { margin-bottom: 16px; }
.post-content h2, .post-content h3 { color: var(--ink); margin: 24px 0 8px; }
.post-content ul, .post-content ol { margin: 12px 0 12px 24px; }
.post-content a { text-decoration: underline; }

/* === REGISTER CENTERED (V2) === */
.register-centered { background: var(--green-bg); padding: 48px 24px; }
.register-header { text-align: center; margin-bottom: 32px; }
.register-tag { font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
.register-title, .post-content .register-title { font-size: clamp(28px, 4vw, 40px) !important; font-weight: 700 !important; color: var(--ink) !important; line-height: 1.2 !important; margin: 0 0 12px !important; }
.register-sub { font-size: 15px; color: var(--text); }
.register-args { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 20px; font-size: 15px; color: var(--text); }
.register-packs-section { display: flex; gap: 20px; justify-content: center; margin-top: 40px; max-width: 960px; margin-left: auto; margin-right: auto; }
.register-pack { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 24px 20px; border-radius: 16px; background: var(--white); border: 1px solid #E8E8E8; flex: 1; max-width: 280px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.register-pack:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.register-pack-featured { background: var(--green); border-color: var(--green); }
.pack-badge { font-size: 11px; font-weight: 600; background: #FABF2E; color: #1A1A1A; padding: 3px 12px; border-radius: 100px; margin-bottom: 4px; }
.pack-name { font-size: 13px; color: var(--text); font-weight: 500; }
.register-pack-featured .pack-name { color: #CCF2D9; }
.pack-price { font-size: 36px; font-weight: 700; color: var(--ink); }
.register-pack-featured .pack-price { color: #fff; }
.pack-leads { font-size: 15px; font-weight: 500; color: var(--ink); }
.register-pack-featured .pack-leads { color: #fff; }
.pack-unit { font-size: 13px; color: var(--text); }
.register-pack-featured .pack-unit { color: #B0D6C4; }

@media (max-width: 600px) {
  .register-packs-section { flex-direction: column; align-items: center; }
  .register-pack { max-width: 100%; width: 100%; }
}

/* === PRICING TABLE === */
.pricing-table-wrapper { max-width: 800px; margin: 0 auto; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.pricing-table th { background: var(--green-bg); color: var(--text); font-size: 13px; font-weight: 600; text-transform: uppercase; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--green); }
.pricing-table td { padding: 14px 16px; border-bottom: 1px solid #EDEDEB; }
.pricing-table tr:hover td { background: #FAFAFA; }
.pricing-featured td { background: var(--green-bg) !important; }
@media (max-width: 600px) { .pricing-table { font-size: 13px; } .pricing-table th, .pricing-table td { padding: 10px 8px; } }

/* === DEPARTMENT CHIPS === */
.dept-search { width: 100%; padding: 10px 14px; border: 2px solid var(--border, #E8E8E8); border-radius: 10px; font-size: 14px; font-family: var(--font); }
.dept-search:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(7,120,94,0.08); }
.dept-chips-wrapper { max-height: 280px; overflow-y: auto; border: 2px solid var(--border, #E8E8E8); border-radius: 10px; padding: 12px; }
.dept-region { margin-bottom: 12px; }
.dept-region:last-child { margin-bottom: 0; }
.dept-region-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.dept-region-label { font-size: 12px; font-weight: 600; color: var(--text, #4A4A4A); text-transform: uppercase; letter-spacing: 0.5px; }
.dept-region-name { background: none; border: none; cursor: pointer; font-size: 12px; font-weight: 600; color: var(--text, #4A4A4A); text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font); padding: 4px 0; display: flex; align-items: center; gap: 4px; }
.dept-region-name:hover { color: var(--green, #07785E); }
.dept-region-arrow { font-size: 10px; width: 12px; display: inline-block; }
.dept-region-count { background: var(--green, #07785E); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 100px; font-weight: 600; text-transform: none; letter-spacing: 0; }
.dept-region-toggle { font-size: 11px; color: var(--green, #07785E); background: none; border: none; cursor: pointer; font-family: var(--font); font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.dept-region-toggle:hover { background: var(--green-bg, #FAFAFA); }
.dept-region-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.dept-chip { display: inline-block; padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 500; font-family: var(--font); color: var(--text, #4A4A4A); background: var(--green-bg, #FAFAFA); border: 1.5px solid transparent; cursor: pointer; transition: all 0.15s; }
.dept-chip:hover { border-color: var(--green, #07785E); background: #F0FAF5; }
.dept-chip.selected { background: var(--green, #07785E); color: #fff; border-color: var(--green, #07785E); }
.dept-chip:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.dept-region.hidden { display: none; }

/* === GUTENBERG BLOCKQUOTE (témoignages) === */
.post-content .wp-block-quote { border-left: 4px solid var(--green); padding: 12px 20px; margin: 16px 0; }
.post-content .wp-block-quote p { margin-bottom: 4px; }
.post-content .wp-block-quote cite { margin-top: 0; font-size: 14px; }

/* === GUTENBERG BUTTONS (harmoniser avec le thème) === */
.wp-block-button__link { background: var(--green) !important; color: var(--white) !important; border-radius: 100px !important; padding: 14px 32px !important; font-size: 16px !important; font-weight: 600 !important; font-family: var(--font) !important; text-decoration: none !important; transition: opacity 0.2s !important; display: inline-block !important; }
.wp-block-button__link:hover { opacity: 0.9 !important; }
.wp-block-button__link:focus-visible { outline: 2px solid var(--green) !important; outline-offset: 2px !important; }

/* === 404 === */
.page-404 { text-align: center; padding: 120px 24px; }
.page-404 h1 { font-size: 64px; color: var(--green); }
.page-404 p { font-size: 18px; margin: 16px 0 32px; }

/* === FOOTER === */
footer { background: var(--ink); color: var(--text-light); padding: 40px 0 24px; }
.footer-grid { display: flex; gap: 80px; margin-bottom: 24px; }
.footer-brand { max-width: 300px; }
.footer-brand h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #333; padding-top: 16px; font-size: 12px; color: #666; }

/* === BURGER BUTTON === */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 60; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* === MOBILE MENU OVERLAY === */
.mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 100; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.mobile-menu-close { background: none; border: none; font-size: 32px; color: var(--ink); cursor: pointer; padding: 0 4px; line-height: 1; }
.mobile-menu-nav { padding: 16px 24px; flex: 1; }
.mobile-menu-nav > ul { list-style: none; }
.mobile-menu-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu-nav > ul > li > a { display: block; padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.mobile-submenu-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--ink); background: none; border: none; cursor: pointer; font-family: var(--font); }
.mobile-submenu-toggle::after { content: "+"; font-size: 20px; color: var(--text); transition: transform 0.2s; }
.mobile-submenu-toggle[aria-expanded="true"]::after { content: "−"; }
.mobile-submenu { list-style: none; display: none; padding-bottom: 8px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { display: block; padding: 10px 0 10px 16px; font-size: 15px; color: var(--text); min-height: 44px; line-height: 24px; }
.mobile-submenu a:hover { color: var(--green); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-img { width: 100%; height: 240px; }
  .hero-form { width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-btns { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .post-item.has-thumb { flex-direction: column; }
  .post-thumb { width: 100%; height: 200px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; }
  .f-row { grid-template-columns: 1fr; }
}

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #CCC; padding: 16px 24px; z-index: 200; display: flex; align-items: center; justify-content: space-between; gap: 32px; font-size: 13px; }
.cookie-banner p { flex: 1; margin: 0; }
.cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; margin-left: auto; }
.cookie-accept { background: var(--green); color: var(--white); border: none; padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); }
.cookie-refuse { background: transparent; color: #CCC; border: 1px solid #555; padding: 8px 20px; border-radius: 100px; font-size: 13px; cursor: pointer; font-family: var(--font); }
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
@media (max-width: 600px) { .cookie-inner { flex-direction: column; gap: 14px; text-align: center; } .cookie-btns { justify-content: center; width: 100%; } }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
