/* ============================================================
   SAINI FINANCE CO. — Design System
   Ledger / rate-board aesthetic. Warm paper, navy ink, gold accent.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&family=Roboto+Mono:wght@500;700&display=swap');

:root{
  /* Color tokens */
  --paper: #FAF6EE;
  --paper-deep: #F1E9D8;
  --ink: #1B2A4A;
  --ink-soft: #3A4A6B;
  --charcoal: #262626;
  --gold: #B8860B;
  --gold-deep: #8C6508;
  --gold-pale: #F4E9D8;
  --brick: #9C4A2F;
  --brick-pale: #F3E2DB;
  --sage: #4F6F52;
  --sage-pale: #E3EBE0;
  --line: #D9CDB0;
  --line-soft: #E8E0CC;
  --white: #FFFFFF;
  --shadow: 0 1px 0 rgba(27,42,74,0.06);

  /* Type */
  --display: 'Lora', serif;
  --body: 'Inter', sans-serif;
  --mono: 'Roboto Mono', monospace;

  /* Layout */
  --maxw: 1180px;
  --radius: 3px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }

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

/* ---------- Texture: faint ledger lines on paper ---------- */
.ledger-bg{
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 35px,
    rgba(27,42,74,0.035) 36px
  );
}

/* ---------- Top bar (trust strip) ---------- */
.topbar{
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar .wrap{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 8px 28px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar .topbar-address{ flex-grow:1; text-align:center; }
.topbar span{ opacity: 0.92; }
.topbar .topbar-badge{
  color: var(--gold);
  font-weight: 700;
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}
.lang-switch a{
  color: rgba(250,246,238,0.65);
  font-weight: 700;
  padding: 2px 4px;
}
.lang-switch a.active{
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.lang-switch a:hover{ color: var(--paper); }
.lang-switch .lang-sep{ color: rgba(250,246,238,0.35); }

/* ---------- Header ---------- */
header.site-header{
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top:0;
  z-index: 50;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 28px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 52px; height: 52px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text .brand-name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height:1.1;
  white-space: nowrap;
}
.brand-text .brand-loc{
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
nav.main-nav{
  display:flex;
  align-items:center;
  gap: 28px;
}
nav.main-nav a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  margin-right: 22px;
  white-space: nowrap;
}
nav.main-nav a:last-child{ margin-right: 0; }
.nav-drop{ position: relative; display:inline-block; }
.nav-drop > .drop-arrow{ font-size: 10px; margin-left: 4px; }
.nav-drop-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  min-width: 200px;
  padding: 8px;
  display:none;
  box-shadow: 0 10px 24px rgba(27,42,74,0.12);
  z-index: 60;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu{ display:block; }
.nav-drop-menu a{
  display:block;
  padding: 9px 12px;
  margin-right:0;
  border-radius: 3px;
  font-size: 14px;
}
.nav-drop-menu a:hover{ background: var(--gold-pale); color: var(--ink); }
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--ink); }
nav.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-3px;
  height: 2px;
  background: var(--gold);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 4px 0 rgba(27,42,74,0.18); }
.btn.btn-gold{ background: var(--gold); border-color: var(--gold-deep); color: var(--ink); }
.btn.btn-outline{ background: transparent; color: var(--ink); }
.btn.btn-whatsapp{ background: var(--sage); border-color: #3c5a3f; color: #fff; }
.btn.btn-sm{ padding: 8px 14px; font-size: 13px; }
.btn svg{ width:16px; height:16px; }

.menu-toggle{ display:none; background:none; border:2px solid var(--ink); border-radius:var(--radius); width:42px; height:42px; align-items:center; justify-content:center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after{ display:none; }

/* ---------- Hero ---------- */
.hero{
  background: var(--paper);
  padding: 56px 0 0;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.hero.centered .wrap{
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}
.hero.centered .eyebrow{ justify-content: center; }
.hero.centered p.lead{ max-width: 600px; margin-left:auto; margin-right:auto; }
.hero.centered .hero-actions{ justify-content: center; }
.hero.centered .trust-row{ justify-content: center; }
.hero.centered .trust-row .tstat{ text-align: center; }
.eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 700;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background: var(--brick);
  border-radius:50%;
  display:inline-block;
}
.hero h1{
  font-family: var(--display);
  font-size: 46px;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 700;
}
.hero h1 em{
  font-style: italic;
  color: var(--gold-deep);
}
.hero p.lead{
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-actions{
  display:flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.trust-row{
  display:flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-row .tstat{
  font-family: var(--mono);
  margin-right: 28px;
  margin-bottom: 10px;
}
.trust-row .tstat:last-child{ margin-right: 0; }
.trust-row .tstat .n{
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  display:block;
}
.trust-row .tstat .l{
  font-size: 11.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Rate Board (signature element) ---------- */
.rate-board{
  background: var(--ink);
  border-radius: 6px;
  padding: 28px 26px 22px;
  position: relative;
  box-shadow: 0 18px 40px -12px rgba(27,42,74,0.45);
}
.rate-board::before{
  content:"";
  position:absolute;
  top:14px; left:14px; right:14px; bottom:14px;
  border: 1px solid rgba(244,233,216,0.18);
  border-radius: 3px;
  pointer-events:none;
}
.rate-board-head{
  display:flex;
  justify-content: space-between;
  align-items:baseline;
  border-bottom: 1px solid rgba(244,233,216,0.25);
  padding-bottom: 14px;
  margin-bottom: 6px;
}
.rate-board-head .rb-title{
  font-family: var(--display);
  color: var(--paper);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.rate-board-head .rb-date{
  font-family: var(--mono);
  color: var(--gold);
  font-size: 11px;
}
.rate-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 13px 2px;
  border-bottom: 1px dashed rgba(244,233,216,0.18);
}
.rate-row:last-child{ border-bottom:none; }
.rate-row .rl{
  color: var(--paper);
  font-size: 14.5px;
  font-weight: 600;
}
.rate-row .rl .sub{
  display:block;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(244,233,216,0.55);
  font-weight: 400;
  margin-top: 2px;
}
.rate-row .rv{
  font-family: var(--mono);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 16px;
}
.rate-board-foot{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(244,233,216,0.25);
  font-size: 11.5px;
  color: rgba(244,233,216,0.65);
  display:flex;
  align-items:flex-start;
  gap:8px;
}

/* ---------- Section scaffolding ---------- */
section{ padding: 72px 0; }
section.tight{ padding: 48px 0; }
.section-head{
  max-width: 640px;
  margin: 0 0 40px;
}
.section-head.center{ margin: 0 auto 44px; text-align:center; }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head h2{
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 700;
}
.section-head p{
  color: var(--ink-soft);
  font-size: 16px;
  margin:0;
}
.bg-deep{ background: var(--paper-deep); }
.bg-ink{ background: var(--ink); color: var(--paper); }
.bg-ink .section-head h2{ color: var(--paper); }
.bg-ink .section-head p{ color: rgba(250,246,238,0.72); }

/* ---------- Product grid ---------- */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 22px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.product-card .pc-num{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-deep);
  font-weight:700;
  margin-bottom: 14px;
}
.product-card h3{
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 10px;
}
.product-card p{
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex-grow:1;
}
.product-card .pc-rate{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--brick);
  font-weight: 700;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.product-card a.pc-link{
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.product-card a.pc-link svg{ width:14px; height:14px; transition: transform .15s ease; }
.product-card a.pc-link:hover svg{ transform: translateX(3px); }

/* ---------- Process steps ---------- */
.process-rail{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  position: relative;
}
.process-rail::before{
  content:"";
  position:absolute;
  top: 22px; left: 5%; right:5%;
  height: 2px;
  background: var(--line);
  z-index:0;
}
.process-step{
  position:relative;
  z-index:1;
  text-align:center;
  padding: 0 8px;
}
.process-step .ps-num{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-weight:700;
  font-size: 16px;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
}
.process-step h4{
  font-family: var(--display);
  font-size: 15.5px;
  color: var(--ink);
  margin: 0 0 8px;
}
.process-step p{
  font-size: 13px;
  color: var(--ink-soft);
  margin:0;
}

/* ---------- Testimonials ---------- */
.testi-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.testi-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 24px 22px;
}
.testi-card .stars{ color: var(--gold-deep); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p{ font-size: 14.5px; color: var(--charcoal); margin: 0 0 16px; font-style: italic; }
.testi-card .testi-name{ font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-card .testi-tag{ font-family: var(--mono); font-size: 11px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--gold-pale);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 48px 0;
}
.cta-band .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3{
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 6px;
}
.cta-band p{ margin:0; color: var(--ink-soft); font-size:14.5px; }
.cta-band-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--ink);
  color: rgba(250,246,238,0.78);
  padding: 56px 0 0;
  font-size: 14px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,238,0.15);
}
.footer-grid h5{
  font-family: var(--display);
  color: var(--paper);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul li a:hover{ color: var(--gold); }
.footer-brand .brand-name{ color: var(--paper); font-family: var(--display); font-size: 19px; font-weight:700; }
.footer-brand p{ color: rgba(250,246,238,0.6); font-size: 13.5px; margin: 12px 0 0; max-width: 280px; }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(250,246,238,0.5);
  flex-wrap:wrap;
  gap:10px;
}
.footer-bottom .lic{ color: var(--gold); font-family: var(--mono); }

/* ---------- Language choice modal (first visit) ---------- */
.lang-modal-overlay{
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(27,42,74,0.55);
  z-index: 200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  animation: lang-fade-in 0.2s ease;
}
@keyframes lang-fade-in{ from{ opacity:0; } to{ opacity:1; } }
.lang-modal{
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid var(--line);
  max-width: 420px;
  width: 100%;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 60px -10px rgba(27,42,74,0.4);
}
.lang-modal-mark{
  width: 56px; height: 56px;
  margin: 0 auto 18px;
}
.lang-modal-mark img{ width:100%; height:100%; object-fit:contain; }
.lang-modal-q{
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 26px;
}
.lang-modal-q-hi{
  display:inline-block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 17px;
}
.lang-modal-actions{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.lang-modal-btn{
  width: 100%;
  justify-content: center;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--sage);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 100;
  border: none;
}
.wa-float svg{ width:28px; height:28px; }
.wa-float:hover{ transform: scale(1.06); }

/* ---------- Forms ---------- */
.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight: 700; color: var(--ink); }
.field .req{ color: var(--brick); }
.field input, .field select, .field textarea{
  font-family: var(--body);
  font-size: 14.5px;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--ink);
}
.field-hint{ font-size: 12px; color: var(--ink-soft); }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; margin-bottom:20px; }
.checkbox-row input{ margin-top:3px; }
.checkbox-row label{ font-size: 13.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-q{
  display:flex;
  justify-content: space-between;
  align-items:center;
  cursor:pointer;
  font-family: var(--display);
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 600;
}
.faq-q .plus{ font-family: var(--mono); font-size: 20px; color: var(--gold-deep); transition: transform .2s ease; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  display:none;
  padding-top: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 760px;
}
.faq-item.open .faq-a{ display:block; }

/* ---------- Badges / misc ---------- */
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{
  font-family: var(--mono);
  font-size: 11.5px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--ink-soft);
  display:flex; align-items:center; gap:6px;
}
.badge .dot{ width:6px; height:6px; border-radius:50%; background: var(--sage); }

.breadcrumb{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  padding: 18px 0 0;
}
.breadcrumb a{ color: var(--ink-soft); }
.breadcrumb a:hover{ color: var(--ink); }
.breadcrumb .sep{ margin: 0 6px; opacity: 0.5; }

.page-hero{
  padding: 28px 0 48px;
}
.page-hero h1{
  font-family: var(--display);
  font-size: 38px;
  color: var(--ink);
  margin: 10px 0 14px;
}
.page-hero p{
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 620px;
  margin:0;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.doc-list{ list-style:none; padding:0; margin:0; }
.doc-list li{
  display:flex;
  gap:12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.doc-list li .dl-icon{
  flex-shrink:0;
  width: 22px; height:22px;
  color: var(--sage);
}
.kv-table{ width:100%; border-collapse: collapse; }
.kv-table tr{ border-bottom: 1px solid var(--line-soft); }
.kv-table td{ padding: 13px 4px; font-size: 14.5px; }
.kv-table td:first-child{ color: var(--ink-soft); font-weight:600; width:42%; }
.kv-table td:last-child{ color: var(--ink); font-weight:700; font-family: var(--mono); }

/* ---------- Utility ---------- */
.center-text{ text-align:center; }
.mt-0{ margin-top:0; }
.muted{ color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1480px){
  nav.main-nav a{ margin-right: 12px; font-size: 13.5px; }
  .nav-cta{ gap: 8px; }
  .nav-cta .btn{ padding: 9px 13px; font-size: 12.5px; }
  .site-header .wrap{ padding: 14px 20px; }
}
@media (max-width: 1320px){
  .nav-cta .btn-outline{ display:none; }
}
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .testi-grid{ grid-template-columns: 1fr; }
  .process-rail{ grid-template-columns: repeat(5,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .two-col{ grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px){
  .topbar .topbar-address{ display:none; }
}
@media (max-width: 960px){
  nav.main-nav{
    display:none;
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction:column;
    align-items:flex-start;
    padding: 18px 28px 22px;
    gap: 16px;
  }
  nav.main-nav.open{ display:flex; }
  .nav-drop{ display:block; width:100%; }
  .nav-drop > a{ margin-right:0; pointer-events:none; }
  .nav-drop-menu{
    position: static;
    display:block;
    background: transparent;
    border:none;
    box-shadow:none;
    min-width: 0;
    padding: 2px 0 4px 14px;
    margin-top: 6px;
  }
  .nav-drop-menu a{ padding: 7px 0; font-size: 14px; }
  .nav-drop .drop-arrow{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
  .hero h1{ font-size: 32px; }
  .process-rail{ grid-template-columns: repeat(2,1fr); gap: 28px 12px; }
  .process-rail::before{ display:none; }
  .product-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .form-grid{ grid-template-columns: 1fr; }
  .section-head h2{ font-size: 26px; }
  .cta-band .wrap{ flex-direction:column; align-items:flex-start; }
  .trust-row{ gap:18px; }
}
