/*
Theme Name:  Hospeo
Theme URI:   https://hospeo.com
Author:      Hospeo
Author URI:  https://hospeo.com
Description: Thème Hospeo v2 — Conciergerie Airbnb Marrakech & Casablanca. Standalone, SEO-first, conversion-optimized. Host Grotesk · Gold #C19B4E · Black #0D0C0B.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
Text Domain: hospeo
Tags:        custom-logo, custom-menu, full-width-template, translation-ready, blog
*/

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --gold:        #C19B4E;
  --gold-dark:   #A6812E;
  --gold-light:  #E8D5A3;
  --gold-pale:   rgba(193,155,78,0.10);
  --black:       #0D0C0B;
  --charcoal:    #1A1916;
  --dark:        #2A2825;
  --muted:       #8A8580;
  --border:      #E2DDD6;
  --bg:          #F6F4F0;
  --bg-card:     #FFFFFF;
  --text:        #0D0C0B;
  --text-light:  #6B6762;
  --green:       #25D366;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --nav-h:       68px;
  --max-w:       1160px;
  --font:        'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.h-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.h-section { padding: 100px 0; position: relative; }
.h-section--dark { background: var(--black); }
.h-section--card { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.h-section--cream { background: #EDE9E1; }
.h-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.h-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.h-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.text-center { text-align: center; }
.dot-bg { background-image: radial-gradient(circle, #C8C2BA 1px, transparent 1px); background-size: 22px 22px; }
.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; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
.h-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.h-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.text-center .h-eyebrow { justify-content: center; }
.h-section--dark .h-eyebrow { color: var(--gold-light); }
.h-section--dark .h-eyebrow::before { background: var(--gold-light); }

.h-h1 { font-size: clamp(38px,5.5vw,68px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; color: var(--black); margin-bottom: 20px; }
.h-h2 { font-size: clamp(28px,4vw,46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--black); margin-bottom: 16px; }
.h-h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 10px; }
.h-h1 em, .h-h2 em, .h-h3 em { font-style: italic; font-weight: 600; color: var(--muted); }
.h-section--dark .h-h1, .h-section--dark .h-h2, .h-section--dark .h-h3 { color: white; }
.h-section--dark .h-h1 em, .h-section--dark .h-h2 em { color: rgba(255,255,255,0.3); }

.h-lead { font-size: 17px; color: var(--text-light); line-height: 1.65; max-width: 540px; margin-bottom: 40px; }
.text-center .h-lead { margin-left: auto; margin-right: auto; }
.h-section--dark .h-lead { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-weight: 700; border: none; border-radius: 999px; cursor: pointer; transition: all 0.18s var(--ease); text-decoration: none; white-space: nowrap; min-height: 48px; padding: 12px 22px; font-size: 14px; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); color: var(--black); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--black); background: rgba(0,0,0,0.04); color: var(--black); }
.btn-ghost { background: transparent; color: var(--muted); border: none; padding-left: 0; padding-right: 0; min-height: auto; font-weight: 500; }
.btn-ghost:hover { color: var(--black); }
.btn-wa { background: var(--green); color: white; }
.btn-wa:hover { background: #1EBE57; color: white; transform: translateY(-1px); }
.btn-lg { font-size: 15px; padding: 14px 28px; }
.btn-full { width: 100%; justify-content: center; }
.btn-dark { background: white; color: var(--black); }
.btn-dark:hover { background: var(--gold); color: var(--black); }

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
#h-topbar {
  background: var(--gold); padding: 10px 24px;
  text-align: center; font-size: 12.5px; font-weight: 600;
  color: var(--black); letter-spacing: 0.03em; position: relative; z-index: 1001;
}
#h-topbar a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#h-nav {
  position: sticky; top: 0; z-index: 900; height: var(--nav-h);
  background: rgba(246,244,240,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.h-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.h-nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.h-nav-logo a { display: flex; align-items: center; text-decoration: none; }
.h-logo-img { height: 38px; width: auto; max-width: 160px; object-fit: contain; }
.h-logo-text { font-size: 20px; font-weight: 800; color: var(--black); letter-spacing: -0.03em; }
.h-logo-text span { color: var(--gold); }
.h-nav-links { display: flex; align-items: center; gap: 2px; }
.h-nav-links a { font-size: 13.5px; font-weight: 500; color: var(--muted); padding: 8px 12px; border-radius: 999px; transition: all 0.18s; text-decoration: none; }
.h-nav-links a:hover, .h-nav-links a.active { color: var(--black); background: rgba(0,0,0,0.05); }
.h-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.h-hamburger { display: none; background: none; border: none; padding: 8px; border-radius: 8px; color: var(--black); transition: background 0.15s; }
.h-hamburger:hover { background: rgba(0,0,0,0.06); }
.admin-bar #h-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #h-nav { top: 46px; } }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
#h-mobile-nav {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
#h-mobile-nav.open { opacity: 1; pointer-events: all; }
.h-mobile-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px,86vw); background: var(--bg-card);
  padding: 24px; transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
#h-mobile-nav.open .h-mobile-drawer { transform: translateX(0); }
.h-mobile-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-shrink: 0; }
.h-mobile-close { background: none; border: none; padding: 6px; color: var(--muted); border-radius: 8px; }
.h-mobile-links { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.h-mobile-links a { font-size: 16px; font-weight: 600; color: var(--dark); padding: 12px 14px; border-radius: 10px; transition: all 0.15s; display: block; text-decoration: none; }
.h-mobile-links a:hover { background: var(--bg); color: var(--black); }
.h-mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#h-hero { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; padding: 80px 0 60px; }
.h-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.h-hero-proof { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.h-avatars { display: flex; }
.h-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--muted); margin-right: -8px; flex-shrink: 0; overflow: hidden; }
.h-avatar:last-child { margin-right: 0; }
.h-proof-text { font-size: 13px; color: var(--muted); font-weight: 500; }
.h-proof-text strong { color: var(--black); }
.h-stars { display: inline-flex; gap: 1px; }
.h-star { width: 13px; height: 13px; fill: var(--gold); }
.h-hero-keyword { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 28px; }
.h-hero-sub { font-size: 17px; color: var(--text-light); line-height: 1.65; max-width: 460px; margin-bottom: 10px; }
.h-hero-sub strong { color: var(--black); }
.h-hero-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.h-trust-item { font-size: 12px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.h-trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.h-hero-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.h-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.h-stat { background: var(--bg); padding: 18px 16px; text-align: center; }
.h-stat-num { font-size: 26px; font-weight: 800; color: var(--black); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.h-stat-num span { color: var(--gold); }
.h-stat-label { font-size: 10.5px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; line-height: 1.3; }

/* ═══════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════ */
.h-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; box-shadow: 0 2px 40px rgba(0,0,0,0.06); }
.h-form-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale); color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.h-form-title { font-size: 21px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; margin-bottom: 4px; }
.h-form-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.h-progress { display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.h-progress-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: background 0.2s; flex-shrink: 0; }
.h-progress-dot.active { background: var(--gold); }
.h-progress-label { font-size: 10.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-left: auto; }
.h-form-q { font-size: 14.5px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.h-form-opts { display: flex; flex-direction: column; gap: 7px; }
.h-form-opt { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; cursor: pointer; font-size: 13.5px; font-weight: 500; color: var(--dark); transition: all 0.15s; background: var(--bg-card); min-height: 46px; user-select: none; }
.h-form-opt:hover { border-color: var(--gold); background: var(--gold-pale); }
.h-form-opt.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--black); font-weight: 600; }
.h-form-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.h-opt-check { width: 18px; height: 18px; border: 1.5px solid var(--border); border-radius: 50%; flex-shrink: 0; transition: all 0.15s; display: flex; align-items: center; justify-content: center; }
.h-form-opt.selected .h-opt-check { background: var(--gold); border-color: var(--gold); }
.h-form-opts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.h-form-input { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--black); background: var(--bg-card); outline: none; transition: border-color 0.15s; min-height: 48px; display: block; margin-bottom: 8px; }
.h-form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(193,155,78,0.12); }
.h-form-input::placeholder { color: var(--muted); font-weight: 400; }
.h-form-input.error { border-color: #C0392B; }
.h-form-error { font-size: 12px; color: #C0392B; margin: -4px 0 8px; display: none; }
.h-form-error.show { display: block; }
.h-form-nav { display: flex; gap: 8px; margin-top: 16px; }
.h-btn-next { flex: 1; background: var(--gold); color: var(--black); font-family: var(--font); font-size: 14px; font-weight: 700; padding: 13px 20px; border-radius: 999px; border: none; cursor: pointer; transition: all 0.18s; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.h-btn-next:hover { background: var(--gold-dark); }
.h-btn-next:disabled { opacity: 0.55; cursor: not-allowed; }
.h-btn-back { background: transparent; color: var(--muted); font-family: var(--font); font-size: 13px; font-weight: 500; padding: 13px 14px; border-radius: 999px; border: 1.5px solid var(--border); cursor: pointer; transition: all 0.18s; min-height: 48px; }
.h-btn-back:hover { border-color: var(--dark); color: var(--black); }
.h-form-step { display: none; }
.h-form-step.active { display: block; }
.h-form-success { display: none; text-align: center; padding: 16px 0; }
.h-form-success.active { display: block; }
.h-success-icon { width: 52px; height: 52px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.h-form-privacy { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 11px; color: var(--muted); margin-top: 10px; }
.h-spinner { width: 15px; height: 15px; border: 2px solid rgba(0,0,0,0.15); border-top-color: var(--black); border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════
   PLATFORMS BAR
═══════════════════════════════════════ */
.h-platforms { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.h-platforms-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.h-platforms-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }
.h-platforms-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.h-platform-pill { display: flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 5px 13px; font-size: 12px; font-weight: 600; color: var(--dark); white-space: nowrap; }

/* ═══════════════════════════════════════
   WHY / FEATURES
═══════════════════════════════════════ */
.h-why-features { display: flex; flex-direction: column; gap: 24px; }
.h-why-feature { display: flex; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.h-why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.h-why-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.h-feature-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.h-feature-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 6px; }
.h-feature-link { font-size: 12px; color: var(--gold-dark); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.h-feature-link:hover { color: var(--gold); }
.h-why-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; }
.h-revenue-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 12px; }
.h-rev-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.h-rev-num { font-size: 28px; font-weight: 800; color: var(--black); letter-spacing: -0.04em; margin-bottom: 12px; }
.h-rev-bars { display: flex; align-items: flex-end; gap: 4px; height: 52px; }
.h-rev-bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--border); }
.h-rev-bar.gold { background: var(--gold); }
.h-rev-delta { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: #166534; background: #DCFCE7; padding: 3px 10px; border-radius: 999px; margin-top: 10px; }
.h-comm-tag { background: var(--gold); color: var(--black); border-radius: var(--radius-md); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.h-comm-pct { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; color: var(--black); }
.h-comm-text { font-size: 12px; font-weight: 600; text-align: right; line-height: 1.5; color: var(--black); }

/* ═══════════════════════════════════════
   HOW IT WORKS CARDS
═══════════════════════════════════════ */
.h-how-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.h-how-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; transition: border-color 0.2s, transform 0.2s var(--ease); }
.h-how-card:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.h-how-visual { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; margin-bottom: 20px; min-height: 150px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.h-how-num { position: absolute; top: 10px; right: 12px; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; }
.h-how-title { font-size: 17px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; margin-bottom: 8px; }
.h-how-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.h-checklist { display: flex; flex-direction: column; gap: 9px; }
.h-check-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--dark); }
.h-check-box { width: 18px; height: 18px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.h-task-board { display: flex; flex-direction: column; gap: 7px; }
.h-task-row { display: flex; align-items: center; justify-content: space-between; background: var(--bg-card); border: 1px solid var(--border); border-radius: 7px; padding: 8px 11px; }
.h-task-name { font-size: 11.5px; font-weight: 600; color: var(--black); margin-bottom: 1px; }
.h-task-date { font-size: 10.5px; color: var(--muted); }
.h-task-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.h-badge-done { background: var(--gold-pale); color: var(--gold-dark); }
.h-badge-progress { background: #DCFCE7; color: #166534; }
.h-badge-todo { background: #FEF3C7; color: #92400E; }

/* ═══════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════ */
.h-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.h-service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s var(--ease); }
.h-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s var(--ease); transform-origin: left; }
.h-service-card:hover::before { transform: scaleX(1); }
.h-service-card:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.h-service-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.h-service-title { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.h-service-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.h-service-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.h-service-tag { font-size: 11px; font-weight: 600; color: var(--gold-dark); background: var(--gold-pale); padding: 3px 9px; border-radius: 999px; }
.h-service-link { font-size: 12.5px; color: var(--gold-dark); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════
   PROCESS STEPS (dark)
═══════════════════════════════════════ */
.h-steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); overflow: hidden; }
.h-step-card { background: var(--charcoal); padding: 28px 22px; transition: background 0.2s; }
.h-step-card:hover { background: #1F1E1B; }
.h-step-num { font-size: 44px; font-weight: 800; color: rgba(255,255,255,0.05); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; user-select: none; }
.h-step-icon { width: 36px; height: 36px; background: rgba(193,155,78,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.h-step-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.h-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.h-pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.h-pricing-main { background: var(--black); border-radius: var(--radius-xl); padding: 40px; color: white; position: relative; overflow: hidden; }
.h-pricing-main::after { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(193,155,78,0.15), transparent 70%); pointer-events: none; }
.h-pricing-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(193,155,78,0.15); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 22px; }
.h-pricing-pct { font-size: clamp(60px,7vw,88px); font-weight: 800; color: white; letter-spacing: -0.05em; line-height: 0.9; margin-bottom: 6px; }
.h-pricing-pct span { color: var(--gold); }
.h-pricing-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.55; }
.h-pricing-features { margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.h-pricing-features li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.h-feat-check { width: 19px; height: 19px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.h-pricing-guarantee { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; }
.h-pricing-side { display: flex; flex-direction: column; gap: 14px; }
.h-pricing-faq { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; flex: 1; }
.h-pricing-faq h3 { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 18px; }
.h-faq-mini { display: flex; flex-direction: column; gap: 14px; }
.h-faq-mini-q { font-size: 13.5px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.h-faq-mini-a { font-size: 12.5px; color: var(--text-light); line-height: 1.6; }
.h-pricing-contact { background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.h-pricing-contact h4 { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 5px; }
.h-pricing-contact p { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.h-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.h-testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; transition: border-color 0.2s; }
.h-testi-card:hover { border-color: var(--gold-light); }
.h-testi-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.h-testi-quote { font-size: 14.5px; color: var(--dark); line-height: 1.65; margin-bottom: 18px; }
.h-testi-quote::before { content: '"'; color: var(--gold); font-weight: 800; font-size: 17px; }
.h-testi-quote::after { content: '"'; color: var(--gold); font-weight: 800; font-size: 17px; }
.h-testi-author { display: flex; align-items: center; gap: 11px; }
.h-testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--black); flex-shrink: 0; overflow: hidden; }
.h-testi-name { font-size: 13.5px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.h-testi-role { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════ */
.h-faq-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: flex-start; }
.h-faq-list { display: flex; flex-direction: column; }
.h-faq-item { border-bottom: 1px solid var(--border); }
.h-faq-btn { width: 100%; background: none; border: none; padding: 17px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; text-align: left; font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--black); transition: color 0.18s; min-height: 48px; }
.h-faq-btn:hover, .h-faq-btn[aria-expanded="true"] { color: var(--gold-dark); }
.h-faq-icon { width: 23px; height: 23px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--muted); transition: all 0.2s; font-weight: 700; }
.h-faq-btn[aria-expanded="true"] .h-faq-icon { background: var(--gold); border-color: var(--gold); color: var(--black); transform: rotate(45deg); }
.h-faq-body { font-size: 14px; color: var(--text-light); line-height: 1.7; padding-bottom: 17px; display: none; }
.h-faq-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.h-faq-body.open { display: block; }

/* ═══════════════════════════════════════
   ARTICLE CAROUSEL
═══════════════════════════════════════ */
.h-carousel-wrap { position: relative; overflow: hidden; }
.h-carousel-track { display: flex; gap: 16px; transition: transform 0.4s var(--ease); }
.h-article-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; flex: 0 0 calc(33.333% - 11px); min-width: 0; transition: border-color 0.2s, transform 0.2s; }
.h-article-card:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.h-article-img { width: 100%; height: 180px; object-fit: cover; background: var(--border); }
.h-article-img-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, var(--gold-pale), var(--border)); display: flex; align-items: center; justify-content: center; }
.h-article-body { padding: 20px; }
.h-article-cat { font-size: 10.5px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.h-article-title { font-size: 15.5px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 8px; }
.h-article-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.h-article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--muted); }
.h-article-read { font-size: 12px; font-weight: 600; color: var(--gold-dark); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.h-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; }
.h-carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg-card); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.18s; color: var(--dark); }
.h-carousel-btn:hover { border-color: var(--gold); background: var(--gold-pale); }
.h-carousel-dots { display: flex; gap: 6px; }
.h-carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s; }
.h-carousel-dot.active { background: var(--gold); }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.h-cta-banner { background: var(--black); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.h-cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.h-cta-banner::after { content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(193,155,78,0.18), transparent 70%); pointer-events: none; }
.h-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.h-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.h-city-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.h-city-link { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 9px 17px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.18s; min-height: 42px; }
.h-city-link:hover { background: rgba(255,255,255,0.1); color: white; }
.h-cta-note { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 16px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.h-footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; }
.h-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.h-footer-logo { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.03em; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.h-footer-logo span { color: var(--gold); }
.h-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 220px; }
.h-footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.h-footer-links { display: flex; flex-direction: column; gap: 9px; }
.h-footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; font-weight: 500; }
.h-footer-links a:hover { color: white; }
.h-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; flex-wrap: wrap; gap: 10px; }
.h-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.h-footer-legal { display: flex; gap: 18px; }
.h-footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.15s; }
.h-footer-legal a:hover { color: rgba(255,255,255,0.5); }
.h-footer-badges { display: flex; gap: 7px; }
.h-footer-badge { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 3px 9px; letter-spacing: 0.06em; }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.h-wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--green); color: white; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: all 0.2s; animation: h-pulse 2.5s ease-in-out infinite; }
.h-wa-float:hover { transform: scale(1.08); animation: none; color: white; }
@keyframes h-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); } }

/* ═══════════════════════════════════════
   FADE ANIMATIONS
═══════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.h-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.h-blog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.h-blog-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.h-cat-btn { font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 999px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all 0.18s; min-height: 40px; }
.h-cat-btn:hover, .h-cat-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.h-post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.h-post-card:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.h-post-thumb { width: 100%; height: 200px; object-fit: cover; }
.h-post-thumb-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--gold-pale) 0%, var(--border) 100%); display: flex; align-items: center; justify-content: center; }
.h-post-body { padding: 22px; }
.h-post-cat { font-size: 10.5px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.h-post-title { font-size: 17px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; }
.h-post-title a { color: var(--black); text-decoration: none; }
.h-post-title a:hover { color: var(--gold-dark); }
.h-post-excerpt { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.h-post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; }
.h-post-read { font-size: 12px; font-weight: 600; color: var(--gold-dark); text-decoration: none; }
.h-post-read:hover { color: var(--gold); }

/* Single post */
.h-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: flex-start; }
.h-single-content { min-width: 0; }
.h-single-content h2, .h-single-content h3 { font-weight: 800; color: var(--black); letter-spacing: -0.02em; margin: 32px 0 14px; }
.h-single-content h2 { font-size: 26px; }
.h-single-content h3 { font-size: 20px; }
.h-single-content p { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
.h-single-content ul, .h-single-content ol { margin: 0 0 20px 20px; }
.h-single-content li { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 6px; }
.h-single-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.h-single-content blockquote { border-left: 3px solid var(--gold); padding: 16px 20px; background: var(--gold-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.h-single-content blockquote p { margin: 0; font-style: italic; color: var(--dark); }
.h-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.h-sidebar-cta { background: var(--black); border-radius: var(--radius-lg); padding: 28px; color: white; margin-bottom: 20px; }
.h-sidebar-cta h3 { font-size: 18px; font-weight: 800; color: white; margin-bottom: 8px; }
.h-sidebar-cta p { font-size: 13.5px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.55; }
.h-related-posts { display: flex; flex-direction: column; gap: 14px; }
.h-related-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-card); transition: border-color 0.18s; }
.h-related-card:hover { border-color: var(--gold-light); }
.h-related-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--border); }
.h-related-title { font-size: 13px; font-weight: 700; color: var(--black); line-height: 1.35; }
.h-related-title a { color: var(--black); text-decoration: none; }
.h-related-cat { font-size: 10.5px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* Breadcrumb */
.h-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); flex-wrap: wrap; margin-bottom: 24px; }
.h-breadcrumb a { color: var(--muted); text-decoration: none; }
.h-breadcrumb a:hover { color: var(--black); }
.h-breadcrumb-sep { font-size: 12px; color: var(--border); }
.h-breadcrumb-current { color: var(--black); font-weight: 500; }

/* ═══════════════════════════════════════
   CITY PAGE SPECIFICS
═══════════════════════════════════════ */
.h-city-hero { background: var(--black); padding: 80px 0 60px; position: relative; overflow: hidden; }
.h-city-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 22px 22px; }
.h-city-hero::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(193,155,78,0.2), transparent 70%); }
.h-city-hero-inner { position: relative; z-index: 1; }
.h-city-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: var(--radius-md); overflow: hidden; margin-top: 40px; }
.h-city-stat { background: rgba(255,255,255,0.03); padding: 20px 16px; text-align: center; }
.h-city-stat-num { font-size: 28px; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.h-city-stat-num span { color: var(--gold); }
.h-city-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em; }
.h-quartiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.h-quartier-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; transition: border-color 0.2s; }
.h-quartier-card:hover { border-color: var(--gold-light); }
.h-quartier-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.h-quartier-type { font-size: 11.5px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.h-quartier-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.55; }
.h-city-schema { display: none; }

/* ═══════════════════════════════════════
   PAGE ABOUT / CONTACT
═══════════════════════════════════════ */
.h-about-hero { background: var(--black); padding: 80px 0; }
.h-team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; display: flex; gap: 28px; align-items: flex-start; }
.h-team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; color: var(--black); flex-shrink: 0; overflow: hidden; }
.h-team-name { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.h-team-role { font-size: 13px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.h-team-bio { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.h-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.h-value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.h-value-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.h-value-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.h-value-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.h-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.h-contact-info { display: flex; flex-direction: column; gap: 16px; }
.h-contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); }
.h-contact-icon { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.h-contact-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.h-contact-value { font-size: 14px; font-weight: 600; color: var(--black); }
.h-contact-value a { color: var(--black); text-decoration: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .h-hero-inner, .h-grid-2, .h-why-grid, .h-pricing-wrap, .h-single-layout, .h-faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .h-how-cards, .h-testi-grid, .h-blog-grid, .h-quartiers-grid, .h-values-grid { grid-template-columns: repeat(2,1fr); }
  .h-services-grid { grid-template-columns: 1fr; }
  .h-steps-grid { grid-template-columns: repeat(2,1fr); }
  .h-city-stats { grid-template-columns: repeat(2,1fr); }
  .h-footer-grid { grid-template-columns: 1fr 1fr; }
  .h-article-card { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .h-section { padding: 64px 0; }
  .h-container { padding: 0 16px; }
  .h-h1 { font-size: 34px; }
  .h-h2 { font-size: 26px; }
  .h-how-cards, .h-testi-grid, .h-blog-grid, .h-values-grid, .h-quartiers-grid, .h-contact-grid { grid-template-columns: 1fr; }
  .h-steps-grid { grid-template-columns: 1fr; }
  .h-city-stats { grid-template-columns: 1fr 1fr; }
  .h-footer-grid { grid-template-columns: 1fr; }
  .h-footer-bottom { flex-direction: column; align-items: flex-start; }
  .h-stats { grid-template-columns: 1fr; }
  .h-nav-links, .h-nav-desktop-cta { display: none !important; }
  .h-hamburger { display: flex !important; }
  .h-article-card { flex: 0 0 calc(100% - 0px); }
  .h-hero-inner { grid-template-columns: 1fr; }
  #h-hero { min-height: auto; padding: 48px 0 40px; }
}

@media (min-width: 769px) { .h-hamburger { display: none !important; } }
