/* =============================================================
   SupportiCare — Global Stylesheet
   Independent phone technical support service.
   Single source of design truth for every page.
   Sections: 1) Tokens  2) Base  3) Layout  4) Buttons
   5) Topbar/Header/Nav  6) Hero  7) Cards & sections  8) Steps
   9) Trust badges 10) Service detail 11) Testimonials 12) FAQ
   13) Forms 14) Footer 15) Utilities 16) Responsive
   ============================================================= */

/* ---------- 1) Design tokens ---------- */
:root {
  --brand:        #1d4ed8;   /* primary blue */
  --brand-600:    #2563eb;
  --brand-700:    #1e40af;
  --brand-navy:   #0f2557;   /* deep navy for contrast blocks */
  --brand-soft:   #eff4ff;   /* tinted blue backgrounds */

  --accent:       #0d9488;   /* teal-green technology accent */
  --accent-600:   #0f766e;
  --accent-soft:  #e6faf6;   /* tinted green backgrounds */

  --ink:          #0f172a;   /* headings */
  --body:         #334155;   /* body text */
  --muted:        #64748b;   /* secondary text */
  --line:         #e6eaf1;   /* borders */
  --bg:           #ffffff;
  --bg-soft:      #f7f9fc;   /* soft gray sections */

  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 2px rgba(15, 37, 87, .06);
  --shadow:       0 10px 30px -12px rgba(15, 37, 87, .18);
  --shadow-lg:    0 24px 60px -20px rgba(15, 37, 87, .28);

  --maxw:         1160px;
  --gap:          clamp(1rem, 2.5vw, 2rem);
  --ease:         cubic-bezier(.22, .61, .36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- 2) Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

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

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

a { color: var(--brand); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--brand-700); }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .45);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 3) Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(160deg, var(--brand-navy), #163377); color: #dbe4f7; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-soft);
  padding: .4rem .8rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.section--navy .eyebrow { background: rgba(255,255,255,.1); color: #bcd0ff; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 4) Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .85rem 1.5rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-lg); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--brand-navy); }

.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }

/* ---------- 5) Topbar / Header / Nav ---------- */
/* Slim independence disclaimer bar (scrolls away; header stays sticky) */
.topbar {
  background: var(--brand-navy); color: #cdd8f0; font-size: .82rem;
  text-align: center; padding: .5rem 1rem; line-height: 1.4;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar .dot-sep { opacity: .4; margin: 0 .5rem; }
.topbar a { color: #bcd0ff; text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(150deg, var(--brand-600), var(--brand-navy)); color: #fff; }
.brand-mark svg { width: 20px; height: 20px; }
.brand span.thin { font-weight: 500; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: .35rem; }
.main-nav a.nav-link {
  color: var(--body); font-weight: 500; font-size: .96rem;
  padding: .55rem .85rem; border-radius: 10px;
}
.main-nav a.nav-link:hover { color: var(--brand); background: var(--brand-soft); }
.main-nav a.nav-link.is-active { color: var(--brand); font-weight: 600; }
.main-nav .btn { margin-left: .5rem; }

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

/* ---------- 6) Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 85% 10%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(15,37,87,.07), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero h1 { margin-bottom: 1.1rem; }
.hero-lede { font-size: 1.15rem; color: var(--muted); max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; color: var(--muted); font-size: .9rem; }
.hero-trust b { color: var(--ink); font-size: 1.35rem; display: block; letter-spacing: -.02em; }

/* Hero illustration card (SVG scene) */
.hero-art { position: relative; }
.hero-art .art-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.25rem; overflow: hidden;
}
.hero-art svg { width: 100%; height: auto; border-radius: 14px; }
.floating-badge {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: .7rem .9rem;
  display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 600; color: var(--ink);
}
.floating-badge .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; }
.floating-badge.one { top: -18px; left: -18px; }
.floating-badge.two { bottom: -18px; right: -14px; }

/* ---------- 7) Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6def0; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .97rem; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 1.1rem;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.green { background: var(--accent-soft); color: var(--accent-600); }

/* Independence / trust note (inline reassurance block) */
.trust-note {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--accent-soft); color: var(--accent-600);
  border: 1px solid #bfeee6; border-radius: var(--radius-pill);
  padding: .5rem 1rem; font-size: .86rem; font-weight: 600;
}
.trust-note svg { width: 16px; height: 16px; flex: none; }

/* Highlighted callout card (e.g. "not affiliated" statement) */
.callout {
  border: 1px solid #bfeee6; background: var(--accent-soft);
  border-radius: var(--radius-lg); padding: 1.6rem 1.8rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.callout .icon-badge { background: #fff; margin: 0; flex: none; }
.callout h3 { margin-bottom: .35rem; }
.callout p { margin: 0; color: var(--accent-600); }

.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 600; font-size: .92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- 8) Process ---------- */
.process-grid { counter-reset: step; }
.process-step { position: relative; padding-top: 1rem; }
.process-step .step-num {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--brand);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .8rem;
}
.process-step .step-num::before {
  content: ""; width: 40px; height: 40px; border-radius: 12px; background: #fff;
  border: 1px solid var(--line); display: grid; place-items: center;
  counter-increment: step; content: counter(step); color: var(--ink); font-size: 1.05rem; box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { color: var(--muted); font-size: .94rem; margin: 0; }
.process-grid { position: relative; }

/* ---------- 9) Tech badges ---------- */
.tech-list { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.tech-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.05rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-weight: 600; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.tech-badge:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.tech-badge .tk { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* ---------- 10) Portfolio ---------- */
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-thumb { aspect-ratio: 16 / 10; width: 100%; position: relative; }
.portfolio-thumb svg { width: 100%; height: 100%; }
.portfolio-body { padding: 1.4rem 1.5rem 1.6rem; }
.portfolio-body h3 { margin-bottom: .35rem; }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-soft); padding: .3rem .7rem; border-radius: var(--radius-pill); margin-bottom: .8rem;
}
.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .5rem; }
.feature-list li { position: relative; padding-left: 1.7rem; font-size: .92rem; color: var(--body); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---------- 11) Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: .8rem; }
.quote-card blockquote { margin: 0 0 1.2rem; font-size: 1.02rem; color: var(--ink); }
.quote-author { display: flex; align-items: center; gap: .8rem; }
.quote-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--brand-600), var(--brand-navy)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote-author .who { font-size: .9rem; }
.quote-author .who b { display: block; color: var(--ink); }
.quote-author .who span { color: var(--muted); }

/* ---------- 12) FAQ accordion ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: .8rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 1.3rem; font-size: 1.02rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit;
}
.faq-q .chev { flex: none; width: 20px; height: 20px; transition: transform .25s var(--ease); color: var(--brand); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- 13) Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: #dc2626; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fdfdff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form-note { font-size: .84rem; color: var(--muted); margin-top: .3rem; }

.alert { border-radius: 12px; padding: 1rem 1.15rem; margin-bottom: 1.4rem; font-size: .95rem; font-weight: 500; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.contact-meta { display: grid; gap: 1.1rem; }
.contact-meta .meta-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-meta .meta-item .icon-badge { margin-bottom: 0; flex: none; width: 46px; height: 46px; }
.contact-meta .meta-item h4 { margin: 0 0 .15rem; font-size: 1rem; }
.contact-meta .meta-item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- 14) Footer ---------- */
.site-footer { background: var(--brand-navy); color: #b9c6e4; padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand:hover { color: #fff; }
.site-footer p { color: #9fb0d4; font-size: .93rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { color: #b9c6e4; font-size: .93rem; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdd8f0; }
.footer-social a:hover { background: var(--brand); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; font-size: .82rem; color: #8ea1c9; line-height: 1.6; max-width: 90ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .86rem; color: #8ea1c9; }
.footer-bottom a { color: #8ea1c9; }
.footer-bottom a:hover { color: #fff; }

/* ---------- 15) CTA strip ---------- */
.cta-strip { text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: .6rem; }
.cta-strip p { color: #c5d2ee; max-width: 55ch; margin: 0 auto 1.8rem; }
.cta-strip .btn-primary { background: #fff; color: var(--brand-navy); }
.cta-strip .btn-primary:hover { background: #eaf0ff; color: var(--brand-navy); }

/* ---------- 15) Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.prose > * + * { margin-top: 1rem; }
.prose h3 { margin-top: 2rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--body); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .1rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* Reveal-on-scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .tech-badge:hover { transform: none; }
}

/* Page hero (inner pages) */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 0%, rgba(37,99,235,.08), transparent 60%); }
.page-hero .container { position: relative; padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- 16) Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-lede { max-width: none; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.6rem;
    gap: .2rem; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s var(--ease); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .main-nav.open { transform: none; }
  .main-nav a.nav-link { padding: .8rem .6rem; font-size: 1.05rem; }
  .main-nav .btn { margin: .6rem 0 0; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem 1.4rem; }
}
