/* ═══════════════════════════════════════════════════════════
   AGENTDECK — components.css  (white theme)
   ═══════════════════════════════════════════════════════════ */

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(14,15,20,.07); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--h1); font-size: 22px; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.nav-logo .dot-med  { color: var(--med); }
.nav-logo .dot-immo { color: var(--immo); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 7px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: var(--steel);
  text-decoration: none; transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--ink); background: var(--off2); }
.nav-links .nav-cta {
  background: var(--ink); color: #fff; padding: 8px 20px;
  transition: background .18s, transform .18s;
}
.nav-links .nav-cta:hover { background: var(--ink2); transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: 1px solid var(--bd); padding: 6px 10px; border-radius: 7px; font-size: 18px; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  padding: 100px 32px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 26px; font-family: var(--h1); color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--bd); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  padding-top: 100px; min-height: 100vh;
  background: var(--white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--bd) 1px, transparent 1px), linear-gradient(90deg, var(--bd) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .4;
}
.hero-blob {
  position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px);
}
.hero-blob-1 {
  width: 700px; height: 500px; top: -100px; right: -120px;
  background: radial-gradient(ellipse, rgba(11,191,189,.09) 0%, transparent 70%);
  animation: blobDrift 20s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px; height: 600px; bottom: -80px; left: -60px;
  background: radial-gradient(ellipse, rgba(212,148,58,.07) 0%, transparent 70%);
  animation: blobDrift 26s ease-in-out infinite reverse;
}
@keyframes blobDrift { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-30px,20px)} 66%{transform:translate(20px,-25px)} }

.hero-content { position: relative; z-index: 1; padding: 64px 0 80px; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-title { margin-bottom: 28px; }
.hero-sub { margin-bottom: 44px; font-size: 18px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--bd); border-radius: var(--radius);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow);
  max-width: 720px;
}
.hero-stat {
  flex: 1; padding: 20px 24px; border-right: 1px solid var(--bd);
  transition: background .2s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--off); }
.hs-num {
  font-family: var(--h1); font-size: 34px; font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 5px;
}
.hs-lbl { font-size: 12px; color: var(--steel2); line-height: 1.4; }

/* Hero right — App previews */
.hero-visuals {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 52%; max-width: 680px; display: flex; flex-direction: column; gap: 16px;
  pointer-events: none;
}
@media (max-width: 1100px) { .hero-visuals { display: none; } }

/* App window chrome */
.app-window {
  background: var(--white); border: 1px solid var(--bd);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.app-window.floating-1 {
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg) translateX(40px);
  transition: transform .4s ease;
}
.app-window.floating-2 {
  transform: perspective(900px) rotateY(-8deg) rotateX(2deg) translateX(60px);
  transition: transform .4s ease;
}
.aw-bar {
  height: 40px; background: var(--off); border-bottom: 1px solid var(--bd);
  display: flex; align-items: center; padding: 0 14px; gap: 6px;
}
.aw-dot { width: 10px; height: 10px; border-radius: 50%; }
.aw-dot-r { background: #ff5f57; } .aw-dot-y { background: #ffbd2e; } .aw-dot-g { background: #28ca41; }
.aw-addr { flex: 1; height: 22px; background: var(--bd); border-radius: 4px; margin: 0 16px; }
.aw-body { padding: 20px; }

/* ── MedIA preview inside hero ─────────────────────────────── */
.media-prev-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--bd);
}
.media-prev-logo { width: 28px; height: 28px; border-radius: 8px; background: var(--med); display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.media-prev-name { font-size: 13px; font-weight: 700; }
.media-prev-sub  { font-size: 11px; color: var(--steel2); }

/* Slot picker preview */
.sp-dates { display: flex; gap: 6px; margin-bottom: 14px; }
.sp-date {
  flex: 1; padding: 8px 4px; border-radius: 8px; text-align: center;
  border: 1.5px solid var(--bd); cursor: default; transition: all .15s;
}
.sp-date.sp-active { border-color: var(--med); background: var(--med-bg); }
.sp-date-dow { font-size: 9px; text-transform: uppercase; color: var(--steel2); letter-spacing: .06em; }
.sp-date-num { font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.sp-date-mon { font-size: 9px; color: var(--steel2); }
.sp-date-cnt { font-size: 9.5px; color: var(--med); font-weight: 700; margin-top: 2px; }
.sp-date.sp-active .sp-date-cnt { color: var(--med-d); }

.sp-slots-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--steel2); margin-bottom: 7px; font-family: var(--mono); }
.sp-slots { display: flex; flex-wrap: wrap; gap: 5px; }
.sp-slot {
  padding: 6px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; font-family: var(--mono);
  border: 1.5px solid var(--bd); color: var(--steel); cursor: default;
}
.sp-slot.free    { border-color: var(--med-bd); color: var(--med-d); background: var(--med-bg); }
.sp-slot.taken   { background: var(--off2); opacity: .5; }
.sp-slot.chosen  { background: var(--med); color: white; border-color: var(--med); }

.sp-cta {
  margin-top: 12px; padding: 10px; border-radius: 8px;
  background: var(--med); color: white; text-align: center;
  font-size: 12.5px; font-weight: 700;
}

/* ── ImmoIA preview ─────────────────────────────────────────── */
.immo-prev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.immo-card {
  border-radius: 9px; overflow: hidden; border: 1px solid var(--bd);
  background: var(--white);
}
.immo-card-img { height: 58px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.immo-card-info { padding: 9px 11px; }
.immo-card-price { font-size: 13px; font-weight: 800; color: var(--immo); font-family: var(--mono); }
.immo-card-addr  { font-size: 10px; color: var(--steel2); margin-top: 1px; }
.immo-card-tag   { display: inline-block; margin-top: 4px; padding: 2px 7px; border-radius: 4px; font-size: 9.5px; font-weight: 700; font-family: var(--mono); }
.tag-green { background: rgba(34,197,94,.1); color: #16a34a; }
.tag-amber { background: var(--immo-bg); color: var(--immo-d); }

.immo-chat { margin-top: 12px; padding: 10px 12px; border-radius: 9px; background: var(--off); border: 1px solid var(--bd); font-size: 11.5px; color: var(--steel); line-height: 1.5; }
.immo-chat em { color: var(--immo-d); font-style: italic; }

/* ── PRODUCT SECTION ─────────────────────────────────────────── */
.section-pad { padding: 110px 0; }
.section-pad--lg { padding: 130px 0; }
.section-bg-off { background: var(--off); }
.section-bg-off2 { background: var(--off2); }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-grid.reverse { direction: rtl; }
.product-grid.reverse > * { direction: ltr; }
.product-visual { position: relative; }
.product-visual .app-window {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
  transition: transform .5s ease;
}
.product-visual:hover .app-window { transform: perspective(1000px) rotateY(2deg) rotateX(1deg); }

.product-copy { display: flex; flex-direction: column; gap: 22px; }
.product-copy .t-h2 { margin-top: 8px; }
.product-copy .t-body { max-width: 460px; }

/* Feature list */
.feat-list { display: flex; flex-direction: column; gap: 11px; }
.feat-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--bd);
  box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s;
}
.feat-row:hover { border-color: var(--bd2); box-shadow: var(--shadow); }
.feat-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.feat-icon.med-bg  { background: var(--med-bg);  }
.feat-icon.immo-bg { background: var(--immo-bg); }
.feat-row-title { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; color: var(--ink); }
.feat-row-desc  { font-size: 12.5px; color: var(--steel2); line-height: 1.5; }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden; }
.feat-cell { padding: 32px; border-right: 1px solid var(--bd); border-bottom: 1px solid var(--bd); background: var(--white); transition: background .2s; }
.feat-cell:nth-child(3n) { border-right: none; }
.feat-cell:nth-child(n+7) { border-bottom: none; }
.feat-cell:hover { background: var(--off); }
.feat-cell-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feat-cell-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feat-cell-desc  { font-size: 13px; color: var(--steel); line-height: 1.65; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.steps-connector {
  position: absolute; top: 32px; left: calc(12.5% + 32px); right: calc(12.5% + 32px);
  height: 1px; background: linear-gradient(90deg, var(--med), var(--immo)); z-index: 0;
}
.step { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.step-bubble {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--bd);
  box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  font-family: var(--h1); font-size: 24px; font-weight: 700; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.step:hover .step-bubble { border-color: var(--med); box-shadow: 0 0 0 6px var(--med-bg); }
.step-tag  { font-family: var(--mono); font-size: 10.5px; color: var(--steel3); letter-spacing: .1em; }
.step-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.step-desc { font-size: 13px; color: var(--steel2); line-height: 1.6; }

/* ── INTEGRATION LOGOS ──────────────────────────────────────── */
.int-strip { border: 1px solid var(--bd); border-radius: var(--radius); overflow: hidden; }
.int-strip-inner { display: flex; }
.int-logo {
  flex: 1; padding: 22px 20px; border-right: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--steel);
  transition: background .18s, color .18s;
}
.int-logo:last-child { border-right: none; }
.int-logo:hover { background: var(--off); color: var(--ink); }
.int-logo-icon { font-size: 20px; }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-toggle-wrap { display: flex; gap: 0; border: 1.5px solid var(--bd); border-radius: 9px; overflow: hidden; max-width: 360px; margin-bottom: 52px; background: var(--white); }
.pricing-tab { flex: 1; padding: 10px 6px; background: transparent; border: none; font-size: 13px; font-weight: 600; color: var(--steel); transition: all .18s; cursor: pointer; border-right: 1px solid var(--bd); font-family: var(--ui); }
.pricing-tab:last-child { border-right: none; }
.pricing-tab.active { background: var(--ink); color: #fff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card { background: var(--white); border: 1.5px solid var(--bd); border-radius: 20px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--ink); box-shadow: 0 8px 32px rgba(14,15,20,.12); }
.pricing-card.featured:hover { box-shadow: 0 24px 64px rgba(14,15,20,.18); }
.pricing-card.med-featured  { border-color: var(--med); }
.pricing-card.immo-featured { border-color: var(--immo); }

.pc-head { padding: 28px 28px 22px; border-bottom: 1px solid var(--bd); }
.pc-badge { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel2); margin-bottom: 10px; display: block; }
.pc-name { font-family: var(--h1); font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.pc-tagline { font-size: 12.5px; color: var(--steel2); line-height: 1.5; margin-bottom: 20px; }
.pc-price { display: flex; align-items: flex-start; gap: 2px; }
.pc-currency { font-size: 22px; font-weight: 700; margin-top: 8px; color: var(--ink); }
.pc-amount  { font-family: var(--h1); font-size: 52px; font-weight: 700; color: var(--ink); line-height: 1; }
.pc-period  { font-size: 14px; color: var(--steel2); align-self: flex-end; margin-bottom: 6px; margin-left: 2px; }
.pc-setup   { font-size: 12px; color: var(--steel3); margin-top: 6px; font-family: var(--mono); }

.pc-features { flex: 1; padding: 22px 28px; display: flex; flex-direction: column; gap: 10px; }
.pc-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink3); }
.pc-feat .check { flex-shrink: 0; color: var(--med); margin-top: 1px; }
.pc-feat .check.immo { color: var(--immo); }
.pc-feat .check.off  { color: var(--steel3); }
.pc-feat .off-text   { color: var(--steel3); }

.pc-footer { padding: 18px 28px 28px; }
.pc-footer .btn { width: 100%; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { background: var(--white); border: 1px solid var(--bd); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { font-size: 14px; color: #F59E0B; letter-spacing: 2px; }
.testi-quote { font-family: var(--h1); font-style: italic; font-size: 17px; line-height: 1.65; color: var(--ink); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 11.5px; color: var(--steel2); font-family: var(--mono); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--bd); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink);
  transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--med-d); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid var(--bd); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--steel2); transition: all .25s; }
.faq-item.open .faq-icon { background: var(--med); border-color: var(--med); color: white; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--steel); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.17,.67,.3,1), padding .25s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── CTA FINAL ──────────────────────────────────────────────── */
#section-cta { background: var(--ink); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.cta-bg-orb-1 { width: 500px; height: 500px; top: -100px; left: -80px; background: radial-gradient(circle, rgba(11,191,189,.12) 0%, transparent 70%); }
.cta-bg-orb-2 { width: 500px; height: 500px; bottom: -100px; right: -80px; background: radial-gradient(circle, rgba(212,148,58,.1) 0%, transparent 70%); }
#section-cta .t-display { color: white; }
#section-cta .t-body    { color: rgba(255,255,255,.6); max-width: 480px; margin: 20px auto 44px; }
#section-cta .btn--ghost { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
#section-cta .btn--ghost:hover { border-color: white; color: white; background: rgba(255,255,255,.07); }
.cta-note { margin-top: 28px; font-size: 12.5px; color: rgba(255,255,255,.35); font-family: var(--mono); }

/* ── ORDER MODAL ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(14,15,20,.5); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: modalBgIn .25s ease; }
@keyframes modalBgIn { from{opacity:0} to{opacity:1} }
.modal {
  width: 100%; max-width: 500px; background: var(--white);
  border-radius: 20px; border: 1px solid var(--bd);
  box-shadow: var(--shadow-xl); overflow: hidden;
  animation: modalIn .3s cubic-bezier(.17,.67,.3,1.2);
}
@keyframes modalIn { from{opacity:0;transform:scale(.94) translateY(12px)} to{opacity:1;transform:none} }
.modal-head {
  padding: 26px 28px; border-bottom: 1px solid var(--bd);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.modal-head-title { font-family: var(--h1); font-size: 24px; font-weight: 600; }
.modal-head-sub   { font-size: 13px; color: var(--steel2); margin-top: 4px; }
.modal-close { background: var(--off2); border: 1px solid var(--bd); color: var(--steel); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 15px; flex-shrink: 0; transition: all .15s; }
.modal-close:hover { background: var(--bd); color: var(--ink); }
.modal-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.mfield { display: flex; flex-direction: column; gap: 5px; }
.mfield label { font-size: 12px; font-weight: 700; color: var(--steel); text-transform: uppercase; letter-spacing: .04em; }
.mfield input, .mfield select, .mfield textarea {
  padding: 11px 13px; border-radius: 8px;
  background: var(--off); border: 1.5px solid var(--bd);
  color: var(--ink); font-size: 14px; font-family: var(--ui);
  outline: none; transition: border-color .2s, background .2s; resize: none;
}
.mfield input:focus, .mfield select:focus, .mfield textarea:focus { border-color: var(--med); background: var(--white); }
.mfield input::placeholder, .mfield textarea::placeholder { color: var(--steel3); }
.m2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-err { font-size: 13px; color: #dc2626; padding: 10px 13px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 7px; display: none; }
.modal-footer { padding: 0 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.modal-footer .btn { width: 100%; }
.modal-legal { text-align: center; font-size: 12px; color: var(--steel3); }
.modal-success { padding: 52px 28px; text-align: center; display: none; flex-direction: column; align-items: center; gap: 14px; }
.modal-success.show { display: flex; }
.success-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: #ecfdf5; border: 2px solid #a7f3d0; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.success-title { font-family: var(--h1); font-size: 24px; }
.success-msg   { font-size: 14px; color: var(--steel); line-height: 1.7; max-width: 360px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--bd); padding: 60px 32px 36px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand {}
.footer-logo { font-family: var(--h1); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.footer-tagline { font-size: 13.5px; color: var(--steel); line-height: 1.65; max-width: 300px; margin-bottom: 14px; }
.footer-email { font-family: var(--mono); font-size: 12.5px; color: var(--steel2); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--steel); transition: color .15s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--bd); font-size: 12.5px; color: var(--steel2); }

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header .t-label { margin-bottom: 16px; }
.section-header .t-h2 { margin-bottom: 14px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-grid.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testi-grid   { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .feat-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stat    { min-width: 50%; }
}
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-mobile-btn { display: block; }
  .container    { padding: 0 18px; }
  .section-pad  { padding: 72px 0; }
  .section-pad--lg { padding: 80px 0; }
  .hero-stats   { flex-wrap: wrap; }
  .hero-stat    { flex-basis: 50%; }
  .feat-grid    { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .int-strip-inner { flex-direction: column; }
  .int-logo     { border-right: none; border-bottom: 1px solid var(--bd); }
  .pricing-grid { max-width: 100%; }
  .m2col { grid-template-columns: 1fr; }
}
