/* ============================================================
   ASIV Digital — feuille de style partagée (6 pages publiques)
   Charte : rouge #C8102E · bleu #003DA5 · mobile-first
   ============================================================ */

:root {
  --red: #C8102E;
  --red-dark: #A00D25;
  --blue: #003DA5;
  --blue-dark: #002D7A;
  --ink: #1A1A2E;
  --muted: #6B7280;
  --surface: #F5F7FA;
  --border: #E3E8F0;
  --white: #FFFFFF;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 26, 46, 0.10);
  --shadow-lg: 0 14px 40px rgba(0, 61, 165, 0.14);
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typographie ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

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

.lead { font-size: 1.125rem; color: var(--muted); max-width: 65ch; }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 12px; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid rgba(0, 61, 165, 0.4); outline-offset: 2px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.30);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 6px 18px rgba(200, 16, 46, 0.38); }

.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.btn-white:hover { background: #f3f4f6; color: var(--red-dark); }

.hero .btn-primary,
.page-hero .btn-primary,
.nav-cta .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.nav-cta .btn-primary:hover {
  background: #f3f4f6;
  color: var(--red-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover { background: var(--white); color: var(--blue); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 36px; width: auto; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 12px 20px 20px;
}
.site-nav.open { display: block; }

.site-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.site-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.site-nav a:hover { background: var(--surface); color: var(--blue); }
.site-nav a[aria-current="page"] { color: var(--red); }

.nav-cta { margin-top: 12px; }
.nav-cta .btn { width: 100%; }

@media (min-width: 900px) {
  .brand img { height: 48px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 20px;
  }
  .site-nav ul { flex-direction: row; gap: 4px; }
  .site-nav a { padding: 8px 12px; }
  .nav-cta { margin: 0; }
  .nav-cta .btn { width: auto; padding: 10px 20px; font-size: 0.9rem; }
}

/* ---------- Sections ---------- */

.section { padding: 48px 0; }
.section-alt { background: var(--surface); }
@media (min-width: 900px) { .section { padding: 80px 0; } }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #0B4FC0 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-split {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.18);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% -10%;
  height: 70%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewY(-4deg);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 18ch; }
.hero .lead { color: rgba(255, 255, 255, 0.85); margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

.page-hero {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 52px 0 56px;
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255, 255, 255, 0.85); margin-top: 14px; }
.page-hero .eyebrow { color: #FFB3BE; }

@media (min-width: 900px) {
  .hero { padding: 96px 0 110px; }
  .page-hero { padding: 72px 0 80px; }
}

/* ---------- Grilles de cartes ---------- */

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Cartes de packs ---------- */

.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pack-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pack-card.featured { border-top-color: var(--red); box-shadow: var(--shadow-md); }

.pack-badge {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pack-name { font-size: 1.15rem; margin-bottom: 6px; }
.pack-price { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; color: var(--ink); letter-spacing: -0.01em; }
.pack-price small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.pack-desc { color: var(--muted); font-size: 0.92rem; margin: 10px 0 18px; }

.pack-list { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.pack-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
}
.pack-list li:last-child { border-bottom: none; }
.pack-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none"><path d="M3.5 8.5l3 3 6-6.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/10px no-repeat,
    var(--blue);
}
.pack-card.featured .pack-list li::before { background-color: var(--red); }

/* ---------- Statistiques ---------- */

.stats { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
}
.stat-label { margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.stat-source { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--muted); opacity: 0.8; }

/* ---------- Tableau comparatif ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.92rem;
}
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare thead th {
  font-family: var(--font-display);
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.compare thead th.featured-col { background: var(--red); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: var(--surface); }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare .yes { color: var(--blue); font-weight: 700; }
.compare .no { color: var(--muted); }
.compare tfoot td { font-family: var(--font-display); font-weight: 700; font-size: 1rem; background: var(--surface); }

/* ---------- Timeline (incubation) ---------- */

.timeline { list-style: none; position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--red), var(--blue));
}
.timeline li { position: relative; padding: 0 0 34px 14px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--white);
  border: 5px solid var(--blue);
}
.timeline li.milestone-free::before { border-color: var(--red); }

.timeline-phase {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.timeline h3 { margin: 4px 0 8px; }
.timeline p { color: var(--muted); font-size: 0.95rem; max-width: 60ch; }
.timeline .price-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .timeline { padding-left: 40px; }
  .timeline li { padding-left: 20px; }
  .timeline li::before { left: -40px; }
  .timeline::before { left: 12px; }
}

/* ---------- Étapes (processus) ---------- */

.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.step.step-highlight .step-num { background: var(--red); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Équipe ---------- */

.team-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; max-width: 820px; margin: 0 auto; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: 50% 12%;
}
.team-body { padding: 22px 20px 26px; }
.team-body h3 { margin-bottom: 4px; }
.team-role { color: var(--red); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.team-body p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Valeurs / listes iconées ---------- */

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--red);
  margin-bottom: 14px;
}
.value-icon svg { width: 24px; height: 24px; }
.card:nth-child(even) .value-icon { color: var(--blue); }

/* ---------- Bandeau CTA ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  color: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(200, 16, 46, 0.28);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 55ch; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--white); color: var(--red); box-shadow: none; }
.cta-band .btn-primary:hover { background: #FDECEF; }
@media (min-width: 900px) { .cta-band { padding: 56px 48px; } }

/* ---------- Formulaire de contact ---------- */

.contact-layout { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.2fr 1fr; align-items: start; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.15);
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #EAF6EE;
  border: 1px solid #B9E2C6;
  color: #1E6B3A;
  font-weight: 500;
}
.form-success.visible { display: block; }

.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-list .ci {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--blue);
}
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.contact-list a { text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }
.contact-list small { color: var(--muted); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: #1EBE5D;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(30, 190, 93, 0.35);
  transition: background 0.18s ease;
}
.whatsapp-btn:hover { background: #17A550; }
.whatsapp-btn svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #C9CEDA;
  padding: 48px 0 28px;
  margin-top: 0;
}
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand img { height: 44px; width: auto; border-radius: 8px; background: var(--white); padding: 4px; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 40ch; }
.footer-slogan { color: var(--white); font-family: var(--font-display); font-weight: 600; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: grid; gap: 8px; font-size: 0.92rem; }
.footer-links a { color: #C9CEDA; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* ---------- Divers ---------- */

.badge-free {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
}

.note { font-size: 0.88rem; color: var(--muted); margin-top: 16px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Accueil enrichi ---------- */

.why-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--ink); }
.why-card p { font-size: 0.92rem; color: var(--muted); }
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.expertise-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.expertise-body { padding: 20px 20px 24px; flex: 1; }
.expertise-body h3 { margin-bottom: 8px; color: var(--blue); }
.expertise-body p { font-size: 0.92rem; color: var(--muted); }

.media-banner {
  display: grid;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .media-banner { grid-template-columns: 1.1fr 0.9fr; }
  .media-banner.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .media-banner.reverse .media-banner-img { order: 2; }
}
.media-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.media-banner-body { padding: 28px 24px; }
@media (min-width: 900px) { .media-banner-body { padding: 40px 36px; } }

.steps-strip {
  display: grid;
  gap: 16px;
  counter-reset: step;
}
@media (min-width: 700px) { .steps-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps-strip { grid-template-columns: repeat(4, 1fr); } }

.step-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 20px 56px;
  box-shadow: var(--shadow-sm);
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item h3 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.step-item p { font-size: 0.88rem; color: var(--muted); }

.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-item h3 { font-size: 1rem; color: var(--blue); margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; color: var(--muted); }

.trust-visual {
  max-width: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
}
.trust-visual img { aspect-ratio: 1; object-fit: cover; }

.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5); color: var(--white); }
.wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }

.portfolio-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.portfolio-frame-wrap {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.portfolio-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  background: var(--white);
}
.portfolio-body { padding: 22px 22px 26px; flex: 1; }
.portfolio-body h3 { margin-bottom: 6px; }
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.portfolio-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 61, 165, 0.08);
  color: var(--blue);
}
.portfolio-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

.map-embed {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.map-link {
  display: block;
  padding: 12px 14px;
  font-size: 0.88rem;
  background: var(--surface);
  text-align: center;
}
