/* ============ RESET & BASE ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-y:scroll;scrollbar-gutter:stable}
body{font-family:'Poppins',sans-serif;color:#1a1a1a;background:#fafaf7;line-height:1.5;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,textarea,select{font-family:inherit}

/* ============ VARS ============ */
:root{
  --yellow:#f5c800;
  --yellow-soft:#fcefb5;
  --dark:#1a1a1a;
  --dark-card:#232323;
  --gray-line:#e4e4e4;
  --gray-line-2:#e5e3dd;
  --text-muted:#8b8b8b;
  --text-dim:#b3b3b3;
  --text-dim-2:#b5b5b5;
  --green:#4cad55;
  --green-soft:#5ae4aa;
  --red:#c40000;
  --bg:#fafaf7;
}

/* ============ LAYOUT ============ */
.container{max-width:1440px;margin:0 auto;padding:0 100px;position:relative}
.section{position:relative}

/* ============ HEADER ============ */
.header{position:sticky;top:0;z-index:100;background:#fff;border-bottom:1px solid #d3d3d3;height:80px}
.header-inner{max-width:1440px;margin:0 auto;height:100%;display:flex;align-items:center;justify-content:space-between;padding:0 100px}
.logo{height:30px;display:flex;align-items:center;gap:10px;font-weight:700;font-size:20px;color:#1a1a1a;letter-spacing:1px}
.logo img{height:30px}
.logo-mark{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;background:var(--yellow);border-radius:6px;color:#1a1a1a;font-weight:800;font-size:14px;font-family:'Poppins',sans-serif}
.nav{display:flex;align-items:center;gap:30px}
.nav > a{font-size:16px;color:#5e5e5e;transition:color .2s;white-space:nowrap}
.nav > a:hover,.nav > a.active{color:#1a1a1a}

/* ============ Dropdown navigation — clean, premium ============ */
.nav-dropdown{position:relative;display:inline-flex;align-items:center}
.nav-dropdown-toggle{
  font-size:16px;color:#5e5e5e;background:transparent;border:none;cursor:pointer;
  padding:0;display:inline-flex;align-items:center;gap:6px;
  font-family:inherit;transition:color .2s;
  white-space:nowrap;
}
.nav-dropdown-toggle:hover,.nav-dropdown.has-active .nav-dropdown-toggle{color:#1a1a1a}
.nav-dropdown-toggle svg{transition:transform .2s ease}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg{transform:rotate(180deg)}

.nav-dropdown-menu{
  position:absolute;top:100%;left:-20px;
  background:#fff;border:1px solid var(--gray-line);
  border-radius:16px;padding:8px;
  min-width:320px;
  box-shadow:0 24px 56px -16px rgba(16,24,40,.22), 0 6px 14px -6px rgba(16,24,40,.1);
  opacity:0;visibility:hidden;transform:translateY(12px);
  transition:opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index:300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;visibility:visible;transform:translateY(8px);
}
.nav-dropdown-menu::before{
  content:"";position:absolute;top:-10px;left:0;right:0;height:10px;
}

.nav-dd-item{
  display:block;
  padding:13px 18px;border-radius:10px;
  font-size:15px;color:#1a1a1a;text-decoration:none;
  font-weight:500;letter-spacing:-.1px;line-height:1.4;
  transition:background .15s ease, color .15s ease;
}
.nav-dd-item:hover{background:var(--bg)}
.nav-dd-item.active{background:var(--bg);font-weight:600}
.header-actions{display:flex;align-items:center;gap:10px}
.btn-phone{display:inline-flex;align-items:center;justify-content:center;height:34px;padding:0 18px;border:1px solid #c9c9c9;border-radius:39px;font-size:14px;color:#5e5e5e;transition:all .2s}
.btn-phone:hover{border-color:#1a1a1a;color:#1a1a1a}
.btn-quote{display:inline-flex;align-items:center;justify-content:center;height:34px;padding:0 22px;background:var(--yellow);border-radius:39px;font-size:14px;color:#1a1a1a;font-weight:500;transition:transform .15s,box-shadow .2s}
.btn-quote:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(245,200,0,.45)}

/* ============ HERO ============ */
.hero{position:relative;height:100vh;min-height:700px;overflow:hidden;background:#000;width:100%}
.hero-bg{position:absolute;top:0;left:0;width:110%;height:100%;object-fit:cover;object-position:left center;z-index:1}
.hero-placeholder{position:absolute;inset:0;width:100%;height:100%;background:linear-gradient(135deg,#2a2a2a 0%,#1a1a1a 60%,#0a0a0a 100%);display:flex;align-items:center;justify-content:center;z-index:1}
.hero-placeholder-label{color:#3a3a3a;font-size:14px;letter-spacing:2px;text-transform:uppercase}
.hero-overlay{position:absolute;top:0;left:0;width:100%;max-width:1200px;height:100%;background:linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.7) 45%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);z-index:2}
.hero-content{position:relative;z-index:3;max-width:1440px;margin:0 auto;padding:0 100px 90px;height:100%;display:flex;flex-direction:column;justify-content:center}
.hero h1{font-size:50px;font-weight:700;line-height:58px;color:#fff;max-width:680px;margin-bottom:28px}
.hero-sub{font-size:18px;line-height:28px;color:#fff;max-width:580px;margin-bottom:40px;font-weight:400;opacity:.9}
.hero-features{display:flex;flex-direction:column;gap:18px;max-width:680px;margin-bottom:40px}
.hero-feature{display:flex;align-items:center;gap:16px}
.hero-feature-icon{flex-shrink:0;width:42px;height:42px;border-radius:50%;background:rgba(245,200,0,.15);border:1px solid rgba(245,200,0,.5);display:flex;align-items:center;justify-content:center;color:var(--yellow);transition:background .2s ease, border-color .2s ease}
.hero-feature-text{color:#fff;font-size:16px;line-height:22px}
a.hero-feature{cursor:pointer;transition:transform .25s ease}
a.hero-feature:hover{transform:translateX(6px)}
a.hero-feature:hover .hero-feature-icon{background:rgba(245,200,0,.3);border-color:var(--yellow)}
a.hero-feature:hover .hero-feature-text{color:var(--yellow)}
.hero-ctas{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.hero-cta-secondary{color:#fff;font-size:16px;font-weight:500;text-decoration:underline;text-underline-offset:4px;transition:opacity .2s}
.hero-cta-secondary:hover{opacity:.7}

/* yellow strip — running marquee ticker */
.yellow-strip{position:absolute;left:0;right:0;bottom:0;height:50px;background:var(--yellow);display:flex;align-items:center;z-index:4;overflow:hidden;width:100%}
.marquee-track{display:flex;width:max-content;animation:marquee 40s linear infinite;will-change:transform}
.marquee-group{display:flex;align-items:center;gap:36px;padding-right:36px;flex-shrink:0}
.marquee-item{font-size:15px;color:#1a1a1a;font-weight:500;white-space:nowrap}
.marquee-dot{color:#1a1a1a;opacity:.45;font-size:8px;line-height:1}
.yellow-strip:hover .marquee-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion: reduce){.marquee-track{animation-duration:120s}}

/* ============ PAGE HERO (для внутрішніх сторінок — повна висота як на головній) ============ */
.page-hero{position:relative;height:100vh;min-height:700px;overflow:hidden;background:#1a1a1a;width:100%;color:#fff}
.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 30%,rgba(245,200,0,.1),transparent 55%),radial-gradient(circle at 80% 75%,rgba(245,200,0,.06),transparent 60%);pointer-events:none;z-index:1}
.page-hero.with-image{background:#000}
.page-hero.with-image::before{display:none}
.page-hero.with-image .hero-bg{width:100%;object-position:center center}
.page-hero.with-image .hero-bg.align-bottom{height:110%;top:auto;bottom:0;object-position:center bottom}
.page-hero .container{position:relative;z-index:3;max-width:1440px;margin:0 auto;padding:0 100px 90px;height:100%;display:flex;flex-direction:column;justify-content:center}
.breadcrumbs{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-dim-2);margin-bottom:24px}
.breadcrumbs a{color:var(--text-dim-2);transition:color .2s}
.breadcrumbs a:hover{color:#fff}
.breadcrumbs .sep{opacity:.5}
.breadcrumbs .current{color:var(--yellow)}
.page-hero h1{font-size:50px;font-weight:700;line-height:58px;color:#fff;max-width:680px;margin-bottom:28px}
.page-hero h1 .accent{color:var(--yellow);font-weight:500}
.page-hero-sub{font-size:18px;line-height:28px;color:#fff;max-width:580px;margin-bottom:40px;font-weight:400;opacity:.9}
.page-hero .hero-features{margin-bottom:40px}
.page-hero-ctas{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.page-hero-secondary{color:#fff;font-size:16px;font-weight:500;text-decoration:underline;text-underline-offset:4px;transition:opacity .2s}
.page-hero-secondary:hover{opacity:.7}

/* ============ IMAGE PLACEHOLDER ============ */
.img-placeholder{background:#f0efe9;border:1px dashed #c9c7be;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#9a988e;font-size:13px;letter-spacing:.5px;text-align:center;padding:24px;min-height:240px}
.img-placeholder.dark{background:#202020;border-color:#383838;color:#5a5a5a}
.img-placeholder.square{aspect-ratio:1/1;min-height:0}
.img-placeholder.wide{aspect-ratio:16/9;min-height:0}
.img-placeholder.tall{aspect-ratio:3/4;min-height:0}

/* ============ TRUST BADGES ============ */
.trust-section{padding:50px 0}
.trust-card{background:#fff;border:1px solid var(--gray-line);border-radius:10px;padding:36px 44px;display:grid;grid-template-columns:repeat(4,1fr);gap:36px;align-items:center}
.trust-item{display:flex;align-items:center;gap:14px}
.trust-check{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:var(--yellow);display:flex;align-items:center;justify-content:center;color:#1a1a1a;font-weight:700}
.trust-text{font-size:12px;line-height:19px;color:var(--text-muted)}
.trust-text strong{color:#5e5e5e;font-weight:500}

/* ============ SECTION HEADINGS ============ */
.h-section{font-size:36px;line-height:48px;color:#1a1a1a;font-weight:400;text-transform:capitalize;margin-bottom:48px;max-width:850px}
.h-section .accent{color:var(--yellow);font-weight:500}
.h-section.on-dark{color:#fff}

/* ============ PROBLEMS (dark) ============ */
.problems{background:#1a1a1a;padding:70px 0;position:relative;overflow:hidden}
.problems::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 30%,rgba(245,200,0,.06),transparent 50%),radial-gradient(circle at 80% 70%,rgba(245,200,0,.04),transparent 50%);pointer-events:none}
.problems .container{position:relative;z-index:2}
.problems-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.problem-card{background:var(--dark-card);border-radius:10px;padding:44px 36px;min-height:460px;display:flex;flex-direction:column;box-shadow:0 4px 4px rgba(0,0,0,.25);position:relative;overflow:hidden;transition:transform .3s ease, box-shadow .3s ease}
.problem-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(0,0,0,.4)}
.problem-card-illu{height:220px;display:flex;align-items:center;justify-content:center;margin-bottom:28px}
.problem-card-illu img{max-width:100%;max-height:100%;object-fit:contain;mix-blend-mode:lighten;filter:saturate(.8)}
.problem-card-illu .img-placeholder{width:100%;height:100%;min-height:0}
.problem-card hr{border:none;height:1px;background:#3c3c3c;margin:0 0 26px}
.problem-card h3{font-size:22px;line-height:24px;color:#fff;font-weight:500;text-transform:capitalize;margin-bottom:20px}
.problem-card p{font-size:16px;line-height:24px;color:var(--text-dim-2)}

/* ============ APPROACH (light) ============ */
.approach{padding:70px 0;background:var(--bg)}
.approach-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.approach-card{background:#fdfdfd;border:1px solid var(--gray-line);border-radius:10px;overflow:hidden;display:flex;flex-direction:column;transition:transform .3s, box-shadow .3s}
.approach-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.approach-illu{height:280px;display:flex;align-items:center;justify-content:center;padding:0;background:#fff;overflow:hidden}
.approach-illu img{width:100%;height:100%;object-fit:cover;display:block}
.approach-illu .img-placeholder{width:100%;height:100%;min-height:0}

/* ========== POUR QUI — icon-centric cards (одностайний стиль іконок) ========== */
.pour-qui-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;margin-top:20px;
}
.pour-qui-card{
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:18px;
  padding:36px 32px 32px;
  display:flex;flex-direction:column;
  gap:16px;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.pour-qui-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px -22px rgba(16,24,40,.15);
  border-color:var(--yellow);
}
.pour-qui-card .pq-icon{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  color:#1a1a1a;
  flex-shrink:0;
}
.pour-qui-card .pq-icon svg{
  width:32px;height:32px;
  stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
  fill:none;
  stroke:currentColor;
}
.pour-qui-card h3{
  font-size:20px;font-weight:600;color:#1a1a1a;
  margin:0;line-height:1.3;
}
.pour-qui-card p{
  font-size:15px;line-height:24px;
  color:var(--text-muted);margin:0;
}
.pour-qui-card .pq-link{
  display:inline-flex;align-items:center;gap:4px;
  margin-top:auto;padding-top:16px;
  color:#1a1a1a;font-size:14px;font-weight:600;
  text-decoration:none;letter-spacing:-.1px;
  transition:color .15s, transform .15s;
}
.pour-qui-card .pq-link:hover{color:#7a5e00;transform:translateX(3px)}
@media (max-width:880px){
  .pour-qui-grid{grid-template-columns:1fr;max-width:560px;margin-left:auto;margin-right:auto}
}

/* ========== Stat cards — icon + label + big value (same style as .pour-qui-card) ========== */
.stat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;margin-top:30px;
}
.stat-card{
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:18px;
  padding:36px 32px 32px;
  display:flex;flex-direction:column;
  gap:16px;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px -22px rgba(16,24,40,.15);
  border-color:var(--yellow);
}
.stat-card .stat-icon{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  color:#1a1a1a;
  flex-shrink:0;
}
.stat-card .stat-icon svg{
  width:32px;height:32px;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  fill:none;stroke:currentColor;
}
.stat-card .stat-label{
  font-size:11px;font-weight:700;letter-spacing:1.4px;
  text-transform:uppercase;color:var(--text-muted);
  margin:4px 0 -6px;
}
.stat-card h3{
  font-size:22px;font-weight:600;color:#1a1a1a;
  margin:0;line-height:1.3;
}
.stat-card p{
  font-size:15px;line-height:24px;color:var(--text-muted);margin:0;
}
@media (max-width:880px){
  .stat-grid{grid-template-columns:1fr;max-width:560px;margin-left:auto;margin-right:auto}
}

/* ========== Cards inline list (replaces <br/> chains in pour-qui-card) ========== */
.pour-qui-card .card-list{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:8px;
}
.pour-qui-card .card-list li{
  position:relative;padding-left:18px;
  font-size:15px;line-height:22px;color:var(--text-muted);
}
.pour-qui-card .card-list li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:6px;border-radius:50%;background:var(--yellow);
}

/* ========== Procédure obligatoire grid ========== */
.legal-h3{
  color:#1a1a1a;font-size:22px;font-weight:600;
  margin:50px 0 20px;letter-spacing:-.2px;
}
.proc-grid{
  display:grid;grid-template-columns:repeat(3, 1fr);
  gap:16px;margin-top:24px;
}
/* 4 items: use 2-col grid for better balance */
.proc-grid:has(.proc-card:nth-child(4):last-child){
  grid-template-columns:repeat(2, 1fr);
}
.proc-card{
  background:#fff;border:1px solid var(--gray-line);border-radius:14px;
  padding:24px 26px;display:flex;align-items:center;gap:18px;
  min-height:108px;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.proc-card:hover{
  transform:translateY(-2px);
  border-color:rgba(245,200,0,.5);
  box-shadow:0 12px 28px -12px rgba(16,24,40,.1);
}
.proc-body{flex:1}
@media (max-width:980px){
  .proc-grid,
  .proc-grid:has(.proc-card:nth-child(4):last-child){
    grid-template-columns:repeat(2, 1fr);
  }
}
@media (max-width:600px){
  .proc-grid,
  .proc-grid:has(.proc-card:nth-child(4):last-child){
    grid-template-columns:1fr;
  }
}
.proc-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px -10px rgba(16,24,40,.1)}
.proc-num{
  flex-shrink:0;width:36px;height:36px;border-radius:10px;
  background:var(--yellow);color:#1a1a1a;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;letter-spacing:.4px;
}
.proc-body{
  font-size:15px;line-height:22px;color:var(--text-muted);
}
.proc-body strong{color:#1a1a1a;font-weight:600}

/* ========== Comparison table (site-style) ========== */
.compare-wrap{margin-top:40px;overflow-x:auto;border-radius:16px;border:1px solid var(--gray-line);background:#fff}
.compare-table{width:100%;border-collapse:collapse;font-size:15.5px}
.compare-table thead th{
  text-align:left;padding:20px 22px;
  font-weight:600;color:#1a1a1a;
  background:var(--bg);
  border-bottom:1px solid var(--gray-line);
  letter-spacing:-.1px;
}
.compare-table thead th span{
  display:block;font-size:12px;color:var(--text-muted);
  font-weight:500;margin-top:3px;letter-spacing:.2px;
}
.compare-table tbody td{
  padding:16px 22px;border-bottom:1px solid var(--gray-line);
  color:var(--text-muted);line-height:22px;
}
.compare-table tbody tr:last-child td{border-bottom:0}
.compare-table tbody td:first-child{color:#1a1a1a;font-weight:500}
.compare-table td.strong{color:#1a1a1a;font-weight:600;background:rgba(245,200,0,.04)}

/* ========== Legal 2-col block (bureau Conformité CNIL) ========== */
.legal-2col{
  display:grid;grid-template-columns:repeat(2, 1fr);
  gap:24px;margin-top:24px;
}
.legal-col{
  background:#fff;border:1px solid var(--gray-line);border-radius:18px;
  padding:32px 32px 28px;
}
.legal-col-title{
  font-size:18px;font-weight:600;color:#1a1a1a;
  margin:0 0 22px;letter-spacing:-.1px;
  padding-bottom:14px;
  border-bottom:1px solid var(--gray-line);
}
.legal-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:14px;
}
.legal-list li{
  position:relative;padding-left:26px;
  font-size:15px;line-height:23px;color:var(--text-muted);
}
.legal-list li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:6px;border-radius:50%;background:var(--yellow);
}
/* Same dot markers in both columns */
.legal-list strong{color:#1a1a1a;font-weight:600}
@media (max-width:780px){
  .legal-2col{grid-template-columns:1fr}
}

/* ========== Stat-card highlight (used for ROI conclusion) ========== */
.stat-card.stat-card-highlight{
  background:linear-gradient(180deg, #fffcef 0%, #fff 100%);
  border-color:rgba(245,200,0,.55);
}
.stat-card.stat-card-highlight .stat-icon{background:var(--yellow);color:#1a1a1a}
.stat-card.stat-card-highlight h3{color:#1a1a1a}

/* ========== ROI table (magasin compare-table variant) ========== */
.compare-table.roi-table tbody tr.roi-row-final td{
  background:linear-gradient(180deg, #fffcef 0%, rgba(245,200,0,.12) 100%);
  font-weight:600;color:#1a1a1a;
  border-bottom:0;
}
.compare-table.roi-table tbody tr.roi-row-final td.strong{
  color:#1a1a1a;font-weight:700;font-size:17px;
}

/* ========== ROI grid (magasin) ========== */
.roi-intro{
  color:var(--text-muted);font-size:14px;font-weight:600;
  text-transform:uppercase;letter-spacing:1.2px;
  margin:0 0 26px;
}
.roi-grid{
  display:grid;grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;margin-top:8px;
}
.roi-card{
  background:#fff;border:1px solid var(--gray-line);border-radius:16px;
  padding:28px 26px;
  display:flex;flex-direction:column;gap:10px;
  transition:transform .25s, box-shadow .25s;
}
.roi-card:hover{transform:translateY(-3px);box-shadow:0 14px 30px -12px rgba(16,24,40,.1)}
.roi-card .roi-label{
  font-size:12px;font-weight:700;letter-spacing:1.2px;
  text-transform:uppercase;color:var(--text-muted);
}
.roi-card .roi-value{
  font-size:34px;font-weight:700;color:#1a1a1a;
  letter-spacing:-.8px;line-height:1.1;
}
.roi-card p{
  font-size:14px;line-height:22px;color:var(--text-muted);margin:0;
}
.roi-card-highlight{
  background:linear-gradient(180deg, #fffcef 0%, #fff 100%);
  border-color:rgba(245,200,0,.5);
}
.roi-card-highlight .roi-value{color:#1a1a1a}
.roi-card-highlight .roi-label{color:#1a1a1a}
.roi-footer{
  color:var(--text-muted);font-size:15px;line-height:24px;
  margin:30px 0 0;max-width:880px;
}

/* ========== Checkbox grid in forms ========== */
.checkbox-grid{
  display:grid;grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:8px 16px;margin-top:6px;
}
.checkbox-grid .cb{
  display:flex;align-items:center;gap:8px;
  font-size:14px;color:#1a1a1a;cursor:pointer;
  padding:8px 12px;border:1px solid var(--gray-line);border-radius:10px;
  background:#fff;transition:border-color .15s,background .15s;
}
.checkbox-grid .cb:hover{border-color:var(--yellow);background:#fffcef}
.checkbox-grid .cb input{margin:0;cursor:pointer}

/* ========== Paradox cards — big stat + accent + content ========== */
.paradox-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;margin-top:30px;
}
.paradox-card{
  background:#fff;
  border:1px solid var(--gray-line);
  border-left:5px solid var(--yellow);
  border-radius:0 18px 18px 0;
  padding:38px 34px 34px;
  display:flex;flex-direction:column;gap:6px;
  transition:transform .3s, box-shadow .3s;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
  position:relative;overflow:hidden;
}
.paradox-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px -22px rgba(16,24,40,.18);
}
.paradox-stat{
  font-size:64px;font-weight:800;color:#1a1a1a;
  line-height:1;letter-spacing:-2.5px;
  display:flex;align-items:baseline;gap:4px;
}
.paradox-stat .pct{
  font-size:36px;font-weight:700;color:var(--yellow);letter-spacing:-1px;
}
.paradox-stat .unit{
  font-size:24px;font-weight:600;color:var(--text-muted);
  text-transform:lowercase;letter-spacing:0;margin-left:6px;
}
.paradox-card .paradox-meta{
  font-size:11.5px;font-weight:700;letter-spacing:1.4px;
  text-transform:uppercase;color:var(--text-muted);
  margin:8px 0 14px;
}
.paradox-card h3{
  font-size:20px;font-weight:600;color:#1a1a1a;
  margin:0 0 4px;line-height:1.3;
}
.paradox-card p{
  font-size:15px;line-height:24px;color:var(--text-muted);margin:0;
}
@media (max-width:880px){
  .paradox-grid{grid-template-columns:1fr;max-width:560px;margin-left:auto;margin-right:auto}
}

/* ========== Process — 2 cards per row variant ========== */
.process-grid.cols-2{
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
@media (max-width:760px){
  .process-grid.cols-2{grid-template-columns:1fr}
}
.approach-body{background:#fff;padding:40px 36px;border-top:1px solid var(--gray-line);flex:1}
.approach-body h3{font-size:22px;line-height:24px;color:#1a1a1a;font-weight:500;text-transform:capitalize;margin-bottom:20px}
.approach-body p{font-size:16px;line-height:24px;color:var(--text-muted)}

/* ============ SOLUTIONS ============ */
.solutions{padding:70px 0}
.solutions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.solution-card{background:#fff;border:1px solid var(--gray-line);border-radius:10px;overflow:hidden;display:flex;flex-direction:column;transition:transform .3s, box-shadow .3s}
.solution-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.solution-img{height:282px;position:relative;overflow:hidden;background:#1a1a1a}
.solution-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.solution-img .img-placeholder{width:100%;height:100%;min-height:0;border-radius:0;border:none}
.solution-card:hover .solution-img img{transform:scale(1.05)}
.solution-img-overlay{position:absolute;left:24px;top:24px;display:flex;flex-direction:column;gap:6px;align-items:flex-start}
.solution-overlay-circle{width:45px;height:45px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;color:#1a1a1a;position:relative}
.solution-overlay-circle::before,.solution-overlay-circle::after{content:"";position:absolute;border:1px solid #fff;border-radius:50%}
.solution-overlay-circle::before{inset:-5px;opacity:.5}
.solution-overlay-circle::after{inset:-10px;opacity:.2}
.solution-body{padding:40px 36px;flex:1;display:flex;flex-direction:column;gap:20px}
.solution-body h3{font-size:20px;line-height:1.3;color:#1a1a1a;font-weight:500}
.solution-body p{font-size:16px;line-height:24px;color:var(--text-muted);flex:1}
.solution-link{display:inline-flex;align-items:center;gap:8px;font-size:16px;font-weight:500;color:#1a1a1a;text-decoration:underline;transition:gap .2s}
.solution-link:hover{gap:14px}
.solution-link svg{transition:transform .2s}
.solution-link:hover svg{transform:translateX(4px)}

/* ============ PROCESS ============ */
.process{padding:70px 0}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.process-card{background:#fff;border:1px solid var(--gray-line);border-radius:10px;padding:44px 32px;display:flex;flex-direction:column;position:relative;overflow:hidden;transition:transform .3s, box-shadow .3s}
.process-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.process-card::before{content:"";position:absolute;top:0;left:0;right:0;height:10px;background:var(--yellow);border-radius:10px 10px 0 0}
.process-icon{width:52px;height:52px;border-radius:50%;background:#fff8d6;display:flex;align-items:center;justify-content:center;color:#1a1a1a;margin-bottom:22px;border:1.5px solid var(--yellow);box-shadow:0 4px 14px rgba(245,200,0,.18)}
.process-icon svg{color:#1a1a1a}
.process-card-time{font-size:12px;color:var(--text-dim);margin-bottom:10px;font-weight:500;letter-spacing:.4px}
.process-card h3{font-size:22px;line-height:28px;color:#1a1a1a;font-weight:500;text-transform:capitalize;margin-bottom:14px}
.process-card p{font-size:16px;line-height:24px;color:var(--text-muted)}

/* ============ WHY AJAX (dark) ============ */
.why-ajax{background:#1a1a1a;padding:70px 0;color:#fff;position:relative;overflow:hidden}
.why-ajax::after{content:"";position:absolute;right:0;top:0;bottom:0;width:50%;background:url('../images/ajax-systems-showcase.webp') no-repeat 37% center/contain;pointer-events:none;z-index:1}
.why-ajax .container{position:relative;z-index:2}
.why-ajax .h-section,
.why-ajax > .container > p,
.why-ajax-grid{max-width:48%}
@media (max-width:980px){.why-ajax::after{display:none}.why-ajax .h-section,.why-ajax > .container > p,.why-ajax-grid{max-width:100%}}
.why-ajax-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px 70px;max-width:900px;margin-bottom:60px}
.why-feature{display:flex;align-items:flex-start;gap:20px}
.why-feature-icon{flex-shrink:0;width:44px;height:44px;border-radius:50%;background:rgba(245,200,0,.15);border:1px solid rgba(245,200,0,.4);display:flex;align-items:center;justify-content:center;color:var(--yellow)}
.why-feature h3{font-size:22px;line-height:24px;font-weight:500;margin-bottom:12px;text-transform:capitalize}
.why-feature h3 .accent{color:var(--yellow);font-weight:500}
.why-feature p{font-size:16px;line-height:24px;color:var(--text-muted)}

/* ============ WHY AJAX PRO (світлий, для Installation Ajax) ============ */
.why-ajax-pro{padding:70px 0;background:var(--bg)}
.why-ajax-pro-top{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:60px}
.why-ajax-pro-text h2{margin-bottom:24px}
.why-ajax-pro-text > p{font-size:18px;line-height:28px;color:var(--text-muted);max-width:560px}
.why-ajax-pro-image{display:flex;align-items:center;justify-content:center}
.why-ajax-pro-image img{width:100%;height:auto;object-fit:contain;display:block}
.why-ajax-pro-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.why-pro-card{background:#fff;border:1px solid var(--gray-line);border-radius:12px;padding:32px 30px;display:flex;align-items:flex-start;gap:20px;transition:transform .3s ease, box-shadow .3s ease}
.why-pro-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,0,0,.06)}
.why-pro-card-icon{flex-shrink:0;width:52px;height:52px;border-radius:50%;background:#fff8d6;border:1.5px solid var(--yellow);display:flex;align-items:center;justify-content:center;color:#1a1a1a;box-shadow:0 4px 14px rgba(245,200,0,.18)}
.why-pro-card-content h3{font-size:19px;line-height:26px;color:#1a1a1a;font-weight:500;margin-bottom:10px}
.why-pro-card-content h3 .accent{color:var(--yellow);font-weight:500}
.why-pro-card-content p{font-size:15px;line-height:24px;color:var(--text-muted)}

@media (max-width:980px){
  .why-ajax-pro-top{grid-template-columns:1fr;gap:30px}
  .why-ajax-pro-image{max-width:520px;margin:0 auto}
  .why-ajax-pro-cards{grid-template-columns:1fr;gap:18px}
  .why-pro-card{padding:26px 24px}
}

/* ============ COMPOSITE CTA BUTTONS ============ */
.btn-cta{display:inline-flex;align-items:center;gap:0;text-decoration:none;cursor:pointer;background:transparent;padding:0;border:none;line-height:1;font-family:inherit}
.btn-cta-text{display:inline-flex;align-items:center;height:60px;padding:0 36px;border-radius:999px;font-size:17px;font-weight:500;letter-spacing:.2px;white-space:nowrap;transition:border-radius .3s ease, filter .2s ease, box-shadow .25s ease}
.btn-cta-arrow{flex-shrink:0;width:60px;height:60px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;transition:border-radius .3s ease, transform .25s ease, filter .2s ease, box-shadow .25s ease}

.btn-cta:hover .btn-cta-text{border-top-right-radius:0;border-bottom-right-radius:0}
.btn-cta:hover .btn-cta-arrow{border-top-left-radius:0;border-bottom-left-radius:0;transform:translateX(0)}

.btn-cta-yellow .btn-cta-text,
.btn-cta-yellow .btn-cta-arrow{background:var(--yellow);color:#1a1a1a}
.btn-cta-yellow:hover .btn-cta-text{box-shadow:-8px 12px 28px rgba(245,200,0,.4);filter:brightness(1.03)}
.btn-cta-yellow:hover .btn-cta-arrow{box-shadow:8px 12px 28px rgba(245,200,0,.4);filter:brightness(1.03)}

.btn-cta-white .btn-cta-text,
.btn-cta-white .btn-cta-arrow{background:#fff;color:#1a1a1a}
.btn-cta-white:hover .btn-cta-text{box-shadow:-8px 10px 24px rgba(255,255,255,.15)}
.btn-cta-white:hover .btn-cta-arrow{box-shadow:8px 10px 24px rgba(255,255,255,.15)}

/* ============ FRANCE ============ */
.france{padding:70px 0}
.france-card{background:#fff;border:1px solid var(--gray-line);border-radius:14px;padding:70px 80px;display:grid;grid-template-columns:1fr 400px;gap:70px;align-items:center}
.france-card h2{margin-bottom:28px;max-width:680px}
.france-intro{font-size:18px;line-height:28px;color:var(--text-muted);margin-bottom:40px;max-width:620px}
.region-tags{display:flex;flex-wrap:wrap;gap:14px;max-width:680px}
.region-tag{display:inline-flex;align-items:center;height:38px;padding:0 22px;background:#fff;border:1px solid var(--yellow);border-radius:42px;font-size:16px;color:#1a1a1a;transition:all .2s;white-space:nowrap}
.region-tag:hover{background:var(--yellow);color:#1a1a1a}
.delays-list{list-style:none;padding:0;margin:24px 0 0;display:flex;flex-direction:column;gap:18px;max-width:680px}
.delays-list li{position:relative;padding-left:26px;font-size:16px;line-height:25px;color:var(--text-muted)}
.delays-list li::before{content:"";position:absolute;left:0;top:9px;width:10px;height:10px;border-radius:50%;background:var(--yellow);box-shadow:0 2px 6px rgba(245,200,0,.35)}
.delays-list li strong{color:#1a1a1a;font-weight:500}
.region-extra{margin-top:32px;font-size:16px;color:#1a1a1a;font-style:italic}
.france-map{display:flex;justify-content:center;align-items:center}
.france-map img{width:100%;max-width:380px;height:auto}
.france-map .img-placeholder{width:100%;max-width:380px;aspect-ratio:1/1;min-height:0}

/* ============ COMPARISON ============ */
.comparison{padding:70px 0;background:var(--bg)}
.comparison-table{background:#fbfbf8;border:1px solid var(--gray-line-2);border-radius:10px;overflow:hidden;max-width:1240px;margin:0 auto}
.comparison-row{display:grid;grid-template-columns:1fr 1fr 1fr;border-bottom:1px solid var(--gray-line-2)}
.comparison-row:last-child{border-bottom:none}
.comparison-row.head{background:#fff}
.comparison-row.head .cell{font-weight:500}
.comparison-row.head .cell.win{background:var(--yellow)}
.comparison-row .cell{padding:22px 32px;display:flex;align-items:center;gap:14px;font-size:16px;color:#1a1a1a}
.comparison-row:not(.head) .cell.win{background:var(--yellow-soft)}
.comparison-row .cell.lose{color:#989898}
.dot-check,.dot-x{flex-shrink:0;width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:12px;font-weight:700}
.dot-check{background:var(--green)}
.dot-x{background:#e4e4e4;color:#989898}
.cta-row{display:flex;justify-content:center;padding:60px 0 0}

/* ============ FAQ (dark) ============ */
.faq{background:#1a1a1a;padding:70px 0;color:#fff}
.faq-list{border-top:2px solid #373737}
.faq-item{border-bottom:2px solid #373737;padding:38px 0;cursor:pointer}
.faq-row{display:grid;grid-template-columns:60px 1fr 50px;align-items:center;gap:30px}
.faq-num{font-size:36px;color:var(--yellow);line-height:1}
.faq-q{font-size:22px;line-height:24px;color:#fff;font-weight:500;text-transform:capitalize}
.faq-toggle{font-size:36px;color:var(--yellow);text-align:center;line-height:1;transition:transform .3s}
.faq-item.open .faq-toggle{transform:rotate(45deg)}
.faq-a{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s ease}
.faq-item.open .faq-a{grid-template-rows:1fr}
.faq-a-inner{overflow:hidden;padding-left:90px;padding-right:50px}
.faq-a-inner p{font-size:16px;line-height:24px;color:var(--text-muted);padding-top:22px}

.faq-intro{margin-bottom:14px;color:var(--text-muted);font-size:16px;line-height:24px;max-width:850px;padding-left:90px}

/* ============ CONTACT ============ */
.contact{padding:70px 0;background:var(--bg)}
.contact-wrap{display:grid;grid-template-columns:1fr 627px;gap:80px;align-items:start}
.contact-left h2{font-size:36px;line-height:48px;font-weight:400;text-transform:capitalize;color:#1a1a1a;max-width:480px;margin-bottom:32px}
.contact-left h2 .accent{color:var(--yellow);font-weight:500}
.contact-left p{font-size:18px;line-height:28px;color:var(--text-muted);max-width:480px}
.contact-form{background:#fff;border:1px solid var(--gray-line);border-radius:10px;padding:56px 44px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:22px}
.form-row.single{grid-template-columns:1fr}
.form-field label{display:block;font-size:12px;color:var(--text-muted);margin-bottom:6px}
.form-field label .req{color:var(--red)}
.form-field input,.form-field select,.form-field textarea{width:100%;height:40px;padding:0 14px;background:#fff;border:1px solid var(--gray-line);border-radius:8px;font-size:14px;color:#1a1a1a;transition:border-color .2s, box-shadow .2s}
.form-field textarea{height:98px;padding:12px 14px;resize:vertical;font-family:inherit}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:var(--yellow);box-shadow:0 0 0 3px rgba(245,200,0,.15)}
.form-field input::placeholder,.form-field textarea::placeholder{color:#dbdbdb}
/* Select placeholder mimic — коли value пусте, показуємо як placeholder (сірим) */
.form-field select{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");background-repeat:no-repeat;background-position:right 14px center;padding-right:38px;color:#1a1a1a}
.form-field select.is-empty{color:#dbdbdb}
.form-field select option{color:#1a1a1a}

/* ============ CHIPS picker (jour/heure de rappel) ============ */
.chips-group{display:flex;flex-wrap:wrap;gap:8px;margin-top:2px}
.chip{
  appearance:none;-webkit-appearance:none;
  padding:9px 16px;
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:30px;
  font-family:inherit;font-size:13px;font-weight:500;
  color:#5e5e5e;
  cursor:pointer;
  transition:border-color .2s, background .2s, color .2s, transform .15s, box-shadow .2s;
  display:inline-flex;align-items:center;gap:7px;
  line-height:1;
}
.chip svg{flex-shrink:0;opacity:.6;transition:opacity .2s}
.chip:hover{border-color:rgba(245,200,0,.6);color:#1a1a1a}
.chip:hover svg{opacity:1}
.chip.is-active{
  background:var(--yellow);
  border-color:var(--yellow);
  color:#1a1a1a;
  font-weight:600;
  box-shadow:0 4px 14px rgba(245,200,0,.30);
}
.chip.is-active svg{opacity:1;color:#1a1a1a}
.chip:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(245,200,0,.30)}
.chip-sub{font-weight:500;color:#9a9a90;font-size:11.5px;margin-left:2px}
.chip.is-active .chip-sub{color:#5e4d00}
.chips-hint{font-size:11px;color:#9a9a90;margin-top:6px;font-style:italic}
.chips-group.chips-error{padding:8px;margin:-8px;border:1px solid rgba(196,0,0,.45);border-radius:14px;background:rgba(196,0,0,.04)}
.form-field label .opt{font-size:11px;color:#9a9a90;font-weight:400;margin-left:6px;text-transform:none;font-style:italic}
@media (max-width:560px){
  .chip{padding:9px 14px;font-size:12.5px}
}
.form-submit{width:100%;margin-top:12px}
.form-submit .btn-cta-text{flex:1;justify-content:center}
.form-note{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--text-muted);margin-top:16px}

/* ============ FOOTER ============ */
.footer{background:#fff;border-top:1px solid var(--gray-line);padding:80px 0 0}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr 1fr;gap:44px;padding-bottom:70px}
@media (max-width:1200px){
  .footer-grid{grid-template-columns:repeat(4,1fr);gap:32px}
  .footer-brand{grid-column:1 / -1;display:flex;align-items:center;gap:32px;flex-wrap:wrap;border-bottom:1px solid var(--gray-line);padding-bottom:28px}
  .footer-brand h4{margin-top:0}
}
.footer-brand h4{font-size:16px;color:#1a1a1a;font-weight:400;line-height:20px;margin-top:32px}
.footer-col h4{font-size:18px;font-weight:500;color:#000;margin-bottom:28px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:12px}
.footer-col li a{font-size:16px;color:var(--text-muted);transition:color .2s}
.footer-col li a:hover{color:#1a1a1a}
.footer-legal{border-top:1px solid var(--gray-line);padding:36px 0;font-size:12px;color:var(--text-muted);line-height:1.6}
.footer-legal-line{display:flex;justify-content:space-between;align-items:center;margin-top:16px;font-size:12px;color:var(--text-muted)}

/* ============ PROBLEMS 2x2 (4 картки) ============ */
.problems-grid.cols-2{grid-template-columns:repeat(2,1fr)}
.problems-grid.cols-2 .problem-card{height:auto;min-height:240px;padding:36px 34px}
.problems-grid.cols-2 .problem-card-illu{display:none}
.problems-grid.cols-2 .problem-card hr{margin:0 0 22px}
.problems-grid.cols-2 .problem-card-num{display:inline-block;color:var(--yellow);font-size:14px;font-weight:600;letter-spacing:1px;margin-bottom:10px;text-transform:uppercase}

/* Світлий варіант секції з пастками */
.problems.light{background:var(--bg)}
.problems.light::before{display:none}
.problems.light .problem-card{background:#fff;border:1px solid var(--gray-line);box-shadow:0 4px 14px rgba(0,0,0,.04)}
.problems.light .problem-card:hover{box-shadow:0 16px 40px rgba(0,0,0,.08)}
.problems.light .problem-card h3{color:#1a1a1a}
.problems.light .problem-card p{color:var(--text-muted)}
.problems.light .problem-card hr{background:var(--gray-line)}
.problems.light .problems-grid.cols-2 .problem-card-num{background:var(--yellow);color:#1a1a1a;padding:5px 14px;border-radius:20px;font-size:12px;font-weight:600;letter-spacing:.5px;width:fit-content;text-transform:uppercase;margin-bottom:14px}

@media (max-width:980px){
  .problems-grid.cols-2{grid-template-columns:1fr}
}

/* ============ EQUIPMENT LIST (обладнання у власність) ============ */
.equipment{padding:70px 0}
.equipment-intro{font-size:18px;line-height:28px;color:var(--text-muted);margin-bottom:48px;max-width:780px}
.equipment-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.equipment-item{display:flex;gap:22px;padding:30px;background:#fff;border:1px solid var(--gray-line);border-radius:10px;transition:transform .3s, box-shadow .3s}
.equipment-item:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,.06)}
.equipment-icon{flex-shrink:0;width:56px;height:56px;border-radius:50%;background:#fff8d6;border:1.5px solid var(--yellow);display:flex;align-items:center;justify-content:center;color:#1a1a1a}
.equipment-content h4{font-size:17px;line-height:22px;color:#1a1a1a;font-weight:500;margin-bottom:8px}
.equipment-content p{font-size:15px;line-height:22px;color:var(--text-muted)}
.equipment-note{margin-top:36px;font-size:14px;color:var(--text-muted);font-style:italic;text-align:center;max-width:780px;margin-left:auto;margin-right:auto}

@media (max-width:980px){
  .equipment-grid{grid-template-columns:1fr}
}

/* ============ LOI CHATEL BLOCK ============ */
.law-section{padding:70px 0;background:var(--bg)}
.law-intro{font-size:17px;line-height:28px;color:var(--text-muted);max-width:820px;margin-bottom:48px}
.law-points{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:36px}
.law-point{padding:32px 28px;background:#fff;border:1px solid var(--gray-line);border-radius:10px;display:flex;flex-direction:column;gap:16px;transition:transform .3s, box-shadow .3s}
.law-point:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,.06)}
.law-point-num{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:var(--yellow);color:#1a1a1a;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:15px}
.law-point h4{font-size:17px;font-weight:500;color:#1a1a1a;line-height:24px;margin-bottom:8px}
.law-point p{font-size:15px;line-height:22px;color:var(--text-muted)}
.law-end{padding:28px 32px;background:#fff;border-left:4px solid var(--yellow);border-radius:6px;color:#1a1a1a;font-size:16px;line-height:26px}
.law-cta{margin-top:40px;display:flex;justify-content:center}

@media (max-width:980px){
  .law-points{grid-template-columns:1fr}
}

/* ============ CHECKLIST (нумерований/іконковий список) ============ */
.checklist{padding:70px 0}
.checklist-intro{font-size:18px;line-height:28px;color:var(--text-muted);margin-bottom:48px;max-width:820px}
.checklist-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.checklist-grid.cols-1{grid-template-columns:1fr}
.check-item{display:flex;gap:18px;padding:24px 28px;background:#fff;border:1px solid var(--gray-line);border-radius:10px;align-items:flex-start;transition:transform .3s, box-shadow .3s}
.check-item:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,.06)}
.check-icon{flex-shrink:0;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px}
.check-icon.ok{background:var(--green);color:#fff}
.check-icon.no{background:#e4e4e4;color:#989898}
.check-icon.option{background:#fff8d6;border:1.5px solid var(--yellow);color:#1a1a1a}
.check-icon.num{background:var(--yellow);color:#1a1a1a;font-size:14px}
.check-content h4{font-size:17px;line-height:24px;color:#1a1a1a;font-weight:500;margin-bottom:6px}
.check-content p{font-size:15px;line-height:22px;color:var(--text-muted)}
.checklist-note{margin-top:36px;font-size:14px;color:var(--text-muted);font-style:italic;text-align:center;max-width:780px;margin-left:auto;margin-right:auto}

@media (max-width:980px){
  .checklist-grid{grid-template-columns:1fr}
}

/* ============ PROCESS 5 КРОКІВ (старий варіант) ============ */
.process-grid.cols-5{grid-template-columns:repeat(5,1fr);gap:20px}
.process-grid.cols-5 .process-card{padding:36px 24px}
.process-grid.cols-5 .process-card h3{font-size:18px;line-height:24px}
.process-grid.cols-5 .process-card p{font-size:14px;line-height:21px}

@media (max-width:1200px){
  .process-grid.cols-5{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:980px){
  .process-grid.cols-5{grid-template-columns:1fr}
}

/* ============ PROCESS 3+2 (5 кроків: 3 у першому ряду, 2 центровані у другому) ============ */
.process-grid.cols-3-2{display:grid;grid-template-columns:repeat(12,1fr);gap:30px}
.process-grid.cols-3-2 .process-card{grid-column:span 4;padding:44px 32px}
.process-grid.cols-3-2 .process-card:nth-child(4){grid-column:3 / span 4}
.process-grid.cols-3-2 .process-card:nth-child(5){grid-column:7 / span 4}
.process-step-num{
  position:absolute;
  top:22px;
  right:24px;
  font-size:36px;
  line-height:1;
  font-weight:700;
  color:var(--yellow);
  opacity:.35;
  letter-spacing:.5px;
  z-index:1;
}

@media (max-width:1200px){
  .process-grid.cols-3-2{grid-template-columns:repeat(2,1fr);gap:24px}
  .process-grid.cols-3-2 .process-card,
  .process-grid.cols-3-2 .process-card:nth-child(4),
  .process-grid.cols-3-2 .process-card:nth-child(5){grid-column:auto}
}
@media (max-width:980px){
  .process-grid.cols-3-2{grid-template-columns:1fr}
  .process-step-num{font-size:32px;top:18px;right:20px}
}

/* ============ PRICING CARDS (4 паки) ============ */
.pricing{padding:70px 0;background:#fff}
.pricing-intro{font-size:18px;line-height:28px;color:var(--text-muted);margin-bottom:40px;max-width:820px}

/* Visual matériel — SVG-ілюстрація обладнання */
.pricing-kit{
  max-width:1080px;margin:0 auto 40px;
  border-radius:18px;overflow:hidden;
  background:#1a1a1a;
  box-shadow:0 18px 44px -24px rgba(0,0,0,.4);
}
.pricing-kit svg{display:block;width:100%;height:auto}

/* === PRICING — 2×2 FULL-WIDTH, СТАРИЙ ВИГЛЯД КАРТОК === */
.pricing-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:28px;margin:30px 0;
}
.pricing-card{
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:18px;
  padding:34px 32px 30px;
  display:flex;flex-direction:column;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  position:relative;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px -22px rgba(16,24,40,.18);
  border-color:var(--yellow);
}

/* Featured — світла з жовтою рамкою + бейджем */
.pricing-card.featured{
  background:#fff;
  border:2px solid var(--yellow);
  box-shadow:0 16px 38px -20px rgba(245,200,0,.45), 0 4px 14px -8px rgba(16,24,40,.08);
  padding-top:42px;
}
.pricing-card.featured::before{
  content:"Le plus demandé";
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--yellow);color:#1a1a1a;
  font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
  padding:7px 16px;border-radius:30px;
  box-shadow:0 6px 16px -6px rgba(245,200,0,.6);
  white-space:nowrap;z-index:2;
}

/* Header картки: назва + стара ціна на одній лінії */
.pricing-head{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:14px;margin-bottom:6px;
}
.pricing-name{
  font-size:22px;font-weight:700;color:#1a1a1a;
  margin:0;line-height:1.2;flex:1;
}
.pricing-old{
  position:static;
  font-size:15px;font-weight:700;color:#9aa1ad;
  text-decoration:line-through;
  text-decoration-color:#c40000;
  text-decoration-thickness:2.5px;
  letter-spacing:.2px;
  white-space:nowrap;flex-shrink:0;
  padding-top:4px;
}

.pricing-tagline{
  font-size:14px;line-height:22px;
  color:var(--text-muted);
  margin:0 0 18px;min-height:44px;
}

/* Блок ціни — окремий світло-сірий поясок */
.pricing-pricebox{
  background:#fafaf7;
  border:1px solid var(--gray-line);
  border-radius:12px;
  padding:14px 16px;
  margin-bottom:14px;
}
.pricing-from{
  font-size:11px;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--text-muted);
  display:block;margin-bottom:2px;
}
.pricing-price{
  font-size:34px;font-weight:700;color:#1a1a1a;
  line-height:1;margin:2px 0 8px;display:block;
}
.pricing-price-ttc{
  font-size:14px;font-weight:500;
  color:var(--text-muted);margin-left:6px;
}
.pricing-save{
  display:inline-block;font-size:12px;font-weight:700;
  color:#0f9d58;background:rgba(15,157,88,.12);
  padding:4px 10px;border-radius:6px;
}

/* Бейдж "Pose & installation incluses" — зелений */
.pricing-incl{
  display:flex;align-items:center;gap:10px;
  font-size:13px;line-height:1.35;color:#14532d;
  background:rgba(15,157,88,.08);
  border:1px solid rgba(15,157,88,.25);
  border-radius:10px;padding:10px 12px;margin-bottom:14px;
}
.pricing-incl svg{flex-shrink:0}
.pricing-incl strong{font-weight:700;display:block;font-size:13.5px}
.pricing-incl small{display:block;color:#3f6b4f;font-weight:500;font-size:11.5px;margin-top:1px}

.pricing-rule{height:1px;background:var(--gray-line);margin:6px 0 14px;border:0}

.pricing-cfg-label{
  font-size:11px;font-weight:700;letter-spacing:1.2px;
  text-transform:uppercase;color:var(--text-muted);
  margin-bottom:12px;
}
.pricing-list{
  list-style:none;margin:0 0 22px;padding:0;
  display:flex;flex-direction:column;gap:10px;flex:1;
}
.pricing-list li{
  position:relative;padding-left:26px;
  font-size:14px;line-height:1.45;color:#374151;
}
.pricing-list li::before{
  content:"";position:absolute;left:0;top:3px;
  width:16px;height:16px;border-radius:50%;
  background:var(--yellow);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}

/* CTA в справжньому стилі банера: pill + окремий кружок */
.pricing-cta{
  display:inline-flex;align-items:center;gap:0;
  text-decoration:none;cursor:pointer;
  background:transparent;padding:0;border:none;
  line-height:1;font-family:inherit;
  align-self:flex-start;
}
.pricing-cta .btn-cta-text{
  display:inline-flex;align-items:center;height:54px;
  padding:0 28px;border-radius:999px;
  background:var(--yellow);color:#1a1a1a;
  font-size:15px;font-weight:500;letter-spacing:.2px;
  white-space:nowrap;
  transition:border-radius .3s ease, filter .2s ease, box-shadow .25s ease;
}
.pricing-cta .btn-cta-arrow{
  flex-shrink:0;width:54px;height:54px;
  border-radius:50%;
  background:var(--yellow);color:#1a1a1a;
  display:inline-flex;align-items:center;justify-content:center;
  transition:border-radius .3s ease, transform .25s, filter .2s, box-shadow .25s ease;
}
.pricing-cta:hover .btn-cta-text{border-top-right-radius:0;border-bottom-right-radius:0;filter:brightness(1.03);box-shadow:-8px 12px 28px rgba(245,200,0,.4)}
.pricing-cta:hover .btn-cta-arrow{border-top-left-radius:0;border-bottom-left-radius:0;filter:brightness(1.03);box-shadow:8px 12px 28px rgba(245,200,0,.4)}

.pricing-note{
  margin-top:18px;font-size:14px;line-height:22px;
  color:var(--text-muted);font-style:italic;text-align:center;
  max-width:920px;margin-left:auto;margin-right:auto;
}

/* ============ VS BLOCK (Achat vs Location) — НЕЙТРАЛЬНИЙ ============ */
.vs-block{
  width:100%;margin:0;
  display:grid;grid-template-columns:1fr 1fr;gap:28px;
}
.vs-col{
  padding:38px 34px;
  display:flex;flex-direction:column;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--gray-line);
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
  position:relative;
}
.vs-col h3{
  margin:0 0 10px;
  font-size:13px;font-weight:700;
  letter-spacing:1.2px;text-transform:uppercase;
  color:#1a1a1a;
  display:flex;align-items:baseline;gap:6px;flex-wrap:wrap;
}
.vs-col h3 span{
  font-size:11px;font-weight:600;letter-spacing:0.5px;
  text-transform:none;opacity:.7;color:var(--text-muted);
}
.vs-col .vs-big{
  font-size:clamp(24px,3vw,32px);
  font-weight:700;line-height:1.15;
  margin:6px 0 24px;color:#1a1a1a;
}
.vs-col ul{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:14px;flex:1;
}
.vs-col li{
  font-size:14.5px;line-height:1.5;
  padding-left:30px;position:relative;color:#374151;
}
.vs-col li::before{
  position:absolute;left:0;top:2px;
  width:18px;height:18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.vs-col strong{color:#1a1a1a}

/* Ліва колонка — location (без фону, прозора) */
.vs-rent{background:transparent;border-color:var(--gray-line);box-shadow:none}
.vs-rent li::before{
  content:"";background:#cfd2cc;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19 13H5v-2h14v2z'/></svg>") center/14px no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19 13H5v-2h14v2z'/></svg>") center/14px no-repeat;
}

/* Права колонка — Sheriff (білий фон, з тінню) */
.vs-own{background:#fff;border-color:var(--gray-line)}
.vs-own li::before{
  content:"";background:#1a1a1a;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
}

/* VS CTA — в справжньому стилі банера: pill + окремий кружок */
.vs-cta{
  display:inline-flex;align-items:center;gap:0;
  margin-top:24px;text-decoration:none;cursor:pointer;
  background:transparent;padding:0;border:none;
  line-height:1;font-family:inherit;
  align-self:flex-start;
}
.vs-cta .btn-cta-text{
  display:inline-flex;align-items:center;height:54px;
  padding:0 28px;border-radius:999px;
  background:var(--yellow);color:#1a1a1a;
  font-size:15px;font-weight:500;letter-spacing:.2px;
  white-space:nowrap;
  transition:border-radius .3s ease, filter .2s ease, box-shadow .25s ease;
}
.vs-cta .btn-cta-arrow{
  flex-shrink:0;width:54px;height:54px;
  border-radius:50%;
  background:var(--yellow);color:#1a1a1a;
  display:inline-flex;align-items:center;justify-content:center;
  transition:border-radius .3s ease, transform .25s, filter .2s, box-shadow .25s ease;
}
.vs-cta:hover .btn-cta-text{border-top-right-radius:0;border-bottom-right-radius:0;filter:brightness(1.03);box-shadow:-8px 12px 28px rgba(245,200,0,.4)}
.vs-cta:hover .btn-cta-arrow{border-top-left-radius:0;border-bottom-left-radius:0;filter:brightness(1.03);box-shadow:8px 12px 28px rgba(245,200,0,.4)}

@media (max-width:760px){
  .vs-block{grid-template-columns:1fr}
  .vs-col{padding:28px 24px}
}

@media (max-width:760px){
  .pricing-grid{grid-template-columns:1fr;gap:30px}
  .pricing-card.featured{margin-top:8px}
}

/* ============ FINAL CTA SECTION ============ */
.final-cta{padding:90px 0;background:#1a1a1a;color:#fff;text-align:center;position:relative;overflow:hidden}
.final-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 0%,rgba(245,200,0,.08),transparent 60%);pointer-events:none}
.final-cta .container{position:relative;z-index:2}
.final-cta h2{font-size:42px;line-height:52px;font-weight:400;text-transform:capitalize;margin-bottom:20px;max-width:760px;margin-left:auto;margin-right:auto}
.final-cta h2 .accent{color:var(--yellow);font-weight:500}
.final-cta-text{font-size:18px;line-height:28px;color:var(--text-dim-2);max-width:620px;margin:0 auto 40px}
.final-cta .btn-cta{margin-bottom:24px}
.final-cta-note{font-size:14px;color:var(--text-muted);line-height:22px;max-width:580px;margin:0 auto;font-style:italic}

@media (max-width:980px){
  .final-cta{padding:60px 0}
  .final-cta h2{font-size:28px;line-height:36px}
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp .6s ease both}

/* ============ MOBILE BURGER ============ */
.burger{
  display:none;
  width:46px;height:46px;
  align-items:center;justify-content:center;
  border:1.5px solid var(--gray-line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  position:relative;
  z-index:201;
  transition:border-color .25s ease, background .25s ease, transform .15s ease, box-shadow .25s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.burger:hover{border-color:var(--yellow);box-shadow:0 4px 12px rgba(245,200,0,.18)}
.burger:active{transform:scale(.95)}
.burger span{width:20px;height:2px;background:#1a1a1a;position:relative;transition:background .3s ease, transform .3s ease;border-radius:2px}
.burger span::before,.burger span::after{
  content:"";position:absolute;left:0;width:100%;height:2px;background:#1a1a1a;border-radius:2px;
  transition:transform .3s cubic-bezier(.4,0,.2,1), top .3s cubic-bezier(.4,0,.2,1), width .3s ease;
}
.burger span::before{top:-7px}
.burger span::after{top:7px;width:14px}
.burger:hover span::after{width:20px}
.burger.open{border-color:var(--yellow);background:#fffbeb}
.burger.open span{background:transparent}
.burger.open span::before{top:0;transform:rotate(45deg);width:20px}
.burger.open span::after{top:0;transform:rotate(-45deg);width:20px}
.nav-mobile-phone,.nav-mobile-contact{display:none}
body.menu-open{overflow:hidden}

@media (max-width:1200px){
  .container{padding:0 40px}
  .header-inner{padding:0 40px}
  .nav{gap:20px}
  .nav a{font-size:14px}
  .hero-content{padding:0 40px 70px}
  .hero h1{font-size:46px;line-height:52px}
  .page-hero .container{padding:0 40px 70px}
  .page-hero h1{font-size:46px;line-height:52px}
  .h-section{font-size:30px;line-height:40px}
  .btn-cta-text{font-size:16px;padding:0 30px;height:56px}
  .btn-cta-arrow{width:56px;height:56px}
}
@media (max-width:980px){
  /* ====== HEADER + FULLSCREEN MENU (світле) ====== */
  .btn-phone{display:none}
  .burger{display:flex}
  .header{z-index:200}
  .nav{
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    width:100%;height:100vh;
    background:#fafaf7;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    gap:0;
    padding:110px 28px 40px;
    z-index:150;
    visibility:hidden;
    opacity:0;
    transition:opacity .35s ease, visibility .35s ease;
    overflow-y:auto;
  }
  .nav.open{visibility:visible;opacity:1}
  .nav a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:20px;
    color:#1a1a1a;
    padding:22px 8px;
    text-align:left;
    width:100%;
    max-width:480px;
    border-bottom:1px solid var(--gray-line);
    font-weight:400;
    letter-spacing:.2px;
    position:relative;
    transition:color .25s ease, padding-left .25s ease, opacity .4s ease, transform .4s ease;
    opacity:0;
    transform:translateY(8px);
  }
  .nav.open a{opacity:1;transform:translateY(0)}
  .nav.open a:nth-child(1){transition-delay:.08s}
  .nav.open a:nth-child(2){transition-delay:.13s}
  .nav.open a:nth-child(3){transition-delay:.18s}
  .nav.open a:nth-child(4){transition-delay:.23s}
  .nav.open a:nth-child(5){transition-delay:.28s}
  .nav.open a:nth-child(6){transition-delay:.33s}
  .nav.open a:nth-child(7){transition-delay:.38s}

  /* Mobile dropdown — пункти flat у списку */
  .nav-dropdown{display:contents}
  .nav-dropdown-toggle{display:none}
  .nav-dropdown-menu{
    position:static;opacity:1;visibility:visible;transform:none;
    background:transparent;border:0;box-shadow:none;padding:0;
    min-width:0;width:auto;display:contents;
  }
  .nav-dd-item{
    padding:0;background:transparent !important;border-radius:0;
    font-size:inherit;font-weight:inherit;color:inherit;
    letter-spacing:inherit;line-height:inherit;
  }
  .nav a::after{
    content:"";
    width:8px;height:8px;
    border-top:2px solid var(--text-muted);
    border-right:2px solid var(--text-muted);
    transform:rotate(45deg);
    margin-left:auto;
    transition:border-color .25s ease, transform .25s ease;
    opacity:.4;
  }
  .nav a:hover{color:var(--yellow);padding-left:14px}
  .nav a:hover::after{border-color:var(--yellow);opacity:1;transform:rotate(45deg) translateX(2px)}
  .nav a.active{color:var(--yellow);font-weight:500}
  .nav a.active::after{border-color:var(--yellow);opacity:1}
  .nav-mobile-contact{
    display:flex !important;
  }
  .nav-mobile-phone{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:32px;
    margin-bottom:8px;
    padding:18px 36px !important;
    border:none !important;
    background:var(--yellow);
    color:#1a1a1a !important;
    font-weight:600 !important;
    font-size:17px !important;
    border-radius:40px !important;
    box-shadow:0 8px 20px rgba(245,200,0,.3);
    transition:transform .2s ease, box-shadow .25s ease !important;
    width:auto !important;
    max-width:none !important;
    text-align:center !important;
    letter-spacing:.3px;
  }
  .nav-mobile-phone::before{
    content:"";
    width:18px;height:18px;
    background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center/contain;
    flex-shrink:0;
  }
  .nav-mobile-phone:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(245,200,0,.5)}
  .nav-mobile-phone::after{display:none !important}

  .container{padding:0 24px}
  .header-inner{padding:0 24px}

  /* ====== HERO (головна) — майже на весь екран під шапкою, контент зверху по центру ====== */
  .hero{height:calc(100vh - 80px);min-height:580px;padding:0}
  .hero-content{
    padding:32px 24px 60px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
  }
  /* ============ MOBILE HERO: фото як фон на весь банер, без затемнення ============ */
  .hero{
    position:relative;
    height:auto;
    min-height:auto;
    max-height:none;
    display:block;
    padding:0;
    background:#fafaf7;
    overflow:hidden;
  }
  /* Фото — повноекранний background банера */
  .hero picture{
    position:absolute;
    inset:0;
    display:block;
    width:100%;
    height:100%;
    margin:0;
    overflow:hidden;
    z-index:0;
  }
  .hero-bg,
  .hero picture img{
    width:100%;
    height:100%;
    aspect-ratio:auto;
    object-fit:cover;
    /* object-position 50% по горизонталі і 60% по вертикалі — обличчя сім'ї тримаються близько до центру обрізу при різних висотах */
    object-position:50% 60%;
    display:block;
    position:absolute;
    inset:0;
    top:0;left:0;
    -webkit-mask-image:none;
    mask-image:none;
    animation:none;
    transform:none;
  }
  /* Без оверлею */
  .hero picture::after{display:none}
  /* hero-content — звичайний flex column поверх фото */
  .hero-content{
    position:relative;
    z-index:3;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:32px 22px 32px;
    text-align:center;
    height:auto;
    max-width:100%;
    margin:0 auto;
    min-height:calc(100svh - 80px);
    justify-content:space-between;
  }

  .hero h1{
    order:1;
    margin:0 0 14px;
    padding:0;
    font-size:26px;line-height:32px;
    color:#1a1a1a;
    text-align:center;
    max-width:100%;
    font-weight:700;
    text-shadow:none;
    width:100%;
  }
  .hero-sub{
    order:2;
    margin:0 0 22px;
    padding:0;
    font-size:14px;line-height:21px;
    color:#3a3a3a;
    text-align:center;
    max-width:100%;
    text-shadow:none;
    opacity:1;
    width:100%;
  }

  .hero-ctas{
    order:3;
    margin:0 0 24px;
    padding:0;
    justify-content:center;
    flex-direction:column;
    align-items:center;
    gap:12px;
    width:100%;
  }
  .hero-cta-secondary{
    color:#1a1a1a;
    text-align:center;
    text-shadow:none;
    opacity:1;
  }

  /* ====== Горизонтальний свайп-карусель — ТІЛЬКИ на головній (.hero) ====== */
  .hero .hero-features{
    order:4;
    margin-top:auto;
    margin-bottom:0;
    margin-left:-22px;
    margin-right:-22px;
    padding:0 22px 6px;
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    width:calc(100% + 44px);
    max-width:calc(100% + 44px);
    gap:10px;
    align-items:stretch;
    text-align:left;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-padding-left:22px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .hero .hero-features::-webkit-scrollbar{display:none}
  .hero .hero-feature{
    background:#fff;
    border:none;
    border-radius:14px;
    padding:14px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    display:flex;
    align-items:center;
    gap:12px;
    position:relative;
    flex:0 0 78%;
    min-width:78%;
    scroll-snap-align:start;
    min-height:auto;
  }
  .hero .hero-feature::before{display:none}
  .hero .hero-feature::after{display:none}
  .hero .hero-feature-icon{
    display:flex;
    background:rgba(245,200,0,.18);
    border:1px solid rgba(245,200,0,.5);
    color:var(--yellow);
    width:38px;height:38px;
    flex-shrink:0;
    border-radius:50%;
    align-items:center;
    justify-content:center;
  }
  .hero .hero-feature-icon svg{width:18px;height:18px}
  .hero .hero-feature-text{
    color:#1a1a1a;
    opacity:1;
    font-size:13px;
    line-height:18px;
    font-weight:500;
  }

  /* ====== Page-hero на внутрішніх сторінках: carousel як на головній ====== */
  .page-hero .hero-features{
    margin-top:auto;
    margin-bottom:0;
    margin-left:-22px;
    margin-right:-22px;
    padding:0 22px 6px;
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    width:calc(100% + 44px);
    max-width:calc(100% + 44px);
    gap:10px;
    align-items:stretch;
    text-align:left;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-padding-left:22px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .page-hero .hero-features::-webkit-scrollbar{display:none}
  .page-hero .hero-feature{
    background:#fff;
    border:none;
    border-radius:14px;
    padding:14px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    display:flex;
    align-items:center;
    gap:12px;
    position:relative;
    flex:0 0 78%;
    min-width:78%;
    scroll-snap-align:start;
    min-height:auto;
  }
  .page-hero .hero-feature::before{display:none}
  .page-hero .hero-feature::after{display:none}
  .page-hero .hero-feature-text{
    color:#1a1a1a;
    opacity:1;
    font-size:13px;
    line-height:18px;
    font-weight:500;
  }
  .page-hero .hero-feature-icon{
    display:flex;
    background:rgba(245,200,0,.18);
    border:1px solid rgba(245,200,0,.5);
    color:var(--yellow);
    width:38px;height:38px;
    flex-shrink:0;
    border-radius:50%;
    align-items:center;
    justify-content:center;
  }
  .page-hero .hero-feature-icon svg{width:18px;height:18px}

  /* Прибираємо overlay і marquee */
  .hero-overlay{display:none}
  .yellow-strip{display:none}

  /* ====== PAGE HERO (внутрішні сторінки) — як на головній: фото як фон + темний центрований текст ====== */
  .page-hero{
    position:relative;
    height:auto;
    min-height:auto;
    max-height:none;
    display:block;
    padding:0;
    background:#fafaf7;
    overflow:hidden;
    color:#1a1a1a;
  }
  .page-hero::before{display:none}
  /* Фото — повноекранний background банера */
  .page-hero.with-image .hero-bg.align-bottom,
  .page-hero.with-image .hero-bg,
  .page-hero .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:50% 60%;
    display:block;
    top:0;left:0;
    bottom:auto;
    z-index:0;
  }
  .page-hero .hero-overlay{display:none}

  /* .container — контент-блок поверх фото, flex column */
  .page-hero .container{
    position:relative;
    z-index:3;
    padding:18px 22px 32px;
    height:auto;
    min-height:calc(100svh - 80px);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
    max-width:100%;
    margin:0 auto;
  }
  .page-hero .breadcrumbs{
    order:0;
    justify-content:center;
    width:100%;
    color:#5e5e5e;
    margin-bottom:14px;
  }
  .page-hero .breadcrumbs a{color:#5e5e5e}
  .page-hero .breadcrumbs .current{color:#1a1a1a}

  .page-hero h1{
    order:1;
    margin:0 0 14px;
    padding:0;
    font-size:26px;line-height:32px;
    color:#1a1a1a;
    text-align:center;
    max-width:100%;
    font-weight:700;
    text-shadow:none;
    width:100%;
  }
  .page-hero h1 .accent{color:#1a1a1a;font-weight:700}
  .page-hero-sub{
    order:2;
    margin:0 0 22px;
    padding:0;
    font-size:14px;line-height:21px;
    color:#3a3a3a;
    text-align:center;
    max-width:100%;
    text-shadow:none;
    opacity:1;
    width:100%;
  }
  .page-hero-ctas{
    order:3;
    margin:0 0 24px;
    padding:0;
    justify-content:center;
    flex-direction:column;
    align-items:center;
    gap:12px;
    width:100%;
    display:flex;
  }
  .page-hero-secondary{
    margin-top:4px;
    color:#1a1a1a;
    text-align:center;
    text-shadow:none;
    opacity:1;
  }
  .page-hero .hero-features{order:4}

  .trust-card{grid-template-columns:1fr 1fr}
  .problems-grid,.approach-grid,.solutions-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .why-ajax-grid{grid-template-columns:1fr}
  .france-card{grid-template-columns:1fr;padding:40px 28px;gap:30px}
  .france-map{max-width:340px;margin:0 auto}
  /* === ТАБЛИЦЯ ПОРІВНЯННЯ на мобільному — card-stack layout (видно ВСІ дані) === */
  .comparison-table{
    background:transparent;
    border:none;
    border-radius:0;
    overflow:visible;
  }
  .comparison-row.head{display:none}
  .comparison-row{
    display:block;
    border:1px solid var(--gray-line-2);
    border-radius:12px;
    overflow:hidden;
    margin-bottom:14px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
  }
  .comparison-row:last-child{margin-bottom:0}
  .comparison-row .cell{
    padding:14px 18px;
    display:block;
    align-items:flex-start;
    font-size:15px;
    line-height:22px;
    gap:10px;
  }
  /* Перша клітинка — назва критерію (header картки) */
  .comparison-row .cell:nth-child(1){
    background:#fafaf7;
    font-weight:500;
    color:#1a1a1a;
    border-bottom:1px solid var(--gray-line-2);
    padding:12px 18px;
    font-size:14px;
    letter-spacing:.2px;
  }
  /* Друга клітинка — Sheriff (win, жовтий фон) */
  .comparison-row .cell:nth-child(2){
    background:var(--yellow-soft);
    border-bottom:1px solid var(--gray-line-2);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .comparison-row .cell:nth-child(2)::before{
    content:"Sheriff Sécurité";
    display:block;
    font-size:10px;
    letter-spacing:.8px;
    font-weight:600;
    color:#1a1a1a;
    text-transform:uppercase;
    opacity:.65;
  }
  /* Третя клітинка — Modèle classique (lose, нейтральний фон) */
  .comparison-row .cell:nth-child(3){
    display:flex !important;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    background:transparent;
    color:var(--text-muted);
  }
  .comparison-row .cell:nth-child(3)::before{
    content:"Modèle classique";
    display:block;
    font-size:10px;
    letter-spacing:.8px;
    font-weight:600;
    color:var(--text-muted);
    text-transform:uppercase;
  }
  /* Іконка ✓/✕ — поряд з текстом значення */
  .comparison-row .cell .dot-check,
  .comparison-row .cell .dot-x{
    margin-right:8px;
    vertical-align:middle;
    flex-shrink:0;
  }
  /* Стилі для нашого 2-стовпцевого порівняння (page 5 — Coût sur 5 ans) */
  .comparison-row .cell strong{font-weight:600}
  .contact-wrap{grid-template-columns:1fr}
  .contact-form{padding:30px 22px}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .faq-row{grid-template-columns:40px 1fr 30px;gap:14px}
  .faq-q{font-size:16px}
  .faq-num{font-size:24px}
  .faq-toggle{font-size:24px}
  .faq-a-inner{padding-left:54px;padding-right:30px}
  .h-section{font-size:26px;line-height:34px}
  .btn-cta{gap:0}
  .btn-cta-text{height:50px;font-size:15px;padding:0 24px}
  .btn-cta-arrow{width:50px;height:50px}
  .marquee-item{font-size:13px}
  .marquee-group{gap:24px;padding-right:24px}
}
@media (max-width:560px){
  .footer-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .trust-card{grid-template-columns:1fr;padding:20px}
  .btn-cta{gap:0;flex-wrap:nowrap}
  .btn-cta-text{font-size:13px;padding:10px 18px;height:auto;min-height:50px;white-space:normal;text-align:left;line-height:1.3}
  .btn-cta-arrow{width:50px;height:50px;align-self:center}
}

/* ============ TABLET/MOBILE: зображення в картках на ВСЮ ширину картки ============ */
@media (max-width:1200px){
  /* approach-illu — 3 картки на home + Notre alternative + Audit + Autres marques */
  .approach-illu{
    height:auto;
    padding:0;
    background:#fff;
    aspect-ratio:auto;
  }
  .approach-illu img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
  }

  /* problem-card-illu — 3 ілюстрації на головній (Problems section) */
  .problem-card-illu{
    height:auto;
    padding:0;
    margin-bottom:24px;
    aspect-ratio:auto;
  }
  .problem-card-illu img{
    width:100%;
    height:auto;
    object-fit:contain;
  }

  /* solution-img — 3 картки на головній (Solutions: Ajax, anti-squat, surveillance) */
  .solution-img{
    height:auto;
    aspect-ratio:auto;
    background:#fff;
  }
  .solution-img img{
    width:100%;
    height:auto;
    object-fit:contain;
  }

  /* problem-card на мобільному — забезпечуємо повну висоту під контент */
  .problems-grid .problem-card,
  .problems-grid.cols-2 .problem-card{
    height:auto;
    min-height:auto;
  }
}

/* ============ MOBILE дрібні покращення ============ */
@media (max-width:980px){
  /* Контент-карта France — стек з фото зверху */
  .france-card{padding:32px 24px}
  .france-map img{max-width:280px}

  /* checklist на мобільному — тонший padding */
  .check-item{padding:20px 20px;gap:14px}

  /* equipment-list на мобільному */
  .equipment-item{padding:24px 22px;gap:18px}

  /* pricing cards — менший padding на мобільному */
  .pricing-card{padding:32px 24px}

  /* law-points на мобільному */
  .law-point{padding:24px 22px}

}

/* ============ SMALL MOBILE <420px ============ */
@media (max-width:420px){
  .container{padding:0 16px}
  .header-inner{padding:0 16px}
  .page-hero .container{padding:14px 18px 28px}
  .hero-content{padding:28px 18px 28px}
  .hero h1,
  .page-hero h1{font-size:24px;line-height:30px;padding:0}
  .hero-sub,
  .page-hero-sub{font-size:13px;line-height:20px;padding:0}
  .h-section{font-size:24px;line-height:32px}
  .contact-form{padding:24px 18px}
  .btn-phone{display:none}
  .hero .hero-feature,
  .page-hero .hero-feature{padding:13px}
  .hero-feature-text{font-size:13px;line-height:18px}
}

/* ============================================================ */
/* ============ PHASE 2 — НОВІ КОМПОНЕНТИ ===================== */
/* ============================================================ */

/* ---------- Image placeholder (поки фото нема) ---------- */
.img-placeholder{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  width:100%;min-height:280px;
  background:#f4f4ef;
  border:2px dashed #c8c8c0;
  border-radius:14px;
  color:#8b8b8b;font-size:14px;line-height:1.5;
  padding:24px;text-align:center;
  position:relative;
}
.img-placeholder::before{
  content:"📷";font-size:38px;margin-bottom:12px;opacity:.6;
}
.img-placeholder .ph-label{font-weight:600;color:#5e5e5e}
.img-placeholder .ph-alt{font-size:12px;opacity:.7;margin-top:6px;font-style:italic}

/* ---------- Yellow Ticker Bar (бігучий жовтий рядок) ---------- */
.ticker-bar{
  background:var(--yellow);color:#1a1a1a;
  padding:14px 0;overflow:hidden;position:relative;
  border-top:1px solid #d8b300;border-bottom:1px solid #d8b300;
}
.ticker-track{
  display:flex;width:max-content;
  animation:ticker-scroll 60s linear infinite;
}
.ticker-item{
  padding:0 40px;font-size:15px;font-weight:500;line-height:1.4;
  white-space:nowrap;display:flex;align-items:center;gap:10px;
}
.ticker-item::before{content:"⚡";font-size:14px}
@keyframes ticker-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.ticker-bar:hover .ticker-track{animation-play-state:paused}
@media (max-width:760px){
  .ticker-item{font-size:13px;padding:0 24px}
}

/* ---------- Pain/2-col комбі (для C8 Section 3) ---------- */
.pain-twocol{
  display:grid;grid-template-columns:1fr 1fr;gap:30px;
  max-width:1080px;margin:30px auto 0;
}
.pain-twocol-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:18px;padding:36px 32px;
  display:flex;flex-direction:column;gap:14px;
}
.pain-twocol-card .pain-icon{
  width:56px;height:56px;border-radius:50%;
  background:rgba(245,200,0,.15);
  display:flex;align-items:center;justify-content:center;
  color:var(--yellow);
}
.pain-twocol-card h3{
  font-size:22px;font-weight:700;color:#1a1a1a;margin:0;line-height:1.2;
}
.pain-twocol-card p{
  font-size:15px;line-height:24px;color:var(--text-muted);margin:0;
}
.pain-twocol-card.danger .pain-icon{background:rgba(196,0,0,.10);color:#c40000}
.pain-twocol-card.success .pain-icon{background:rgba(15,157,88,.10);color:#0f9d58}
@media (max-width:780px){
  .pain-twocol{grid-template-columns:1fr;gap:18px}
}

/* ---------- Section dark variant ---------- */
.section-dark{background:#1a1a1a;color:#fff;padding:80px 0}
.section-dark .h-section{color:#fff}
.section-dark .h-section .accent{color:var(--yellow)}
.section-dark .section-sub{
  color:#b3b3b3;font-size:18px;line-height:28px;
  margin:0 auto 40px;max-width:820px;text-align:center;
}
.section-cream{background:var(--bg);padding:70px 0}
.section-white{background:#fff;padding:70px 0}


/* ---------- Solution-cards 3-col (cream/white варіанти) ---------- */
.solution-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:30px;
}
.sol-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:16px;padding:32px 28px;
  display:flex;flex-direction:column;gap:14px;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
  transition:transform .3s, box-shadow .3s;
}
.sol-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px -22px rgba(16,24,40,.15)}
.sol-card .sol-icon{
  width:56px;height:56px;border-radius:14px;
  background:rgba(245,200,0,.18);color:#1a1a1a;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
}
.sol-card h3{font-size:18px;font-weight:700;color:#1a1a1a;margin:0;line-height:1.3}
.sol-card p{font-size:14.5px;line-height:23px;color:var(--text-muted);margin:0}
.sol-card .sol-link{
  margin-top:auto;font-weight:600;font-size:14px;
  color:#1a1a1a;text-decoration:none;
  border-bottom:2px solid var(--yellow);
  align-self:flex-start;padding-bottom:2px;
}
.sol-card .sol-link:hover{color:#5e5e5e}
@media (max-width:980px){
  .solution-cards{grid-template-columns:1fr;max-width:560px;margin-left:auto;margin-right:auto}
}

/* ---------- Why Brand Section (текст 60 + 4 features 2x2) ---------- */
.why-brand{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.why-brand-text h2{margin-top:0}
.why-brand-text .body-intro{
  font-size:17px;line-height:28px;color:#dfe3ec;margin:16px 0 28px;
}
.why-brand-features{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.wb-feature{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;padding:22px;display:flex;flex-direction:column;gap:10px;
}
.wb-feature .wb-icon{
  width:44px;height:44px;border-radius:50%;
  background:rgba(245,200,0,.18);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;
}
.wb-feature h3{font-size:15px;font-weight:700;color:#fff;margin:0;line-height:1.3}
.wb-feature p{font-size:13.5px;line-height:21px;color:#b3b3b3;margin:0}
.why-brand .placeholder-side .img-placeholder{min-height:420px;background:rgba(255,255,255,.03);border-color:rgba(255,255,255,.18);color:#b3b3b3}
@media (max-width:1080px){
  .why-brand{grid-template-columns:1fr;gap:30px}
  .why-brand-features{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .why-brand-features{grid-template-columns:1fr}
}

/* ---------- Timeline / Process 4-col з тегами ---------- */
.timeline-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:30px;
}
.timeline-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:16px;padding:30px 24px 26px;
  display:flex;flex-direction:column;gap:12px;
  position:relative;overflow:hidden;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.timeline-tag{
  display:inline-block;align-self:flex-start;
  font-size:11px;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  color:#1a1a1a;background:var(--yellow);
  padding:5px 11px;border-radius:30px;
}
.timeline-icon{
  width:48px;height:48px;border-radius:12px;
  background:#fafaf7;border:1px solid var(--gray-line);
  color:#1a1a1a;display:flex;align-items:center;justify-content:center;
  margin-top:2px;
}
.timeline-card h3{font-size:17px;font-weight:700;color:#1a1a1a;margin:0;line-height:1.3}
.timeline-card p{font-size:13.5px;line-height:21px;color:var(--text-muted);margin:0;flex:1}
@media (max-width:1080px){
  .timeline-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .timeline-grid{grid-template-columns:1fr}
}

/* ---------- Comparison Table (3 cols) ---------- */
.comp-table{
  width:100%;border-collapse:separate;border-spacing:0;
  background:#fff;border-radius:14px;overflow:hidden;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
  border:1px solid var(--gray-line);
}
.comp-table th,.comp-table td{
  padding:18px 22px;font-size:14px;line-height:1.5;
  text-align:left;vertical-align:top;
  border-bottom:1px solid var(--gray-line);
}
.comp-table th{
  background:#fafaf7;font-weight:700;color:#1a1a1a;font-size:13px;
  letter-spacing:.4px;text-transform:uppercase;
}
.comp-table th.col-sheriff{background:var(--yellow);color:#1a1a1a}
.comp-table th.col-other{background:#fafaf7;color:#5e5e5e}
.comp-table td.col-sheriff{background:#fffbe8;color:#1a1a1a;font-weight:500}
.comp-table td.col-other{color:#5e5e5e}
.comp-table tr:last-child td{border-bottom:0}
@media (max-width:760px){
  .comp-table th,.comp-table td{padding:14px 14px;font-size:13px}
  .comp-table thead{display:none}
  .comp-table tr{display:flex;flex-direction:column;border-bottom:6px solid var(--bg)}
  .comp-table td{display:block;border:0;padding-left:18px;position:relative}
  .comp-table td::before{
    content:attr(data-label);
    display:block;font-size:10px;font-weight:700;letter-spacing:1px;
    text-transform:uppercase;color:#8b8b8b;margin-bottom:4px;
  }
  .comp-table td.col-sheriff::before{color:#7a5e00}
}

/* ---------- Departments Grid (C17 — 10 пілюль) ---------- */
.dept-coverage{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;margin-top:20px;
}
.dept-list{display:flex;flex-direction:column;gap:10px}
.dept-pill{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:12px;padding:14px 18px;
  display:flex;flex-direction:column;gap:3px;
  text-decoration:none;color:#1a1a1a;
  transition:border-color .2s, transform .15s, box-shadow .2s;
}
.dept-pill:hover{border-color:var(--yellow);transform:translateX(2px);box-shadow:0 4px 14px -6px rgba(245,200,0,.4)}
.dept-pill .dept-name{font-weight:700;font-size:15px}
.dept-pill .dept-name span{color:#8b8b8b;font-weight:500;margin-left:6px;font-size:13px}
.dept-pill .dept-cities{font-size:13px;color:var(--text-muted)}
@media (max-width:980px){
  .dept-coverage{grid-template-columns:1fr}
}

/* ---------- Form Section (text 50 + form 50) ---------- */
.form-split{
  display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;margin-top:30px;
}
.form-split-text h2{margin-top:0}
.form-split-text p{font-size:17px;line-height:28px;color:var(--text-muted);margin:12px 0 24px}
.form-split-text ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.form-split-text ul li{
  position:relative;padding-left:28px;
  font-size:14.5px;line-height:1.5;color:#374151;
}
.form-split-text ul li::before{
  content:"";position:absolute;left:0;top:3px;
  width:18px;height:18px;border-radius:50%;background:var(--yellow);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
}
@media (max-width:980px){
  .form-split{grid-template-columns:1fr;gap:30px}
}

/* ---------- Inline CTA card (для блогу) ---------- */
.inline-cta{
  background:var(--yellow);border-radius:18px;
  padding:34px 36px;margin:36px 0;
  text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px;
}
.inline-cta h3{
  font-size:24px;font-weight:700;color:#1a1a1a;margin:0;line-height:1.25;
}
.inline-cta p{font-size:15.5px;line-height:24px;color:#1a1a1a;margin:0;max-width:560px}

/* ============================================================ */
/* ============ BLOG — ідеальна типографіка long-form ========= */
/* ============================================================ */

/* ===== BLOG INDEX ===== */
.blog-hero{
  background:var(--bg);padding:80px 0 56px;border-bottom:1px solid var(--gray-line);
}
.blog-hero-inner{
  max-width:780px;margin:0 auto;text-align:center;
}
.blog-hero .breadcrumbs{justify-content:center}
.blog-hero h1{
  font-size:48px;line-height:1.1;font-weight:400;color:#1a1a1a;
  margin:20px 0 16px;letter-spacing:-1px;text-transform:capitalize;
}
.blog-hero h1 .accent{color:var(--yellow);font-weight:500}
.blog-hero .blog-hero-sub{
  font-size:18px;line-height:28px;color:var(--text-muted);max-width:680px;margin:0 auto;
}

.blog-list{padding:60px 0 80px;background:#fff}

/* Велика картка-герой (featured) — повна ширина */
.blog-featured{
  display:grid;grid-template-columns:1.1fr 1fr;gap:48px;
  background:#fff;border:1px solid var(--gray-line);
  border-radius:24px;overflow:hidden;
  box-shadow:0 18px 44px -28px rgba(16,24,40,.18);
  margin-bottom:60px;text-decoration:none;color:inherit;
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.blog-featured:hover{
  transform:translateY(-4px);
  border-color:var(--yellow);
  box-shadow:0 28px 60px -24px rgba(245,200,0,.35);
}
.blog-featured-image{
  position:relative;min-height:380px;background:#fafaf7;overflow:hidden;
}
.blog-featured-image img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s ease;
}
.blog-featured:hover .blog-featured-image img{transform:scale(1.04)}
.blog-featured-image .img-placeholder{
  min-height:380px;height:100%;border-radius:0;border:0;background:#f4f4ef;
}
.blog-featured-image .featured-badge{
  position:absolute;top:20px;left:20px;
  background:var(--yellow);color:#1a1a1a;
  font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
  padding:6px 14px;border-radius:30px;
  box-shadow:0 6px 16px -6px rgba(0,0,0,.25);
}
.blog-featured-body{
  padding:48px 44px;display:flex;flex-direction:column;justify-content:center;gap:18px;
}
.blog-featured-category{
  font-size:12px;font-weight:700;letter-spacing:1.4px;
  text-transform:uppercase;color:var(--text-muted);
}
.blog-featured-body h2{
  font-size:32px;line-height:1.2;font-weight:600;color:#1a1a1a;
  margin:0;letter-spacing:-.4px;
}
.blog-featured-body p{
  font-size:16px;line-height:26px;color:var(--text-muted);margin:0;
}
.blog-featured-meta{
  display:flex;flex-wrap:wrap;gap:18px;font-size:13.5px;color:var(--text-muted);
  margin-top:6px;
}
.blog-featured-meta span{display:inline-flex;align-items:center;gap:6px}
.blog-featured-cta{
  margin-top:14px;display:inline-flex;align-items:center;gap:10px;
  font-size:15px;font-weight:600;color:#1a1a1a;
  align-self:flex-start;
  border-bottom:2px solid var(--yellow);padding-bottom:3px;
}

/* Звичайні картки списку статей (поки порожні) */
.blog-list-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-bottom:60px;
}
.blog-card{
  background:#fff;border:1px solid var(--gray-line);border-radius:18px;
  overflow:hidden;text-decoration:none;color:inherit;display:flex;flex-direction:column;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.blog-card:hover{transform:translateY(-4px);border-color:var(--yellow);box-shadow:0 22px 44px -22px rgba(245,200,0,.35)}
.blog-card-image{
  height:220px;background:#fafaf7;overflow:hidden;position:relative;
}
.blog-card-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s}
.blog-card:hover .blog-card-image img{transform:scale(1.05)}
.blog-card-image .img-placeholder{min-height:220px;height:100%;border-radius:0;border:0;background:#f4f4ef}
.blog-card-body{
  padding:24px 26px 26px;display:flex;flex-direction:column;gap:12px;flex:1;
}
.blog-card-category{
  font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--text-muted);
}
.blog-card h3{
  font-size:18px;line-height:1.4;font-weight:600;margin:0;color:#1a1a1a;
}
.blog-card p{font-size:14px;line-height:22px;color:var(--text-muted);margin:0;flex:1}
.blog-card-meta{
  display:flex;gap:14px;font-size:12.5px;color:var(--text-muted);
  border-top:1px solid var(--gray-line);padding-top:12px;margin-top:auto;
}
@media (max-width:1080px){
  .blog-featured{grid-template-columns:1fr;gap:0}
  .blog-featured-image{min-height:280px}
  .blog-featured-image .img-placeholder{min-height:280px}
  .blog-featured-body{padding:32px 28px}
  .blog-list-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .blog-hero h1{font-size:34px}
  .blog-featured-body h2{font-size:24px}
  .blog-list-grid{grid-template-columns:1fr}
}

/* ===== ARTICLE PAGE (long-form) ===== */
.article-hero{
  background:var(--bg);padding:72px 0 64px;border-bottom:1px solid var(--gray-line);
}
.article-hero-inner{
  max-width:880px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.article-hero .breadcrumbs{justify-content:center;margin-bottom:20px}
.article-category{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;letter-spacing:1.4px;
  text-transform:uppercase;color:#1a1a1a;background:var(--yellow);
  padding:7px 16px;border-radius:30px;margin-bottom:22px;
}
.article-hero h1{
  font-size:46px;line-height:1.18;font-weight:400;color:#1a1a1a;
  margin:0 0 20px;letter-spacing:-.7px;text-transform:capitalize;
}
.article-hero h1 .accent{color:var(--yellow);font-weight:500}
.article-hero .subtitle{
  font-size:18px;line-height:30px;color:var(--text-muted);margin:0;max-width:740px;
}
.article-meta{
  display:flex;flex-wrap:wrap;justify-content:center;gap:28px;
  font-size:13.5px;color:var(--text-muted);
  padding-top:24px;border-top:1px solid var(--gray-line);margin-top:32px;
  width:100%;max-width:780px;
}
.article-meta-item{display:inline-flex;align-items:center;gap:9px}
.article-meta-item svg{flex-shrink:0;color:var(--text-muted)}
.article-meta-item strong{color:#1a1a1a;font-weight:600;margin-right:4px}

/* Article featured image */
.article-cover{
  max-width:1440px;margin:-48px auto 0;padding:0 100px;position:relative;z-index:2;
}
.article-cover-inner{
  border-radius:20px;overflow:hidden;
  background:#fafaf7;aspect-ratio:21/9;
  box-shadow:0 32px 70px -38px rgba(16,24,40,.4);
}
.article-cover-inner img{width:100%;height:100%;object-fit:cover;display:block}
.article-cover-inner .img-placeholder{
  min-height:100%;height:100%;border-radius:0;border:0;aspect-ratio:21/9;
}

/* Article 2-col layout: TOC sticky + article body */
.blog-article{padding:72px 0 90px;background:#fff}
.article-layout{
  display:grid;grid-template-columns:280px 1fr;gap:80px;align-items:start;
}
.article-sidebar{position:sticky;top:90px}

/* TOC sticky на десктопі */
.toc-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:16px;padding:24px 22px;
  box-shadow:0 4px 14px -8px rgba(16,24,40,.06);
}
.toc-card h2{
  font-size:11px;font-weight:700;letter-spacing:1.4px;text-transform:uppercase;
  color:var(--text-muted);margin:0 0 14px;
}
.toc-list{list-style:none;margin:0;padding:0;counter-reset:toc;display:flex;flex-direction:column;gap:8px}
.toc-list li{counter-increment:toc;padding-left:30px;position:relative}
.toc-list li::before{
  content:counter(toc,decimal-leading-zero);
  position:absolute;left:0;top:1px;
  font-size:11px;font-weight:700;color:var(--yellow);letter-spacing:.5px;
}
.toc-list a{
  text-decoration:none;color:#374151;font-size:14px;line-height:1.4;font-weight:500;
  display:block;padding:2px 0;transition:color .2s, padding-left .2s;
  border-left:2px solid transparent;padding-left:0;margin-left:-2px;
}
.toc-list a:hover{color:#1a1a1a}
.toc-list a.active{color:#1a1a1a;font-weight:600}

/* Reading progress bar */
.reading-progress{
  position:fixed;top:0;left:0;height:3px;
  background:var(--yellow);width:0%;z-index:300;
  transition:width .1s linear;
}

/* Article body */
.article-body{
  font-size:17px;line-height:30px;color:#1a1a1a;
  max-width:780px;
}
.article-body h2{
  font-size:30px;line-height:1.25;font-weight:600;
  margin:48px 0 16px;color:#1a1a1a;letter-spacing:-.3px;
  scroll-margin-top:90px;
  padding-top:8px;
}
.article-body h2:first-child{margin-top:0;padding-top:0}
.article-body h3{
  font-size:21px;line-height:1.35;font-weight:600;
  margin:34px 0 10px;color:#1a1a1a;
}
.article-body p{margin:0 0 20px;color:#1a1a1a}
.article-body ul,.article-body ol{margin:0 0 24px;padding-left:24px;color:#1a1a1a}
.article-body li{margin-bottom:10px;line-height:28px}
.article-body strong{color:#1a1a1a;font-weight:600}
.article-body a{
  color:#1a1a1a;text-decoration:underline;
  text-decoration-color:var(--yellow);text-decoration-thickness:2px;text-underline-offset:3px;
  font-weight:500;
}
.article-body a:hover{text-decoration-thickness:3px}

.article-body blockquote{
  border-left:4px solid var(--yellow);
  background:#fffbe8;padding:20px 26px;margin:28px 0;
  font-size:17px;line-height:28px;color:#1a1a1a;border-radius:0 14px 14px 0;
  font-style:italic;
}
/* Letter template — стиль документа-листа з шапкою */
.letter-mock{
  background:#fff;
  border:1px solid var(--gray-line);
  border-radius:14px;
  margin:28px 0;
  box-shadow:0 12px 32px -16px rgba(16,24,40,.16), 0 2px 6px -2px rgba(16,24,40,.05);
  overflow:hidden;
}
.letter-mock-header{
  display:flex;align-items:center;gap:10px;
  padding:14px 22px;
  border-bottom:1px solid var(--gray-line);
  background:#fafaf7;
  font-size:11.5px;font-weight:700;letter-spacing:1.4px;
  text-transform:uppercase;color:var(--text-muted);
}
.letter-mock-header svg{color:var(--text-muted);flex-shrink:0}
.letter-mock-header .letter-copy{
  margin-left:auto;background:#fff;border:1px solid var(--gray-line);
  border-radius:8px;padding:7px 13px;
  font-size:11.5px;font-weight:600;color:#1a1a1a;cursor:pointer;
  text-transform:none;letter-spacing:0;
  display:inline-flex;align-items:center;gap:6px;
  transition:background .2s,border-color .2s,transform .15s;
  font-family:inherit;
}
.letter-mock-header .letter-copy:hover{background:var(--yellow);border-color:var(--yellow)}
.letter-mock-header .letter-copy.copied{background:#0f9d58;border-color:#0f9d58;color:#fff}
.letter-mock-body{
  padding:28px 32px 30px;
  font-family:'Poppins','Helvetica Neue',Arial,sans-serif;
  font-size:14.5px;line-height:24px;
  color:#1a1a1a;
}
.letter-mock-body p{margin:0 0 14px;color:#1a1a1a}
.letter-mock-body p:last-child{margin-bottom:0}
.letter-mock-body p.placeholder{color:var(--text-muted);font-style:italic;font-size:14px}
.letter-mock-body .letter-divider{
  height:1px;background:var(--gray-line);margin:18px 0;
  border:0;
}
.letter-mock-body strong{color:#1a1a1a;font-weight:600}
.letter-mock-body .case-line{
  padding-left:14px;border-left:2px solid var(--yellow);margin:0 0 12px;
}

/* Inline code */
.article-body code{
  background:#fafaf7;border:1px solid var(--gray-line);
  border-radius:5px;padding:2px 7px;font-family:'Courier New',monospace;
  font-size:13.5px;color:#1a1a1a;
}

@media (max-width:760px){
  .letter-mock-body{padding:22px 22px 24px;font-size:13.5px;line-height:22px}
  .letter-mock-header{padding:12px 18px;font-size:10.5px;flex-wrap:wrap;gap:8px}
  .letter-mock-header .letter-copy{font-size:11px;padding:6px 10px}
}

/* Callouts — чисті, без насиченого фону, лише акцентна лінія + кольорова іконка */
.article-body .callout{
  background:#fff;border:1px solid var(--gray-line);
  border-left:3px solid #1a1a1a;
  border-radius:0 14px 14px 0;
  padding:22px 26px 22px 22px;margin:28px 0;
  font-size:15.5px;line-height:26px;color:#1a1a1a;
  display:flex;gap:16px;align-items:flex-start;
  box-shadow:0 6px 18px -12px rgba(16,24,40,.12);
}
.article-body .callout > svg{
  flex-shrink:0;width:24px;height:24px;margin-top:2px;
  color:#1a1a1a;
}
.article-body .callout > div{flex:1}
.article-body .callout strong{color:#1a1a1a;display:block;margin-bottom:4px;font-size:14px;letter-spacing:.3px;text-transform:uppercase}
.article-body .callout.warning{border-left-color:#c0392b}
.article-body .callout.warning > svg{color:#c0392b}
.article-body .callout.warning strong{color:#c0392b}
.article-body .callout.note{border-left-color:#1d4ed8}
.article-body .callout.note > svg{color:#1d4ed8}
.article-body .callout.note strong{color:#1d4ed8}
/* "À retenir" — yellow */
.article-body .callout:not(.warning):not(.note){border-left-color:var(--yellow)}
.article-body .callout:not(.warning):not(.note) > svg{color:#a78400}
.article-body .callout:not(.warning):not(.note) strong{color:#7a5e00}

/* Article inline CTA card */
.inline-cta{
  background:var(--yellow);
  border-radius:20px;padding:36px 38px;margin:48px 0;
  text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px;
  box-shadow:0 18px 38px -22px rgba(245,200,0,.55);
}
.inline-cta h3{
  font-size:24px;font-weight:700;color:#1a1a1a;margin:0;line-height:1.25;letter-spacing:-.2px;
}
.inline-cta p{font-size:15.5px;line-height:25px;color:#1a1a1a;margin:0;max-width:560px;opacity:.85}

/* Author block — без фону, лише розділювач і чиста типографіка */
.article-author{
  display:flex;align-items:center;gap:18px;margin-top:64px;padding:28px 0;
  border-top:1px solid var(--gray-line);
  border-bottom:1px solid var(--gray-line);
}
.article-author-avatar{
  width:54px;height:54px;border-radius:50%;background:var(--yellow);
  display:flex;align-items:center;justify-content:center;color:#1a1a1a;flex-shrink:0;
}
.article-author-info strong{display:block;font-size:15.5px;color:#1a1a1a;margin-bottom:3px;font-weight:600}
.article-author-info span{font-size:13.5px;color:var(--text-muted)}

/* Share — мінімалістичний, без фону */
.article-share{
  display:flex;align-items:center;gap:16px;margin:24px 0 0;
}
.article-share-label{font-size:12px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px}
.article-share-btns{display:flex;gap:8px;margin-left:auto}
.article-share-btn{
  width:38px;height:38px;border-radius:50%;background:#fff;border:1px solid var(--gray-line);
  display:inline-flex;align-items:center;justify-content:center;color:#1a1a1a;
  transition:background .2s,border-color .2s,transform .15s,color .2s;
}
.article-share-btn:hover{background:#1a1a1a;border-color:#1a1a1a;color:#fff;transform:translateY(-2px)}

/* Related articles — final block */
.related-section{
  background:var(--bg);padding:70px 0;border-top:1px solid var(--gray-line);
}
.related-section h2{
  font-size:30px;font-weight:400;color:#1a1a1a;margin:0 0 32px;
  letter-spacing:-.3px;text-transform:capitalize;
}
.related-section h2 .accent{color:var(--yellow);font-weight:500}
.related-articles{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.related-card{
  background:#fff;border:1px solid var(--gray-line);
  border-radius:18px;overflow:hidden;
  text-decoration:none;color:#1a1a1a;
  display:flex;flex-direction:column;
  transition:transform .3s, border-color .3s, box-shadow .3s;
}
.related-card:hover{transform:translateY(-4px);border-color:var(--yellow);box-shadow:0 22px 44px -22px rgba(245,200,0,.4)}
.related-card-image{height:180px;background:#fafaf7;overflow:hidden}
.related-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.related-card:hover .related-card-image img{transform:scale(1.05)}
.related-card-image .img-placeholder{min-height:180px;height:100%;border-radius:0;border:0;background:#f4f4ef}
.related-card-body{padding:22px 24px;display:flex;flex-direction:column;gap:8px;flex:1}
.related-card-category{font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--text-muted)}
.related-card h3{font-size:16px;font-weight:600;line-height:1.4;margin:0;color:#1a1a1a}
.related-card-meta{font-size:12.5px;color:var(--text-muted);margin-top:auto;padding-top:10px;display:flex;gap:12px}

/* Empty/coming-soon variant for cards */
.related-card.coming-soon{opacity:.55;pointer-events:none}
.related-card.coming-soon .related-card-image{background:#f4f4ef}

/* === Adapt: tablet & mobile === */
@media (max-width:1080px){
  .article-layout{grid-template-columns:1fr;gap:30px}
  .article-sidebar{position:static}
  .toc-card{margin-bottom:20px}
  .article-cover{margin-top:-30px;padding:0 24px}
  .related-articles{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .blog-hero{padding:60px 0 40px}
  .blog-hero h1{font-size:30px;line-height:1.2}
  .article-hero{padding:52px 0 44px}
  .article-hero h1{font-size:28px;line-height:36px;letter-spacing:-.3px}
  .article-hero .subtitle{font-size:16px;line-height:25px}
  .article-meta{gap:18px;font-size:12.5px}
  .article-cover{margin-top:-20px;padding:0 16px}
  .article-cover-inner{aspect-ratio:16/10;border-radius:14px}
  .article-body{font-size:16px;line-height:28px}
  .article-body h2{font-size:24px;line-height:32px;margin-top:36px}
  .article-body h3{font-size:18px;line-height:26px}
  .article-body blockquote,.article-body .callout{padding:16px 18px}
  .inline-cta{padding:24px 22px;margin:32px 0}
  .inline-cta h3{font-size:20px;line-height:1.3}
  .related-section{padding:50px 0}
  .related-section h2{font-size:24px}
  .related-articles{grid-template-columns:1fr}
}
