/* ============================================================
   HITOP v2 – Design system
   Palette : Bleu marine profond + Blanc chaud + Bleu clair + Or
   Philosophie : confiance, chaleur, professionnalisme
   ============================================================ */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1B2E45;
  --navy-soft:  #243B55;
  --blue:       #1A6CF6;
  --blue-light: #4B8DF8;
  --blue-pale:  #EEF4FF;
  --gold:       #F0A500;
  --gold-dark:  #D4920A;
  --white:      #FFFFFF;
  --warm-white: #FAFBFD;
  --gray-50:    #F6F8FA;
  --gray-100:   #EDF0F4;
  --gray-300:   #C8D0DC;
  --gray-500:   #6B7A90;
  --gray-700:   #374151;
  --text:       #1C2B3A;
  --success:    #0EA66A;
  --warm:       #FFF8EE;

  --font-head: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(13,27,42,.07);
  --shadow:    0 6px 28px rgba(13,27,42,.10);
  --shadow-lg: 0 16px 56px rgba(13,27,42,.16);
  --tr:        .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Typographie ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.label-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-pale); padding: 5px 14px; border-radius: 20px;
  margin-bottom: 18px;
}
.label-pill::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

.eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section.bg-warm { background: var(--warm-white); }
.section.bg-gray { background: var(--gray-50); }
.section.bg-navy { background: var(--navy); }

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 0 auto; }
.section-title { color: var(--navy); margin-bottom: 14px; }
.lead { font-size: 1.08rem; color: var(--gray-500); max-width: 580px; line-height: 1.75; }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  transition: all var(--tr); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 18px rgba(240,165,0,.35);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,165,0,.45); }
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 18px rgba(26,108,246,.35);
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-pale); }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }

/* ── Navigation ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all var(--tr);
  background: transparent;
}
#nav.scrolled {
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 7px 13px; border-radius: 8px; transition: all var(--tr);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta a {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700; padding: 9px 20px !important; border-radius: var(--radius) !important;
}
.nav-cta a:hover { background: var(--gold-dark) !important; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a::after { content: " ▾"; font-size: .72em; opacity: .6; }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 250px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all var(--tr); z-index: 200; overflow: hidden;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; pointer-events: auto; transform: none; }
.drop-menu a {
  display: block; padding: 11px 20px; font-size: .87rem;
  color: var(--gray-700) !important; background: transparent !important;
  border-bottom: 1px solid var(--gray-100); transition: all var(--tr);
}
.drop-menu a:last-child { border-bottom: none; }
.drop-menu a:hover { background: var(--blue-pale) !important; color: var(--blue) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--tr); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--navy); padding: 96px 28px 40px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.nav-overlay.open { display: flex; }
.nav-overlay a { display: block; padding: 14px 16px; color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 500; border-radius: var(--radius); }
.nav-overlay a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-overlay h5 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 16px 16px 4px; }
.nav-overlay .cta-link { background: var(--gold); color: var(--navy) !important; font-weight: 700; text-align: center; margin-top: 16px; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 55%, #162D50 100%);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,108,246,.09) 1px, transparent 1px);
  background-size: 38px 38px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,108,246,.15) 0%, transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.1) 0%, transparent 70%);
  bottom: 80px; left: -80px; pointer-events: none;
}
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center; padding: 140px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold); background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.28); padding: 7px 15px; border-radius: 22px;
  margin-bottom: 26px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }

.hero-title { color: var(--white); margin-bottom: 22px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-intro {
  font-size: 1.12rem; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-reassurance {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.hero-reassurance svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* Card flottante côté droit */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  animation: float 5s ease-in-out infinite;
  max-width: 400px; margin: 0 auto;
}
@keyframes float { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } }
.hero-card-header {
  background: var(--gray-50); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dots span:nth-child(1) { background: #FF5F57; }
.hero-card-dots span:nth-child(2) { background: #FEBC2E; }
.hero-card-dots span:nth-child(3) { background: #28C840; }
.hero-card-title { font-size: .75rem; color: var(--gray-500); font-family: var(--font-body); }
.hero-card-body { padding: 22px; }

.accomp-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}
.accomp-step:last-child { border-bottom: none; padding-bottom: 0; }
.accomp-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
}
.accomp-num.done { background: var(--success); color: var(--white); }
.accomp-num.active { background: var(--blue); color: var(--white); }
.accomp-num.pending { background: var(--gray-100); color: var(--gray-500); }
.accomp-text { flex: 1; }
.accomp-text strong { font-size: .85rem; color: var(--navy); display: block; margin-bottom: 2px; }
.accomp-text span { font-size: .75rem; color: var(--gray-500); }

/* Stats hero */
.hero-stats {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.hero-stats .container { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--white); }
.hero-stat-num em { color: var(--gold); font-style: normal; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.48); margin-top: 2px; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── PROBLEM SECTION ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problem-cards { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.problem-card.highlight { background: var(--blue-pale); border-color: rgba(26,108,246,.18); }
.problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.problem-card h4 { font-size: .92rem; color: var(--navy); margin-bottom: 4px; }
.problem-card p { font-size: .83rem; color: var(--gray-500); line-height: 1.55; }

/* ── ACCOMPAGNEMENT ── */
.accomp-timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; position: relative; }
.accomp-timeline::before {
  content: ''; position: absolute; top: 36px; bottom: 36px; left: 27px;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--blue-light));
}
.accomp-row {
  display: flex; gap: 28px; align-items: flex-start; padding: 0 0 40px;
  position: relative; z-index: 1;
}
.accomp-row:last-child { padding-bottom: 0; }
.accomp-circle {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.accomp-info h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; margin-top: 12px; }
.accomp-info p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── PREUVES ── */
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.proof-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
  text-align: center;
}
.proof-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.proof-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.proof-num em { color: var(--gold); font-style: normal; }
.proof-label { font-size: .88rem; color: var(--gray-500); line-height: 1.5; }
.proof-icon { font-size: 2rem; margin-bottom: 14px; }

/* ── SERVICES (condensés) ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.srv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card.featured { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); border: none; }
.srv-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
}
.srv-icon svg { width: 24px; height: 24px; color: var(--blue); }
.srv-card.featured .srv-icon { background: rgba(255,255,255,.1); }
.srv-card.featured .srv-icon svg { color: var(--gold); }
.srv-card h3 { font-size: 1rem; color: var(--navy); }
.srv-card.featured h3 { color: var(--white); }
.srv-card p { font-size: .84rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.srv-card.featured p { color: rgba(255,255,255,.68); }
.srv-link { font-size: .82rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--tr); }
.srv-link:hover { gap: 8px; }
.srv-card.featured .srv-link { color: var(--gold); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100); padding: 36px 28px;
  transition: all var(--tr); position: relative;
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(26,108,246,.08), var(--shadow-lg);
  transform: scale(1.03);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px;
}
.price-name { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 6px; }
.price-amount strong { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.price-amount span { font-size: .88rem; color: var(--gray-500); }
.price-desc { font-size: .85rem; color: var(--gray-500); margin-bottom: 22px; line-height: 1.55; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; color: var(--gray-700); }
.price-check { color: var(--success); font-size: .95rem; flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; margin-top: 28px; font-size: .83rem; color: var(--gray-500); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.testi-stars { color: var(--gold); font-size: .95rem; }
.testi-quote { font-size: .9rem; color: var(--gray-700); line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.testi-author h4 { font-size: .86rem; color: var(--navy); margin-bottom: 1px; }
.testi-author span { font-size: .76rem; color: var(--gray-500); }

/* ── PORTFOLIO ── */
.pcard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pcard {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pcard-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-over {
  position: absolute; inset: 0; background: rgba(13,27,42,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--tr);
}
.pcard:hover .pcard-over { opacity: 1; }
.pcard-link {
  background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: .83rem; padding: 10px 22px; border-radius: var(--radius);
}
.pcard-body { padding: 18px 20px 20px; }
.pcard-cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.pcard-title { font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.pcard-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.55; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; }
.faq-item.open { border-color: var(--blue); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; text-align: left;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600; color: var(--navy); cursor: pointer;
}
.faq-btn:hover { background: var(--gray-50); }
.faq-ico { flex-shrink: 0; width: 22px; height: 22px; color: var(--blue); transition: transform var(--tr); }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-body-inner { padding: 0 24px 20px; font-size: .87rem; color: var(--gray-500); line-height: 1.72; }
.faq-item.open .faq-body { max-height: 400px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #0F52C4);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 14px; }
.contact-info > p { font-size: .9rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--blue); }
.ci h4 { font-size: .78rem; color: var(--gray-500); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .07em; }
.ci a, .ci p { font-size: .92rem; color: var(--navy); font-weight: 500; }
.ci a:hover { color: var(--blue); }

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--gray-700); }
.field input, .field select, .field textarea {
  border: 2px solid var(--gray-100); border-radius: var(--radius);
  padding: 12px 16px; font-family: var(--font-body); font-size: .9rem;
  color: var(--text); background: var(--white); outline: none; width: 100%;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,108,246,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-err { font-size: .74rem; color: #E53E3E; display: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; }
.consent-row input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.consent-row label { font-size: .78rem; color: var(--gray-500); line-height: 1.55; }
.consent-row a { color: var(--blue); text-decoration: underline; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: .87rem; display: none; margin-top: 8px; }
.form-msg.success { background: #D1FAE5; color: #065F46; display: block; }
.form-msg.error   { background: #FEE2E2; color: #991B1B; display: block; }
.form-hint { font-size: .74rem; color: var(--gray-500); text-align: center; margin-top: 6px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand p { font-size: .84rem; line-height: 1.75; margin-top: 16px; max-width: 270px; }
.footer-logo img { height: 38px; }
footer h4 { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
footer ul { display: flex; flex-direction: column; gap: 9px; }
footer ul a { font-size: .84rem; transition: color var(--tr); }
footer ul a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .77rem; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--white); }

/* ── Inner pages ── */
.page-hero {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  padding: 155px 0 80px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { color: var(--navy); margin: 44px 0 16px; font-size: 1.55rem; }
.prose h3 { color: var(--navy); margin: 30px 0 10px; font-size: 1.15rem; }
.prose p { color: var(--gray-700); line-height: 1.82; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { color: var(--gray-700); line-height: 1.72; margin-bottom: 8px; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose strong { color: var(--navy); }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Utilitaires ── */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ── 404 ── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  position: relative; overflow: hidden; padding: 40px 24px; text-align: center;
}
.error-code { font-family: var(--font-head); font-size: clamp(5rem,18vw,9rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.error-title { color: var(--white); margin-bottom: 14px; }
.error-desc { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .pcard-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-stats .container { gap: 28px; }
  .hero-stat-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pcard-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-body { padding-top: 110px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
