/* =========================================================
   Local Loop Mail — styles.css
   Palette: navy + teal (matches uploaded logo)
   Type: Inter heavy (matches logo wordmark) + Fraunces accents
   ========================================================= */

:root {
  /* Navy from logo */
  --navy-950: #0e1a2e;
  --navy-900: #15243d;       /* logo background */
  --navy-800: #1a2942;
  --navy-700: #243854;
  --navy-100: #d8dee8;

  /* Teal from logo */
  --teal-900: #0c4a4a;
  --teal-700: #156363;
  --teal-600: #1a8a8a;       /* primary brand teal */
  --teal-500: #2aa3a3;
  --teal-400: #4dbdbd;
  --teal-300: #7fcfcf;       /* "MAIL" accent on logo */
  --teal-100: #e3f4f4;
  --teal-50:  #f4fafa;

  --ink-900: #0a1414;
  --ink-700: #1f3030;
  --ink-500: #4a5a5a;
  --ink-300: #8a9999;
  --ink-100: #d8dedf;

  --paper:   #ffffff;
  --line:    #e8edee;

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

  --shadow-sm: 0 1px 2px rgba(10, 20, 20, 0.04), 0 2px 6px rgba(10, 20, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 20, 20, 0.06), 0 12px 32px rgba(10, 20, 20, 0.08);
  --shadow-lg: 0 8px 24px rgba(10, 20, 20, 0.08), 0 24px 64px rgba(10, 20, 20, 0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--ink-900); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--teal-300); }

.accent { color: var(--teal-600); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 138, 138, 0.28);
}
.btn-primary:hover {
  background: var(--teal-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(26, 138, 138, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-100);
}
.btn-ghost:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

/* ---------- Header & Brand Mark (matches uploaded logo) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
  flex-shrink: 0;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--teal-600);
  box-shadow: 0 4px 10px rgba(26, 138, 138, 0.28);
  flex-shrink: 0;
}
.brand-icon svg { width: 26px; height: 26px; }

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ink-900);
}
.brand-name-accent {
  color: var(--teal-600);
}
.brand-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ink-300);
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-600);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 4px; }

/* Footer brand variant — light on dark */
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name-accent { color: var(--teal-300); }
.site-footer .brand-sub { color: rgba(255, 255, 255, 0.5); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, var(--teal-100) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(127, 207, 207, 0.18) 0%, transparent 45%),
    var(--paper);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 138, 138, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-content { animation: rise 0.7s ease-out both; }
.lede {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--ink-500);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
  display: inline-block;
}

/* Hero visual — animated postcards */
.hero-visual {
  position: relative;
  height: 460px;
  animation: rise 0.9s ease-out 0.15s both;
}
.postcard {
  position: absolute;
  width: 320px;
  height: 215px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.postcard-back {
  top: 30px;
  right: 20px;
  transform: rotate(7deg);
  background: linear-gradient(135deg, #fff 0%, #f5fafa 100%);
  padding: 24px;
  border: 1px solid var(--line);
}
.stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 64px;
  background: var(--teal-600);
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--teal-600);
}
.stamp::after {
  content: 'EDDM';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.lines { position: absolute; bottom: 22px; left: 24px; right: 90px; }
.lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--ink-100);
  margin-bottom: 9px;
}
.lines span:nth-child(2) { width: 75%; }
.lines span:nth-child(3) { width: 55%; }

.postcard-front {
  top: 110px;
  left: 20px;
  transform: rotate(-5deg);
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pc-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  opacity: 0.85;
}
.pc-headline {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pc-foot {
  font-size: 0.78rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 12px;
}

.floaty {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}
.floaty-1 {
  width: 140px; height: 140px;
  background: var(--teal-300);
  top: -20px; left: 50%;
}
.floaty-2 {
  width: 100px; height: 100px;
  background: #ffd4a3;
  bottom: -10px; right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust bar (now navy from logo) ---------- */
.trustbar {
  background: var(--navy-900);
  color: #fff;
  padding: 28px 0;
}
.trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.trust-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal-300);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.trust-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-tinted { background: var(--teal-50); }
.section-dark {
  background:
    radial-gradient(circle at 85% 15%, rgba(42, 163, 163, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(127, 207, 207, 0.15) 0%, transparent 50%),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p {
  color: var(--ink-500);
  font-size: 1.08rem;
}

/* ---------- Solo vs Community compare cards ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.compare-solo {
  background: linear-gradient(180deg, #fff 0%, var(--teal-50) 100%);
  border-color: var(--teal-300);
  box-shadow: 0 12px 36px rgba(26, 138, 138, 0.12);
}
.compare-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--navy-900);
  color: #fff;
  margin-bottom: 20px;
}
.compare-solo .compare-tag {
  background: var(--teal-600);
}
.compare-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.compare-sub {
  color: var(--ink-500);
  font-size: 1rem;
  margin-bottom: 24px;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.compare-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%231a8a8a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/></svg>") center/12px no-repeat;
}
.compare-list strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Cards (services included) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; color: var(--ink-900); }
.card p { color: var(--ink-500); font-size: 0.96rem; margin: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--teal-600);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; color: var(--ink-900); }
.step p { color: var(--ink-500); font-size: 0.95rem; margin: 0; }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.why-text h2 { max-width: 480px; }
.why-text p { color: var(--ink-500); font-size: 1.05rem; max-width: 520px; }

.checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
}
.checks li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink-700);
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%231a8a8a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.checks-light li { color: rgba(255, 255, 255, 0.92); }
.checks-light li::before {
  background-color: rgba(127, 207, 207, 0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%237fcfcf' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/></svg>");
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-600);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--teal-100);
  position: absolute;
  top: 12px;
  right: 24px;
  pointer-events: none;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.attrib { display: flex; flex-direction: column; }
.attrib strong { color: var(--ink-900); }
.attrib span { color: var(--ink-500); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-wrap .section-head { margin-bottom: 48px; }
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a8a8a' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--ink-500);
  font-size: 0.98rem;
}
.faq details strong { color: var(--ink-900); }

/* ---------- Quote / Contact ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.quote-text { padding-top: 8px; }
.quote-text p { color: rgba(255, 255, 255, 0.78); max-width: 440px; }

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-700);
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-900);
  background: #fbfcfc;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a8a8a' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 138, 138, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.hp { position: absolute; left: -9999px; opacity: 0; }

.form-fine {
  font-size: 0.82rem;
  color: var(--ink-500);
  text-align: center;
  margin: 14px 0 0;
}
.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
}
.form-status.success { color: var(--teal-600); }
.form-status.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-brand p { max-width: 320px; font-size: 0.95rem; margin-top: 16px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-cols a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  padding: 4px 0;
}
.footer-cols a:hover { color: var(--teal-300); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 360px; max-width: 420px; margin: 0 auto; }
  .why-grid, .quote-grid, .compare { grid-template-columns: 1fr; gap: 48px; }
  .compare { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav { display: none; }
  .trust-divider { display: none; }
  .trust-stat { min-width: 45%; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .quote-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .postcard { width: 260px; height: 175px; }
  .pc-headline { font-size: 1.7rem; }
  .header-cta { display: none; }
  .compare-card { padding: 32px 26px; }
  .brand-sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
