/* ============================================
   SYNTHWEAVE DESIGN SYSTEM — styles.css
   Shared across all 6 pages
   ============================================ */

/* --- 1. Custom Properties --- */
:root {
  --forest-deep: #1A2F1A;
  --moss: #3D5C3D;
  --sage: #7C9A72;
  --sage-soft: #C8D9C4;
  --cream: #FAF8F5;
  --paper: #E7DFD2;
  --brass: #B68A3A;
  --text: #203020;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --section-padding: clamp(4rem, 10vh, 8rem);
  --content-width: min(90vw, 1200px);
  --content-narrow: min(85vw, 800px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- 3. Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 65ch;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--moss);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 4. Utilities --- */
.container { width: var(--content-width); margin: 0 auto; }
.container-narrow { width: var(--content-narrow); margin: 0 auto; }
.text-center { text-align: center; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus rings for accessibility */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible { outline-offset: 4px; }

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(26, 47, 26, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--forest-deep);
  border: 1.5px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage-soft);
  border-color: var(--sage);
}

/* --- 6. Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26, 47, 26, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
}

.nav-logo svg { width: 32px; height: 32px; }
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--moss);
  transition: color 0.3s ease;
  text-decoration: none;
  background-image: linear-gradient(var(--sage), var(--sage));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color 0.3s ease, background-size 0.3s ease;
}

.nav-links a:hover { color: var(--forest-deep); background-size: 100% 1.5px; }

.nav-cta { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }

/* Industries dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 0.75rem 0;
  background: var(--cream);
  border: 1px solid var(--sage-soft);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown > span {
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--moss);
  transition: color 0.3s ease;
}

.nav-dropdown > span:hover { color: var(--forest-deep); }

.nav-dropdown > span[role="button"]:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover { background: var(--sage-soft); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--forest-deep);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.mobile-nav-sub {
  font-size: 1.1rem !important;
  padding-left: 1.5rem;
  opacity: 0.75;
}

.mobile-nav a {
  font-size: 1.25rem;
  color: var(--forest-deep);
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* --- 7. Footer --- */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3rem 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 154, 114, 0.2);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--sage-soft);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 154, 114, 0.1);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--sage-soft);
  opacity: 0.6;
  max-width: none;
}

/* --- 8. Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- 9. Shared Section Styles --- */
section {
  padding: var(--section-padding) 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

/* When section-header is the only child in container, remove excess bottom margin */
.section-header:last-child {
  margin-bottom: 0;
}

.section-header p {
  margin-left: auto;
  margin-right: auto;
}

/* --- 10. Page Hero (subpages) --- */
.page-hero {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-soft) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-hero > *:not(.page-hero-bg) {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- 10b. Icons --- */
.icon {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sage);
}
.icon svg {
  width: 28px;
  height: 28px;
}
.offer-block .icon {
  color: var(--brass);
}

/* --- 10c. Diagram Figures --- */
.diagram-figure {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.diagram-figure img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--sage-soft);
}
.diagram-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--sage);
  font-style: italic;
}

/* --- 11. Card Systems --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards are already width-constrained by the grid — let text fill them */
.card-grid p,
.card-grid li { max-width: none; }

.card {
  background: var(--cream);
  border: 1px solid var(--sage-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.08);
}

.pain-card {
  background: var(--paper);
  border: 1px solid var(--sage-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.06);
}

.pain-card h3 { margin-bottom: 0.75rem; }

.offer-block {
  background: var(--cream);
  border: 1px solid var(--sage-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.offer-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.06);
}

.offer-block-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.offer-block h3 { margin-bottom: 0.75rem; }

.offer-block .deliverables { margin-top: 1rem; }

.industry-card {
  background: var(--paper);
  border: 1px solid var(--sage-soft);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.06);
}

.industry-card .btn { margin-top: auto; align-self: flex-start; }

/* Industries section: force 2x2 grid so 4 cards don't leave an orphan */
.industries .card-grid { grid-template-columns: repeat(2, 1fr); }

.card-grid:has(.workflow-card) { grid-template-columns: repeat(2, 1fr); }
.workflow-card {
  background: var(--cream);
  border-left: 4px solid var(--sage);
  border-radius: 0 16px 16px 0;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.workflow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 47, 26, 0.06);
}

.workflow-card h3 { margin-bottom: 0.5rem; }

/* --- 12. Step Blocks --- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-block { text-align: center; }
.step-block h3 { margin-bottom: 0.5rem; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* --- 13. Proof Lists --- */
.proof-list {
  list-style: none;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.proof-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid var(--sage-soft);
}

.proof-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* --- 14. Workflow Snapshots --- */
.workflow-snapshot {
  background: var(--cream);
  border: 1px solid var(--sage-soft);
  border-radius: 16px;
  padding: 2.5rem;
  transition: box-shadow 0.3s var(--ease-out-expo);
}

.workflow-snapshot:hover {
  box-shadow: 0 4px 20px rgba(26, 47, 26, 0.05);
}

.workflow-snapshot h3 {
  margin-bottom: 1.5rem;
}

.workflow-snapshot + .workflow-snapshot {
  margin-top: 2rem;
}

.workflow-snapshot dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
}

.workflow-snapshot dt {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--moss);
}

.workflow-snapshot dd {
  color: var(--text);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sage-soft);
}

/* --- 15. Fit / Not-Fit --- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fit-block {
  padding: 2rem;
  border-radius: 16px;
}

.fit-block h3 { margin-bottom: 1rem; }

.fit-block.good { background: rgba(124, 154, 114, 0.1); }
.fit-block.bad { background: var(--paper); }

.fit-block li {
  padding: 0.5rem 0;
  list-style: none;
}

.fit-block.good li::before { content: '\2713\0020'; color: var(--sage); font-weight: 700; }
.fit-block.bad li::before { content: '\2717\0020'; color: var(--moss); font-weight: 700; }

/* --- 16. Deliverable Lists --- */
.deliverables {
  list-style: none;
}

.deliverables li {
  position: relative;
  padding: 0.375rem 0 0.375rem 1rem;
  font-size: 0.9375rem;
}

.deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-soft);
}

/* --- 17. Bullet Lists (alias for proof-list) --- */
.bullet-list { list-style: none; max-width: 700px; margin-left: auto; margin-right: auto; }
.bullet-list li { position: relative; padding: 0.75rem 0 0.75rem 1.25rem; border-bottom: 1px solid var(--sage-soft); }
.bullet-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* --- 18. Final CTA Section --- */
.final-cta {
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: var(--section-padding) 1.5rem;
}

.final-cta h2 { color: var(--cream); max-width: 800px; margin-left: auto; margin-right: auto; }
.final-cta p { color: var(--sage-soft); margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--sage); color: var(--cream); }
.final-cta .btn-primary:hover { background: var(--moss); }

.support-text {
  font-size: 0.875rem;
  color: var(--sage);
  margin-top: 1rem;
}

/* --- 19. Legal Pages --- */
.legal-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--sage-soft) 0%, var(--cream) 100%);
  text-align: center;
}
.legal-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--forest-deep); margin-bottom: 1rem; letter-spacing: -0.02em; }
.legal-hero .last-updated { font-size: 0.9375rem; color: var(--moss); }

.legal-content { width: var(--content-width); margin: 0 auto; padding: 4rem 0 6rem; }
.legal-content a { color: var(--sage); text-decoration: underline; text-decoration-color: var(--sage-soft); text-underline-offset: 3px; transition: all 0.3s ease; }
.legal-content a:hover { color: var(--moss); text-decoration-color: var(--moss); }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--forest-deep); margin: 3rem 0 1.25rem; padding-top: 1rem; border-top: 1px solid var(--sage-soft); letter-spacing: -0.01em; }
.legal-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--moss); margin: 2rem 0 1rem; }
.legal-content p { margin-bottom: 1rem; color: var(--forest-deep); max-width: none; }
.legal-content ul, .legal-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--forest-deep); }
.legal-content strong { color: var(--forest-deep); font-weight: 600; }

.callout { background: linear-gradient(135deg, rgba(124, 154, 114, 0.1) 0%, rgba(124, 154, 114, 0.05) 100%); border-left: 4px solid var(--sage); padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
.callout p { margin: 0; font-size: 0.9375rem; }
.callout strong { color: var(--forest-deep); }

.legal-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: 0.9375rem; }
.legal-table th, .legal-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--sage-soft); }
.legal-table th { background: var(--paper); font-weight: 600; color: var(--forest-deep); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.03em; }
.legal-table td { vertical-align: top; }
.legal-table tr:hover td { background: rgba(124, 154, 114, 0.05); }

.google-section { background: var(--paper); border-radius: 12px; padding: 2rem; margin: 2rem 0; }
.google-section h3 { margin-top: 0; }

.legal-emphasis { text-transform: uppercase; font-size: 0.9375rem; }

/* --- 20. Homepage --- */
.hero {
  position: relative; min-height: 100vh; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-soft) 50%, rgba(61, 92, 61, 0.15) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/hero/homepage-hero.webp') center / cover no-repeat;
  opacity: 0.15; z-index: 0;
}
.hero-content { position: relative; text-align: center; max-width: 900px; z-index: 2; }
.hero-content p { margin-left: auto; margin-right: auto; }
.hero-title { margin-bottom: 1.5rem; animation: fade-in-up 0.8s var(--ease-out-expo) 0.3s backwards; }
.hero-subtitle { margin: 0 auto 2.5rem; animation: fade-in-up 0.8s var(--ease-out-expo) 0.4s backwards; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; animation: fade-in-up 0.8s var(--ease-out-expo) 0.5s backwards; }
.hero-proof { margin-top: 2rem; font-size: 0.875rem; color: var(--sage); font-weight: 500; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-platform { margin-top: 0.75rem; font-size: 0.8125rem; color: var(--moss); font-style: italic; }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pain { background: var(--cream); }
.services-section { background: var(--paper); }
.industries { background: var(--cream); }
.why-different { background: var(--paper); }
.why-different .proof-list { max-width: 700px; }
.examples { background: var(--cream); }
.example-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.example-tile { background: var(--paper); border: 1px solid var(--sage-soft); border-radius: 16px; padding: 2rem; transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo); }
.example-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26, 47, 26, 0.06); }
.example-tile h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.example-tile p { color: var(--text); font-size: 0.9375rem; max-width: none; }
.engagement { background: var(--cream); }

.section-closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--moss);
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sage-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 21. Responsive --- */
@media (max-width: 768px) {
  .card-grid, .card-grid:has(.workflow-card) { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
  .workflow-snapshot dl { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; align-items: center; gap: 1rem; }
  .legal-table { font-size: 0.8125rem; }
  .legal-table th, .legal-table td { padding: 0.75rem 0.5rem; }
  .google-section { padding: 1.5rem 1rem; }
}

@media (max-width: 480px) {
  .step-grid { grid-template-columns: 1fr; }
}
