/* =================================================================
   Elecrechaun — design system
   Palette pulled from the brand logo: warm charcoal, sage/mint
   green, and gold. Built for speed: no frameworks, minimal CSS.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #2b2823;
  --ink-soft:   #5f5a51;
  --cream:      #faf7f0;
  --cream-2:    #f2ecdf;
  --line:       #e7dfce;

  --green-900:  #173f30;
  --green-800:  #1f4c3b;
  --green-700:  #2b6850;
  --green-600:  #357c61;
  --green-500:  #4f9e7e;
  --mint:       #cfe7da;
  --mint-2:     #e3f1ea;

  --gold:       #e7b13e;
  --gold-600:   #cf9a24;
  --gold-soft:  #f5d883;
  --clover:     #6cae4a;
  --white:      #ffffff;

  --shadow-sm: 0 1px 2px rgba(33, 30, 20, .06), 0 2px 6px rgba(33, 30, 20, .05);
  --shadow-md: 0 6px 18px rgba(33, 30, 20, .08), 0 2px 6px rgba(33, 30, 20, .05);
  --shadow-lg: 0 20px 45px rgba(23, 63, 48, .16);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --pill: 999px;

  --container: 1140px;
  --gutter: clamp(1.1rem, 4vw, 2.2rem);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-800); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }

h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.1vw, 2.55rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 0.6rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 0.9rem;
}
.eyebrow .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(231, 177, 62, .18); }
.eyebrow-dark { color: var(--green-700); }
.eyebrow-dark .eyebrow-dot { background: var(--green-600); box-shadow: 0 0 0 4px rgba(53, 124, 97, .14); }

.text-gold { color: var(--gold); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 0.6rem; top: -3rem; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.65rem 1rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0.6rem; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: var(--pill); border: 0; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.15em; height: 1.15em; }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.9rem; }

.btn-gold  { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn-gold:hover { background: var(--gold-600); }
.btn-green { --btn-bg: var(--green-700); --btn-fg: #fff; }
.btn-green:hover { background: var(--green-800); }
.btn-dark  { --btn-bg: var(--green-900); --btn-fg: #fff; }
.btn-dark:hover { background: #0f2c21; }
.btn-ghost {
  --btn-fg: #fff; background: transparent; box-shadow: none;
  border: 1.5px solid rgba(255, 255, 255, .45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .8); }

/* Shared icon styling */
.ico { fill: currentColor; }
.ico-check { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; width: 1.05em; height: 1.05em; }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 44px; height: 44px; border-radius: 12px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 0.4rem; padding: 0; }
.nav-menu > li > a { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--ink); padding: 0.55rem 0.85rem; border-radius: var(--r-sm); transition: background-color .15s var(--ease), color .15s var(--ease); }
.nav-menu > li > a:hover { background: var(--mint-2); color: var(--green-800); }
.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { color: var(--ink); }

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

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(120% 120% at 80% -10%, var(--green-700) 0%, var(--green-800) 42%, var(--green-900) 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-circuit { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--gold); opacity: 0.14; }
.hero-glow { position: absolute; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px; right: -8%; top: -22%; border-radius: 50%; background: radial-gradient(circle, rgba(231, 177, 62, .35) 0%, rgba(231, 177, 62, 0) 65%); }
.spark { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 12px 2px rgba(245, 216, 131, .7); opacity: .85; }
.spark-1 { left: 18%; top: 30%; animation: twinkle 3.2s var(--ease) infinite; }
.spark-2 { left: 62%; top: 22%; width: 4px; height: 4px; animation: twinkle 2.4s var(--ease) infinite .6s; }
.spark-3 { left: 44%; top: 72%; width: 5px; height: 5px; animation: twinkle 3.8s var(--ease) infinite 1.1s; }
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.25); } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3.4rem, 3rem + 6vw, 6.5rem); }

.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow .eyebrow-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(245, 216, 131, .22); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero-lead { color: rgba(255, 255, 255, .85); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); max-width: 46ch; margin-top: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.hero-actions .btn-gold { color: var(--ink); }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding: 0; margin-top: 2.1rem; border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.4rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, .92); }
.hero-badges .ico-check { color: var(--gold-soft); }

/* Hero art */
.hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-badge-card {
  position: relative; display: grid; place-items: center;
  width: min(340px, 72vw); aspect-ratio: 1; border-radius: 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .96), rgba(227, 241, 234, .9));
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .6);
}
.hero-logo { width: 74%; height: auto; filter: drop-shadow(0 10px 24px rgba(23, 63, 48, .18)); }
.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--ink); font-weight: 600; font-size: 0.86rem;
  padding: 0.6rem 0.9rem; border-radius: var(--pill); box-shadow: var(--shadow-md);
}
.hero-chip .ico, .hero-chip .ico-check { width: 1.1em; height: 1.1em; color: var(--green-600); }
.hero-chip .ico { color: var(--gold-600); }
.hero-chip-1 { top: 6%; left: -4%; animation: float 5s ease-in-out infinite; }
.hero-chip-2 { bottom: 8%; right: -6%; animation: float 5.6s ease-in-out infinite .8s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* =================================================================
   TRUST BAR
   ================================================================= */
.trust { background: var(--green-900); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .1); border-radius: 0; }
.trust-item { background: var(--green-900); padding: clamp(1.4rem, 3vw, 2.2rem) 1.2rem; text-align: center; }
.trust-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); color: var(--gold-soft); letter-spacing: -0.02em; }
.trust-label { display: block; margin-top: 0.35rem; font-size: 0.92rem; color: rgba(255, 255, 255, .78); }

/* =================================================================
   SERVICES
   ================================================================= */
.services { background: var(--cream); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: clamp(1rem, 2.4vw, 1.6rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--green-600), var(--gold)); opacity: 0; transition: opacity .22s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--mint-2); color: var(--green-700); margin-bottom: 1.1rem; }
.card-ico svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 0.5rem; }
.card > p { color: var(--ink-soft); font-size: 0.98rem; }
.card-list { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: 0.5rem; }
.card-list li { position: relative; padding-left: 1.5rem; font-size: 0.93rem; color: var(--ink); }
.card-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); }

.services-note { margin-top: 2rem; text-align: center; color: var(--ink-soft); }

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--cream-2); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-copy p { color: var(--ink-soft); margin-top: 1rem; }
.about-copy strong { color: var(--ink); }
.about-signoff { font-family: var(--font-display); color: var(--ink) !important; margin-top: 1.3rem !important; }
.about-copy .btn { margin-top: 1.7rem; }

.about-points { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-points li { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.point-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--mint-2); color: var(--green-700); margin-bottom: 0.8rem; }
.point-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-points h3 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.about-points p { font-size: 0.9rem; color: var(--ink-soft); }

/* =================================================================
   SERVICE AREA
   ================================================================= */
.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.area-list { list-style: none; padding: 0; margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-list li { background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 0.5rem 1rem; font-size: 0.92rem; font-weight: 500; box-shadow: var(--shadow-sm); }

.area-card { background: linear-gradient(165deg, var(--green-700), var(--green-900)); color: #fff; border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); text-align: center; }
.area-pin { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--gold-soft); margin-bottom: 1rem; }
.area-pin svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.area-card-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-soft); font-weight: 700; font-family: var(--font-display); }
.area-card-place { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-top: 0.25rem; }
.area-card-sub { color: rgba(255, 255, 255, .82); font-size: 0.95rem; margin-top: 0.8rem; }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials { background: var(--cream-2); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2.4vw, 1.6rem); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 2.6vw, 1.9rem); box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.quote blockquote { margin: 0.8rem 0 1rem; color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.quote figcaption { color: var(--ink-soft); font-weight: 600; font-size: 0.9rem; font-family: var(--font-display); }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band { background: linear-gradient(100deg, var(--gold) 0%, var(--gold-soft) 100%); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: clamp(2.4rem, 4vw, 3.4rem); }
.cta-inner h2 { color: var(--ink); }
.cta-inner p { color: rgba(43, 40, 35, .8); margin-top: 0.35rem; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card {
  display: flex; flex-direction: column; gap: 0.15rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem; box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-500); color: var(--ink); }
.contact-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--mint-2); color: var(--green-700); margin-bottom: 0.7rem; }
.contact-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 600; }
.contact-value { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--green-900); color: rgba(255, 255, 255, .82); padding-top: clamp(2.6rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand-mark { background: #fff; padding: 4px; }
.footer-tag { margin-top: 1rem; max-width: 32ch; color: rgba(255, 255, 255, .72); font-size: 0.95rem; }
.footer-chamber { margin-top: 0.9rem; max-width: 34ch; color: rgba(255, 255, 255, .55); font-size: 0.85rem; }
.footer-h { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-soft); font-weight: 700; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a, .footer-col li { color: rgba(255, 255, 255, .78); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.4rem; padding-bottom: 1.8rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, .55); }

/* =================================================================
   SCROLL REVEAL  (only when JS is active; respects reduced motion)
   ================================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .spark, .hero-chip { animation: none !important; }
}

/* =================================================================
   FOCUS STATES
   ================================================================= */
/* Dark outline by default reads on all the light backgrounds (cream, white,
   gold band, mint). Dark sections override to a light outline below. */
:where(a, button, .btn):focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: var(--r-sm); }
.hero :where(a, button):focus-visible { outline-color: var(--gold-soft); }
.site-footer :where(a, button):focus-visible { outline-color: #fff; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 0; margin-bottom: 0.5rem; }
  .hero-badge-card { width: min(260px, 60vw); }
  .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 0.5rem);
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    padding: 0.6rem; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-menu > li > a { display: block; padding: 0.8rem 1rem; }
  .nav-cta { margin: 0.3rem 0 0; }
  .nav-cta .btn { width: 100%; }
  .about-points { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-chip-1 { left: 0; }
  .hero-chip-2 { right: 0; }
}
