/* ============================================================
   IMPRES — Imprimerie à Conakry
   Système de design : clair, moderne, accent bleu
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Couleurs */
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-tint: #eef3fe;
  --ink: #11151c;
  --ink-2: #3a4150;
  --muted: #6a7282;
  --line: #e6eaf1;
  --line-2: #d8deea;

  --blue: #1b5fe0;
  --blue-600: #1750c2;
  --blue-700: #103e9c;
  --blue-ink: #0a1f4d;
  --blue-deep: #0b1f47;

  --white: #ffffff;

  /* Typo */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Rayons & ombres */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16,28,54,.06), 0 1px 1px rgba(16,28,54,.04);
  --shadow: 0 10px 30px -12px rgba(16,28,54,.18);
  --shadow-lg: 0 30px 60px -20px rgba(16,28,54,.28);
  --shadow-blue: 0 18px 40px -14px rgba(27,95,224,.45);

  /* Layout */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint { background: var(--bg-soft); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin: 16px 0 14px;
}
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .005em;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--blue); font-size: 15px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue);
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 19px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.28), transparent 55%);
}
.brand b { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { color: var(--blue); background: var(--bg-tint); }
.nav-links a.active { color: var(--blue); background: var(--bg-tint); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px var(--pad) 22px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px); }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(27,95,224,.10), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(27,95,224,.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-tint);
  color: var(--blue-700);
  font-weight: 700; font-size: 13.5px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(27,95,224,.18); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 70px);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero h1 .rot { color: var(--blue); display: inline-block; }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust .ht { display: flex; align-items: center; gap: 11px; }
.hero-trust .ht-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-tint); color: var(--blue);
  display: grid; place-items: center;
}
.hero-trust .ht-ic svg { width: 20px; height: 20px; }
.hero-trust b { font-size: 14.5px; display: block; }
.hero-trust span { font-size: 13px; color: var(--muted); }

/* Hero visuel : composition de "papiers" imprimés */
.hero-visual { position: relative; height: clamp(360px, 42vw, 520px); }
.paper {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.paper .pp { position: absolute; }

/* Hero visuel — composition photo */
.hv-main {
  position: absolute; inset: 0 0 28px 26px;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hv-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-accent {
  position: absolute; left: -6px; bottom: 0; width: 46%;
  aspect-ratio: 4/3; border-radius: var(--r);
  overflow: hidden; border: 5px solid #fff;
  box-shadow: var(--shadow-lg); background: #fff;
}
.hv-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-badge {
  position: absolute; top: 14px; right: -4px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 11px;
}
.hv-badge .b-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-tint); color: var(--blue); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.hv-badge .b-score { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; }
.hv-badge .b-stars { color: #f5a524; font-size: 11px; letter-spacing: 1px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; }
}

/* Image générique */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.framed-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.framed-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   Bandes / cartouches catégories vedettes
   ============================================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.fcard {
  position: relative;
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--blue-deep);
  color: #fff;
  overflow: hidden;
  min-height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fcard:nth-child(2) { background: var(--blue); }
.fcard:nth-child(3) { background: #13294f; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fcard h4 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.fcard ul { list-style: none; margin: 0 0 14px; padding: 0; }
.fcard li { font-size: 13.5px; color: rgba(255,255,255,.78); }
.fcard .link-arrow { color: #fff; }
.fcard .fc-deco {
  position: absolute; top: -30px; right: -20px;
  width: 130px; height: 130px; border-radius: 18px;
  background: rgba(255,255,255,.07);
  transform: rotate(18deg);
}
@media (max-width: 760px) { .feature-strip { grid-template-columns: 1fr; } }

/* ============================================================
   Catégories produits (accueil + catalogue)
   ============================================================ */
.cat-block { margin-bottom: 44px; }
.cat-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.cat-block-head h3 { font-size: 23px; display: flex; align-items: center; gap: 11px; }
.cat-block-head h3 .num {
  font-size: 13px; font-weight: 700; color: var(--blue);
  background: var(--bg-tint); padding: 3px 9px; border-radius: var(--r-pill);
  font-family: var(--font-body);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.prod-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.prod-thumb {
  height: 150px;
  background: var(--bg-soft);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.prod-thumb .mini-paper {
  background: #fff; border: 1px solid var(--line-2); border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.prod-body { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-body h4 { font-size: 16.5px; }
.prod-body .meta { font-size: 13px; color: var(--muted); }
.prod-body .prod-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.prod-body .price { font-weight: 700; font-size: 13.5px; color: var(--blue); }

/* ============================================================
   "Pourquoi nous" — features
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-tint); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
}
.why-ic svg { width: 26px; height: 26px; }
.why-card h4 { font-size: 19px; margin-bottom: 9px; }
.why-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Stats
   ============================================================ */
.stats {
  background: var(--blue-deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 100% 0%, rgba(27,95,224,.45), transparent 60%);
}
.stat { position: relative; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.4vw, 52px); line-height: 1; }
.stat .num .plus { color: #6ea8ff; }
.stat .lbl { color: rgba(255,255,255,.72); font-size: 14.5px; margin-top: 8px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; } }

/* ============================================================
   Témoignages
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi .stars { color: #f5a524; letter-spacing: 2px; font-size: 16px; }
.testi p { color: var(--ink-2); font-size: 15.5px; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.testi .who b { display: block; font-size: 15px; }
.testi .who span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.rating-banner {
  display: inline-flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 10px 22px 10px 12px;
  box-shadow: var(--shadow-sm);
}
.rating-banner .badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-tint); color: var(--blue);
  display: grid; place-items: center; font-weight: 700;
}
.rating-banner .score { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.rating-banner .stars { color: #f5a524; font-size: 14px; letter-spacing: 1px; }
.rating-banner small { color: var(--muted); font-size: 13px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--blue);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 68px);
  color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 30px;
  background: rgba(255,255,255,.08); transform: rotate(22deg);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 18px; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; position: relative; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
}

/* ============================================================
   Page hero (sous-pages)
   ============================================================ */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 70% at 90% 0%, rgba(27,95,224,.08), transparent 60%);
}
.page-hero .inner { position: relative; max-width: 760px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin: 16px 0 16px; }
.page-hero p { font-size: 19px; color: var(--ink-2); max-width: 600px; }
.breadcrumb { font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--blue); }

/* ============================================================
   Studio — process / portfolio
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 18px; }
.step .step-n {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h4 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  position: relative; aspect-ratio: 4/3;
}
.pf .ph-placeholder { position: absolute; inset: 0; }
.pf .pf-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  padding: 6px 13px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; color: var(--ink);
}
@media (max-width: 800px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* Placeholder rayé image */
.ph-placeholder {
  background:
    repeating-linear-gradient(45deg, #e9eef7 0, #e9eef7 12px, #f4f7fc 12px, #f4f7fc 24px);
  display: grid; place-items: center;
  color: #9aa6bc; font-family: 'Space Grotesk', monospace; font-size: 12.5px;
  letter-spacing: .05em; text-align: center; padding: 12px;
}

/* ============================================================
   À propos — valeurs / timeline
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-grid p { color: var(--ink-2); margin-bottom: 18px; font-size: 17px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; background: #fff; }
.value-card .vk { font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 14px; margin-bottom: 12px; letter-spacing: .04em; }
.value-card h4 { font-size: 19px; margin-bottom: 9px; }
.value-card p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Devis & Contact — formulaires
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: #fff; transition: border-color .18s ease, box-shadow .18s 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 4px rgba(27,95,224,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 15px; border: 1.5px solid var(--line-2); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; cursor: pointer; user-select: none;
  transition: all .15s ease; background: #fff; color: var(--ink-2);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff;
}
.contact-item .ci-ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-tint); color: var(--blue); display: grid; place-items: center;
}
.contact-item .ci-ic svg { width: 21px; height: 21px; }
.contact-item .ci-k { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
.contact-item .ci-v { font-weight: 700; font-size: 16px; }
.contact-item a.ci-v:hover { color: var(--blue); }

.note-ok {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: #e8f6ee; color: #14794a; border: 1px solid #b7e3c9;
  border-radius: var(--r-sm); font-weight: 600; font-size: 15px;
}
.note-ok.show { display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: all .2s ease; font-size: 18px; color: var(--blue); }
.faq-item.open .faq-q .ico { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); font-size: 16px; }
.faq-a .faq-a-inner { padding-bottom: 22px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--blue-deep); color: #c8d3e8; padding: clamp(56px, 7vw, 80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #9fb0cf; font-size: 15px; max-width: 300px; }
.footer-soc { display: flex; gap: 10px; margin-top: 20px; }
.footer-soc a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff;
  transition: background .18s ease, transform .18s ease;
}
.footer-soc a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-soc svg { width: 19px; height: 19px; }
.footer-col h5 { color: #fff; font-family: var(--font-display); font-size: 16px; margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: #9fb0cf; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #8294b5;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
