/* ============================================================
   TrueHost — warm, boutique hospitality SaaS landing page
   ============================================================ */

:root {
  /* Warm, boutique palette */
  --clay:        #c0653f;   /* terracotta accent */
  --clay-dark:   #a3502f;
  --clay-soft:   #e9c7b5;
  --sage:        #6b7b5e;   /* muted olive */
  --cream:       #f8f1e7;   /* page warmth */
  --cream-deep:  #f1e6d6;
  --ink:         #2b2622;   /* near-black, warm */
  --ink-soft:    #5d564f;
  --line:        #e4d8c7;
  --white:       #fffdf9;
  --night:       #2a2723;   /* dark sections */
  --night-2:     #34302a;

  --radius:      18px;
  --radius-lg:   26px;
  --shadow-sm:   0 2px 10px rgba(43, 38, 34, 0.06);
  --shadow-md:   0 14px 40px rgba(43, 38, 34, 0.10);
  --shadow-lg:   0 30px 70px rgba(43, 38, 34, 0.16);

  --font-serif:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:   "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1140px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--clay); color: var(--white); box-shadow: 0 8px 22px rgba(192, 101, 63, 0.30); }
.btn-primary:hover { background: var(--clay-dark); box-shadow: 0 12px 28px rgba(192, 101, 63, 0.38); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: .76rem;
  font-weight: 600; color: var(--clay); margin-bottom: 14px;
}
.eyebrow--light { color: var(--clay-soft); }
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; }
.section-sub--light { color: rgba(248, 241, 231, 0.75); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 241, 231, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-serif); font-weight: 600; font-size: 1.25rem; }
.brand-mark {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  background: var(--clay); color: var(--white); border-radius: 9px; font-size: 1rem;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: .95rem; color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--clay); }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 96px;
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(192,101,63,0.10), transparent 60%),
    radial-gradient(800px 460px at 0% 30%, rgba(107,123,94,0.10), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--clay); }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 36ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; color: var(--ink-soft); font-size: .92rem; font-weight: 500; }
.hero-trust span { color: var(--sage); margin-right: 6px; font-size: .7rem; }

/* Hero visual — mock device */
.hero-visual { position: relative; }
.device {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden; transform: rotate(1.2deg);
}
.device-bar { display: flex; align-items: center; gap: 6px; padding: 13px 16px; background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.device-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #d8c7b0; }
.device-bar > span:first-child { background: var(--clay-soft); }
.device-url { margin-left: 12px; font-size: .78rem; color: var(--ink-soft); background: var(--white); padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line); }
.device-screen { padding: 22px; }
.mini-hero {
  border-radius: 14px; padding: 28px 22px; margin-bottom: 16px;
  background: linear-gradient(135deg, #7d8a6f, #5d6b50);
  color: var(--white);
}
.mini-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.mini-title { font-family: var(--font-serif); font-size: 1.4rem; margin-top: 6px; }
.mini-cal { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-bottom: 16px; }
.mini-cal .d { height: 26px; border-radius: 7px; background: var(--cream-deep); }
.mini-cal .d.on { background: #e7ddcd; }
.mini-cal .d.sel { background: var(--clay); }
.mini-pay { display: flex; align-items: center; justify-content: space-between; }
.mini-amount { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
.mini-btn { background: var(--clay); color: var(--white); font-size: .85rem; font-weight: 600; padding: 9px 16px; border-radius: 999px; }

.float-card {
  position: absolute; background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); border-radius: 14px; padding: 11px 15px;
  font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.float-card--a { top: 8%; left: -28px; }
.float-card--b { bottom: 9%; right: -24px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-green { background: #6e9b5e; }
.dot-amber { background: #d39a3e; }

/* ---------- Strip ---------- */
.strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-deep); }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; text-align: center; }
.strip-inner > p { color: var(--ink-soft); font-size: .92rem; }
.strip-list { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.strip-list li { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); opacity: .8; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--clay-soft); font-weight: 600; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.35rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); }

/* ---------- What's included ---------- */
.section--warm { background: var(--cream-deep); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--cream); border-radius: 14px; margin-bottom: 18px;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* Migration callout */
.included-callout {
  display: flex; gap: 24px; align-items: flex-start; margin-top: 28px;
  background: var(--ink); color: var(--cream); border-radius: var(--radius-lg);
  padding: 32px 36px; box-shadow: var(--shadow-md);
}
.included-callout-icon {
  flex: none; width: 56px; height: 56px; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(248, 241, 231, 0.10); border-radius: 16px;
}
.included-callout-body h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: 8px; }
.included-callout-body p { color: rgba(248, 241, 231, 0.78); max-width: 70ch; }
.feature-link { color: var(--clay); font-weight: 600; white-space: nowrap; }
.feature-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Google listing ---------- */
.google-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.google-copy .section-sub { margin: 0 0 24px; }
.google-points { display: grid; gap: 18px; margin-bottom: 30px; }
.google-points li { padding-left: 30px; position: relative; }
.google-points li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; color: var(--white); font-weight: 700;
  font-size: .72rem; width: 20px; height: 20px; background: var(--sage); border-radius: 50%;
  display: grid; place-items: center;
}
.google-points strong { display: block; color: var(--ink); margin-bottom: 2px; }
.google-points span { color: var(--ink-soft); font-size: .96rem; }

/* Mock Google Business Profile card */
.google-visual { display: flex; justify-content: center; }
.gbp-card {
  width: 100%; max-width: 380px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.gbp-photos { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; height: 170px; }
.gbp-photo { background: linear-gradient(135deg, #8a9479, #5d6b50); }
.gbp-photo--lg { grid-row: span 2; background: linear-gradient(135deg, #9aa487, #6b7b5e 60%, #56664a); }
.gbp-photo:nth-child(3) { background: linear-gradient(135deg, #b9a48c, #9c8163); }
.gbp-body { padding: 20px 22px; }
.gbp-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem; }
.gbp-rating { display: flex; align-items: center; gap: 6px; margin: 4px 0; font-size: .9rem; }
.gbp-score { font-weight: 700; color: #b06a2c; }
.gbp-stars { color: #e8a13a; letter-spacing: 1px; }
.gbp-count { color: var(--ink-soft); }
.gbp-cat { color: var(--ink-soft); font-size: .9rem; margin-bottom: 14px; }
.gbp-actions { display: flex; gap: 8px; margin-bottom: 16px; }
.gbp-action {
  font-size: .82rem; font-weight: 600; color: var(--sage); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px;
}
.gbp-action--primary { background: var(--sage); color: var(--white); border-color: var(--sage); }
.gbp-row { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-soft); font-size: .9rem; padding: 5px 0; }
.gbp-ic { flex: none; }

/* ---------- Story ---------- */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.story-portrait { position: relative; }
.portrait-frame {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white); background: var(--cream-deep);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; }
.story-stat {
  position: absolute; right: -18px; bottom: -18px; background: var(--white);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 14px 20px; display: flex; flex-direction: column; line-height: 1.2;
}
.story-stat strong { font-family: var(--font-serif); font-size: 1.5rem; color: var(--clay); }
.story-stat span { font-size: .8rem; color: var(--ink-soft); }
.story-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.story-copy p { color: var(--ink-soft); margin-bottom: 16px; max-width: 58ch; }
.story-copy .btn { margin-top: 8px; }
.story-mission {
  border-left: 3px solid var(--clay); background: var(--cream-deep);
  border-radius: 0 14px 14px 0; padding: 18px 22px; margin: 6px 0 24px;
}
.story-mission p { margin: 0; color: var(--ink); }
.story-mission strong { color: var(--clay-dark); }

/* ---------- Pricing ---------- */
.price-card {
  max-width: 760px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 14px; overflow: hidden;
}
.price-card-main {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
  background: linear-gradient(180deg, #fffaf3, var(--white));
  border-radius: var(--radius); padding: 14px 0;
}
.price-block { padding: 24px 30px; text-align: center; }
.price-block-label { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 600; color: var(--clay); }
.price-block-amount { display: block; font-family: var(--font-serif); font-size: 3rem; font-weight: 600; color: var(--ink); line-height: 1.1; margin: 6px 0 2px; }
.price-block-amount small { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 500; color: var(--ink-soft); }
.price-block-note { font-size: .9rem; color: var(--ink-soft); }
.price-block-desc { font-size: .94rem; color: var(--ink-soft); margin-top: 12px; }
.price-divider { width: 1px; background: var(--line); margin: 14px 0; }
.price-includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  padding: 26px 30px; border-top: 1px solid var(--line); margin-top: 10px;
}
.price-includes li { padding-left: 26px; position: relative; color: var(--ink-soft); font-size: .96rem; }
.price-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.price-card .btn-block { margin: 0 30px; width: calc(100% - 60px); }
.price-card-foot { text-align: center; color: var(--ink-soft); margin: 16px 30px 18px; font-size: .92rem; }
.price-card-foot a { color: var(--clay); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Live example (dark) ---------- */
.section--dark { background: var(--night); color: var(--cream); }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.example-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--cream); margin-bottom: 16px; }
.example-points { display: grid; gap: 14px; margin: 26px 0 32px; }
.example-points li { padding-left: 26px; position: relative; color: rgba(248,241,231,0.8); }
.example-points li::before { content: "—"; position: absolute; left: 0; color: var(--clay-soft); }
.example-points strong { color: var(--cream); }

/* Listing card mock */
.example-visual { display: flex; justify-content: center; }
.listing-card {
  width: 100%; max-width: 380px; background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.listing-photo {
  height: 170px; position: relative;
  background: linear-gradient(135deg, #8a9479 0%, #6b7b5e 55%, #56664a 100%);
}
.listing-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120px 80px at 25% 30%, rgba(255,255,255,0.18), transparent 70%),
    radial-gradient(160px 120px at 80% 90%, rgba(0,0,0,0.15), transparent 70%);
}
.listing-badge {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: var(--white); color: var(--clay); font-size: .74rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.listing-body { padding: 22px; }
.listing-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.listing-row h3 { font-size: 1.25rem; }
.listing-rate { font-family: var(--font-serif); font-weight: 600; font-size: 1.2rem; white-space: nowrap; }
.listing-rate small { font-family: var(--font-sans); font-weight: 500; color: var(--ink-soft); font-size: .8rem; }
.listing-loc { color: var(--ink-soft); font-size: .9rem; margin: 4px 0 18px; }
.listing-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.date-field { border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
.date-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.date-value { font-weight: 600; font-size: .98rem; }
.listing-summary { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: .94rem; padding: 6px 0; }
.listing-summary--total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; color: var(--ink); font-weight: 700; }
.listing-pay {
  width: 100%; margin-top: 16px; background: var(--clay); color: var(--white); border: none;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem; padding: 14px; border-radius: 999px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.listing-pay:hover { background: var(--clay-dark); }
.listing-secure { text-align: center; color: var(--ink-soft); font-size: .8rem; margin-top: 10px; }

/* ---------- Quote ---------- */
.quote-section { background: var(--cream-deep); }
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote blockquote {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4; margin: 0 0 22px; color: var(--ink); font-weight: 500;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote-name { font-weight: 600; }
.quote-role { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Briefing form ---------- */
.section--briefing { background: var(--cream); }
.briefing-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.briefing-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.briefing-points { display: grid; gap: 12px; margin: 24px 0; }
.briefing-points li { padding-left: 28px; position: relative; color: var(--ink-soft); }
.briefing-points li span { position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.briefing-direct { color: var(--ink-soft); }
.briefing-direct a { color: var(--clay); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.briefing-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md);
}
.form-group-title {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  margin: 4px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.form-group-title:not(:first-of-type) { margin-top: 26px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field .opt { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); transition: border-color .15s, box-shadow .15s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(192,101,63,0.14); background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: #a89c8b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { text-align: center; color: var(--ink-soft); font-size: .86rem; margin-top: 14px; }
.form-error {
  margin-top: 14px; text-align: center; background: #f7e7e0; color: #a3502f;
  border: 1px solid #e9c7b5; border-radius: 12px; padding: 13px; font-weight: 600; font-size: .92rem;
}
.form-success {
  margin-top: 16px; text-align: center; background: #eef2e8; color: var(--sage);
  border: 1px solid #d6e0c8; border-radius: 12px; padding: 14px; font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--cream); padding: 56px 0 30px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(248,241,231,0.12); }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: var(--cream); margin-bottom: 12px; }
.footer-tag { color: rgba(248,241,231,0.65); font-size: .94rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; }
.footer-links a { color: rgba(248,241,231,0.78); font-size: .94rem; font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--clay-soft); }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; color: rgba(248,241,231,0.55); font-size: .86rem; }
.footer-base a { color: rgba(248,241,231,0.7); }
.footer-base a:hover { color: var(--clay-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .example-grid, .briefing-grid, .google-grid { grid-template-columns: 1fr; gap: 44px; }
  .google-visual { max-width: 420px; margin: 0 auto; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .float-card--a { left: 0; }
  .float-card--b { right: 0; }
  .steps, .features { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-portrait { max-width: 420px; }
  .story-stat { right: 18px; }
  .included-callout { flex-direction: column; gap: 16px; padding: 26px 24px; }
  .nav-links { display: none; }
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 72px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .price-card-main { grid-template-columns: 1fr; }
  .price-divider { width: auto; height: 1px; margin: 0 30px; }
  .price-includes { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .briefing-form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
