/* ============ Life Tech SG, Material Design styles (monochrome) ============ */

:root {
  /* Material color roles, black and white base */
  --md-primary: #141414;
  --md-on-primary: #ffffff;
  --md-primary-container: #ededed;
  --md-on-primary-container: #1a1a1a;
  --md-surface: #ffffff;
  --md-surface-container: #f6f6f6;
  --md-surface-variant: #efefef;
  --md-outline: #e0e0e0;
  --md-ink: #141414;
  --md-ink-soft: #4a4a4a;
  --md-ink-faint: #6e6e6e;
  --md-dark: #0f0f0f;
  --wa-green: #25d366;

  --radius-card: 16px;
  --radius-btn: 999px;

  /* Material elevation */
  --elev-1: 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px 1px rgba(0, 0, 0, 0.08);
  --elev-2: 0 1px 2px rgba(0, 0, 0, 0.16), 0 2px 6px 2px rgba(0, 0, 0, 0.10);
  --elev-3: 0 4px 8px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.18);

  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Force light form controls even when the visitor's OS/browser is in dark mode,
   so Chromium doesn't render autofilled inputs with its dark green theme. */
html { scroll-behavior: smooth; color-scheme: light; }

body {
  font-family: var(--font);
  color: var(--md-ink);
  background: var(--md-surface);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; margin-top: 32px; }

h1, h2, h3 { line-height: 1.22; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 700; }
a { color: var(--md-ink); }

.section { padding: 84px 0; }
.section-title { text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--md-ink-soft); max-width: 560px; margin: 0 auto 40px; }

/* ---- Material buttons ---- */
.btn {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-primary {
  background: var(--md-primary);
  color: var(--md-on-primary);
  box-shadow: var(--elev-1);
}
.btn-primary:hover { background: #2e2e2e; box-shadow: var(--elev-2); }
.btn-primary:active { box-shadow: none; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
/* Secondary CTA: reads as a text link with a black underline, not a button,
   so it can't be mistaken for a filled button in the spacing */
.btn-text {
  color: var(--md-ink); font-weight: 600; padding: 12px 2px;
  text-decoration: underline; text-decoration-color: var(--md-ink);
  text-decoration-thickness: 2px; text-underline-offset: 5px;
}
.btn-text:hover { background: none; text-decoration-color: var(--md-ink-faint); }

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--md-dark);
  color: var(--md-on-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding-top: 7px; padding-bottom: 7px;
}
.trust-bar .stars { color: #ffc93a; letter-spacing: 2px; font-size: 0.9rem; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--md-surface);
  box-shadow: var(--elev-1);
}
.nav-wrap { display: flex; align-items: center; gap: 28px; height: 66px; }
.logo {
  font-weight: 900; font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--md-ink);
  text-decoration: none; letter-spacing: 0.015em; text-transform: uppercase;
}
.logo span { color: var(--md-ink-faint); }
.site-nav { display: flex; gap: 6px; margin-left: auto; }
.site-nav a {
  color: var(--md-ink-soft); text-decoration: none; font-weight: 500; font-size: 0.94rem;
  padding: 8px 14px; border-radius: var(--radius-btn);
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { color: var(--md-ink); background: var(--md-primary-container); }
.nav-cta { font-size: 0.9rem; padding: 10px 20px; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 50%; }
.nav-toggle:hover { background: var(--md-surface-variant); }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--md-ink);
  margin: 5px 0; border-radius: 2px;
}

/* ---- Image placeholders ---- */
.img-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center;
  background: var(--md-surface-variant);
  border: 2px dashed var(--md-outline);
  border-radius: var(--radius-card);
  color: var(--md-ink-faint);
  font-size: 0.85rem;
  padding: 18px;
  min-height: 180px;
}
.img-ph svg { opacity: 0.55; }
.img-ph span { max-width: 260px; }
.img-ph-sm { min-height: 120px; margin-bottom: 18px; font-size: 0.8rem; }
.img-ph-thumb { min-height: 120px; margin-bottom: 16px; font-size: 0.8rem; }
.hero-img { min-height: 380px; }
.guide-img { min-height: 280px; }

/* ---- Lead magnet banner ---- */
.lead-banner {
  background: var(--md-dark);
  color: #e8e8e8;
  padding: 44px 0 48px;
}
.lead-wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 44px; align-items: center;
}
.lead-kicker {
  display: inline-block;
  color: #ffc93a; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.lead-copy h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: 12px; }
.lead-copy > p { color: #b5b5b5; font-size: 0.97rem; }
.lead-points { list-style: none; margin-top: 14px; }
.lead-points li { padding: 3px 0; color: #d6d6d6; font-size: 0.9rem; }
.lead-points li::before { content: '✓  '; color: #ffc93a; font-weight: 700; }

.lead-form { min-width: 0; }
.lead-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin-bottom: 16px;
}
.lead-field { display: flex; flex-direction: column; min-width: 0; }
.lead-field label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: #cfcfcf; margin-bottom: 6px;
}
.lead-field input, .lead-field select {
  font-family: var(--font); font-size: 0.95rem; color: var(--md-ink);
  background: #fff; border: 2px solid transparent; border-radius: 10px;
  padding: 11px 14px; outline: none; width: 100%;
  color-scheme: light; /* keep autofill light so the box-shadow trick below covers it */
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lead-field select:invalid, .lead-field select option[value=""] { color: var(--md-ink-faint); }
.lead-field input:focus, .lead-field select:focus { box-shadow: 0 0 0 3px rgba(255, 201, 58, 0.45); }
/* Keep browser autofill from tinting fields green on the dark banner.
   Chrome paints its own background; the giant inset shadow covers it, and
   !important beats the UA stylesheet. The focus rule must re-include the
   inset shadow because box-shadow is not additive. */
.lead-field input:-webkit-autofill,
.lead-field input:-webkit-autofill:hover,
.lead-field input:-webkit-autofill:active,
.lead-field select:-webkit-autofill,
.lead-field select:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #141414 !important;
  caret-color: #141414;
  background-color: #ffffff !important;
  transition: background-color 9999999s ease-out 0s;
}
.lead-field input:-webkit-autofill:focus,
.lead-field select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 201, 58, 0.45), 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 3px rgba(255, 201, 58, 0.45), 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #141414 !important;
}
.lead-field input.is-invalid, .lead-field select.is-invalid { border-color: #ff6b5e; }
.lead-error { color: #ffb0a8; font-size: 0.78rem; margin-top: 5px; }
.lead-submit { width: 100%; background: #fff; color: var(--md-ink); font-weight: 700; }
.lead-submit:hover { background: #e9e9e9; }
.lead-submit[disabled] { opacity: 0.6; cursor: wait; }
.lead-privacy { margin-top: 10px; font-size: 0.78rem; color: #8f8f8f; text-align: center; }
.lead-success { grid-column: 2; }
.lead-success h3 { color: #fff; margin-bottom: 8px; }
.lead-success p { color: #b5b5b5; font-size: 0.95rem; }
.lead-success a { color: #ffc93a; font-weight: 700; }

/* ---- Real images ---- */
.hero-photo {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-card); box-shadow: var(--elev-2);
}
.tier-img {
  /* Full-bleed lifestyle photo across the top of the card, pulled out to the
     inner edge of the card padding and border */
  display: block; width: calc(100% + 48px); height: 200px; object-fit: cover;
  margin: -26px -24px 20px; border-radius: 14px 14px 0 0; background: #000;
}
.tier-featured .tier-img { width: calc(100% + 50px); margin: -26px -25px 20px; }
img.pkg-img {
  display: block; width: 100%; min-height: 0; padding: 0;
  border: none; border-bottom: 1px solid var(--md-outline); background: #fff;
}
.img-contain { object-fit: contain; padding: 14px; }
.img-cover { object-fit: cover; }
.guide-photo {
  display: block; width: 100%; object-fit: contain;
  background: #fff; border: 1px solid var(--md-outline);
  border-radius: var(--radius-card); padding: 16px;
}
.contact-img {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 12px; margin-bottom: 16px;
}
.blog-thumb {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 12px; margin-bottom: 16px; background: var(--md-surface-variant);
}
.article-hero {
  display: block; width: 100%; aspect-ratio: 16 / 7; object-fit: cover;
  border-radius: var(--radius-card); margin: 8px 0 28px;
  background: var(--md-surface-variant);
}

/* ---- Reels marquee ---- */
.reel-marquee {
  overflow: hidden; background: var(--md-surface);
  padding: 26px 0 30px; border-bottom: 1px solid var(--md-outline);
}
.reel-title {
  text-align: center; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--md-ink-faint); margin-bottom: 20px;
}
.reel-track {
  display: flex; width: max-content;
  will-change: transform; /* promote to its own layer for smooth mobile scroll */
}
/* Single row of all six reels. The group is twice as wide as the old two-row
   layout, so the duration is doubled to keep the same calm scroll speed. */
.reel-track-a { animation: reelScrollA 110s linear infinite; }
/* Only pause on hover-capable pointers; a tap on touch must never freeze it */
@media (hover: hover) {
  .reel-track:hover { animation-play-state: paused; }
}
.reel-track video {
  height: 220px; width: auto; /* natural aspect ratio, no cropping */
  border-radius: 16px; box-shadow: var(--elev-1); background: #000;
  margin-right: 16px; /* uniform spacing keeps the one-group loop seamless */
}
/* The track holds 3 identical groups; shifting exactly one group loops seamlessly */
@keyframes reelScrollA {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(0, 0, 0, 0.07), transparent 60%),
    linear-gradient(180deg, var(--md-surface-container), var(--md-surface));
  padding: 84px 0 90px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block;
  background: #fdf0d0; color: #6f5200;
  font-weight: 500; font-size: 0.82rem;
  padding: 7px 16px; border-radius: var(--radius-btn); margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; border-bottom: 6px solid var(--md-ink); }
.hero-sub {
  max-width: 560px; margin: 20px 0 30px;
  font-size: 1.08rem; color: var(--md-ink-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  list-style: none; margin-top: 34px; color: var(--md-ink-faint); font-size: 0.9rem;
}
.hero-proof li::before { content: '✓  '; color: var(--md-ink); font-weight: 700; }

/* ---- Problem ---- */
.section-problem { background: var(--md-dark); color: #e8e8e8; }
.section-problem h2 { color: #fff; margin-bottom: 18px; }
.section-problem p { color: #b5b5b5; margin-bottom: 14px; max-width: 640px; }

/* ---- Guide ---- */
.guide-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center;
}
.guide-grid h2 { margin-bottom: 16px; }
.guide-grid p { color: var(--md-ink-soft); margin-bottom: 14px; }
.guide-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.badge-card {
  background: var(--md-surface-container);
  border-radius: var(--radius-card); padding: 26px 22px;
}
.badge-icon { font-size: 1.7rem; display: block; margin-bottom: 12px; }
.badge-card h3 { margin-bottom: 8px; }
.badge-card p { font-size: 0.93rem; color: var(--md-ink-soft); }

/* ---- Steps ---- */
.section-steps { background: var(--md-surface-container); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  list-style: none; margin-top: 44px;
}
.steps li {
  background: var(--md-surface); border-radius: var(--radius-card);
  padding: 26px 22px; box-shadow: var(--elev-1);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffc93a; color: var(--md-ink);
  font-weight: 700; margin-bottom: 14px;
}
.steps h3 { margin-bottom: 8px; }
.steps p { font-size: 0.93rem; color: var(--md-ink-soft); }

.callout {
  margin-top: 36px;
  background: #fff6df;
  border-left: 4px solid #ffc93a;
  border-radius: 12px; padding: 18px 22px;
  font-size: 0.97rem; color: #5f4a12;
}
.callout a { color: #5f4a12; }
.callout-upgrade { margin: 44px 0 12px; }

/* ---- Setup tiers ---- */
/* Tier color identities: Starter teal, Essential sky blue, Premium coral, add-on gold */
.tier-starter, .tb-starter { --tc: #00796b; --tc-bg: #d6eeea; --tc-ink: #00564d; }
.tier-essential, .tb-essential { --tc: #0277bd; --tc-bg: #dcf0fb; --tc-ink: #01476f; }
.tier-premium, .tb-premium { --tc: #d84315; --tc-bg: #fbe3da; --tc-ink: #96290a; }
.tier-addon, .tb-addon { --tc: #997405; --tc-bg: #fdf0d0; --tc-ink: #6f5200; }

.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px;
}
.tier-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 26px 24px;
  background: var(--md-surface);
  border: 2px solid var(--tc, var(--md-primary));
  box-shadow: var(--elev-1);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.tier-card:hover { box-shadow: var(--elev-2); }
.tier-featured { border-width: 3px; }
.tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--tc, var(--md-ink)); color: var(--md-on-primary);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: var(--radius-btn); white-space: nowrap;
  box-shadow: var(--elev-1);
}
.tier-card h3 { font-size: 1.3rem; color: var(--tc-ink, var(--md-ink)); }
.tier-price { color: var(--md-ink-faint); margin: 6px 0 14px; }
.tier-price strong { color: var(--tc, var(--md-ink)); font-size: 1.6rem; font-weight: 900; }
.tier-card > p:not(.tier-price):not(.tier-flag) { color: var(--md-ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.tier-card ul { list-style: none; margin-top: auto; }
.tier-card li { padding: 6px 0; font-size: 0.93rem; color: var(--md-ink-soft); }
.tier-card li::before { content: '✓  '; color: var(--tc, var(--md-ink)); font-weight: 700; }

/* ---- Tier badges ---- */
.tier-badge {
  display: inline-block;
  background: var(--tc); color: #ffffff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 13px; border-radius: var(--radius-btn);
  vertical-align: middle;
}
.setups-note { text-align: center; margin-top: 34px; color: var(--md-ink-soft); }

/* ---- Pricing tabs ---- */
.section-pricing { background: var(--md-surface-container); }
.size-tabs {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 38px;
}
.size-tab {
  font-family: var(--font); font-size: 0.95rem; font-weight: 500;
  padding: 10px 26px; border-radius: var(--radius-btn); cursor: pointer;
  border: 1px solid var(--md-outline); background: var(--md-surface); color: var(--md-ink-soft);
  transition: 0.15s;
}
.size-tab:hover { border-color: var(--md-ink); color: var(--md-ink); }
.size-tab.is-active {
  background: var(--md-primary); border-color: var(--md-primary);
  color: var(--md-on-primary); box-shadow: var(--elev-1);
}

.size-panel { animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.table-heading { margin: 40px 0 20px; }
.panel-note { margin: 18px 2px 0; color: var(--md-ink-faint); font-size: 0.92rem; }

/* ---- Package cards (one image per tier/bundle) ---- */
.pkg-grid { display: grid; gap: 20px; }
.pkg-grid-2 { grid-template-columns: repeat(2, 1fr); }
/* Flex (not grid) so a partial last row — e.g. the 2 leftover Premium bundles —
   stays centred instead of hugging the left. Three per row on desktop. */
.pkg-grid-3 { display: flex; flex-wrap: wrap; justify-content: center; }
.pkg-grid-3 > * { flex: 0 1 calc((100% - 40px) / 3); min-width: 0; }
.pkg-card {
  background: var(--md-surface);
  border-radius: var(--radius-card);
  border: 2px solid var(--tc, var(--md-primary));
  box-shadow: var(--elev-1);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.pkg-card:hover { box-shadow: var(--elev-2); transform: translateY(-2px); }
.pkg-img {
  border-radius: 0; border: none;
  border-bottom: 2px dashed var(--md-outline);
  min-height: 0; width: 100%;
}
.pkg-img-wide { aspect-ratio: 21 / 9; }
.pkg-img-sq { aspect-ratio: 1 / 1; }
.pkg-body {
  padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1;
}
.pkg-body .tier-badge { align-self: flex-start; margin-bottom: 8px; }
.pkg-body h4 { font-size: 1.08rem; font-weight: 700; color: var(--tc-ink, var(--md-ink)); margin-bottom: 6px; }
.pkg-desc { font-size: 0.9rem; color: var(--md-ink-soft); margin-bottom: 12px; }
.pkg-perk { font-size: 0.8rem; color: var(--md-ink-faint); margin-bottom: 12px; }
.pkg-perk::before { content: '\1F381  '; }
.pkg-price { margin-top: auto; font-weight: 900; font-size: 1.5rem; color: var(--tc, var(--md-ink)); }
.nett { font-size: 0.6em; font-weight: 500; color: #9a9a9a; letter-spacing: 0.02em; }

/* LINE8 premium colour swatches */
.line8-colours-heading { margin: 40px 0 2px; font-size: 1.15rem; font-weight: 700; }
/* All 10 finishes in a single row on desktop; kept small since the source
   swatch images are low-res and would blur if scaled up. */
.line8-swatches {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px;
}
.swatch { margin: 0; text-align: center; }
.swatch img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: 8px; box-shadow: var(--elev-1);
  background: var(--md-surface-container);
}
.swatch figcaption {
  margin-top: 6px; font-size: 0.72rem; font-weight: 500; color: var(--md-ink-soft);
  line-height: 1.3;
}
@media (max-width: 820px) { .line8-swatches { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 460px) { .line8-swatches { grid-template-columns: repeat(3, 1fr); } }

.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.perk {
  background: var(--md-surface); border-radius: var(--radius-card);
  padding: 18px 20px; font-size: 0.9rem; color: var(--md-ink-soft);
  box-shadow: var(--elev-1);
}
.perk span { display: block; font-size: 1.4rem; margin-bottom: 8px; }

/* ---- Google reviews ---- */
.section-reviews { background: var(--md-surface-container); }
/* Auto-scrolling review roll (mirrors the reels marquee). */
.reviews-marquee { overflow: hidden; margin: 40px 0 8px; }
.reviews-marquee:empty { display: none; }
.reviews-track {
  display: flex; width: max-content;
  animation: reviewScroll 90s linear infinite;
  will-change: transform; /* own layer for smooth scrolling */
}
.reviews-group { display: flex; gap: 20px; padding-right: 20px; }
/* Pause on hover (mouse) and while held down (touch); a tap never freezes it. */
@media (hover: hover) {
  .reviews-track:hover { animation-play-state: paused; }
}
.reviews-track.is-held { animation-play-state: paused; }
/* Shifting exactly one group width loops the two identical groups seamlessly. */
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: none; width: 320px; display: flex; flex-direction: column;
  background: var(--md-surface); border-radius: var(--radius-card);
  box-shadow: var(--elev-1); padding: 22px 22px 20px;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  position: relative; width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-weight: 700; color: #fff; font-size: 1.05rem;
}
.review-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: inherit;
}
.review-who { min-width: 0; display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 0.98rem; }
.review-when { color: var(--md-ink-faint); font-size: 0.8rem; margin-top: 2px; }
.review-stars { color: #ffb400; letter-spacing: 1px; font-size: 0.95rem; margin-bottom: 8px; display: block; }
.review-text {
  color: var(--md-ink-soft); font-size: 0.93rem; line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 8;
  overflow: hidden;
}
/* Attached-photo thumbnails, shown as small squircles above the review text. */
.review-photos { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 12px; }
.review-thumb {
  width: 58px; height: 58px; padding: 0; border: 0; border-radius: 14px;
  overflow: hidden; cursor: pointer; background: var(--md-surface-container);
  box-shadow: var(--elev-1); transition: transform 0.15s ease;
}
.review-thumb:hover { transform: scale(1.05); }
.review-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-source { margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 6px; color: var(--md-ink-faint); font-size: 0.78rem; }
.review-source svg { width: 15px; height: 15px; }
/* Photo lightbox */
.review-lightbox {
  position: fixed; inset: 0; z-index: 2000; display: flex;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(0, 0, 0, 0.85);
}
.review-lightbox[hidden] { display: none; }
.review-lightbox img {
  max-width: 100%; max-height: 100%; border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}
.review-lightbox-close {
  position: absolute; top: 16px; right: 20px; width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15); color: #fff; border: 0;
  border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.review-lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }

/* ---- Vision ---- */
.section-vision { background: var(--md-dark); color: #e8e8e8; text-align: center; }
.section-vision h2 { color: #fff; margin-bottom: 24px; }
.vision-lead { font-size: 1.22rem; color: #dedede; max-width: 640px; margin: 0 auto 22px; }
.vision-lead em { color: #ffc93a; font-style: normal; font-weight: 700; }
.vision-warn { color: #9a9a9a; max-width: 560px; margin: 0 auto; font-size: 0.98rem; }

/* ---- FAQ ---- */
.accordion { margin-top: 36px; }
.accordion details {
  border-radius: 12px; box-shadow: var(--elev-1);
  margin-bottom: 12px; background: var(--md-surface); overflow: hidden;
}
.accordion summary {
  cursor: pointer; font-weight: 500; padding: 18px 22px;
  list-style: none; position: relative; padding-right: 48px;
}
.accordion summary:hover { background: var(--md-surface-container); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 700; color: #d99e00;
}
.accordion details[open] summary::after { content: '\2212'; }
.accordion details p { padding: 4px 22px 18px; color: var(--md-ink-soft); font-size: 0.96rem; }
.accordion details p a { font-weight: 500; }

/* ---- Blog ---- */
.section-blog { background: var(--md-surface-container); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.blog-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--md-surface); border-radius: var(--radius-card);
  padding: 22px 22px; text-decoration: none; color: var(--md-ink);
  box-shadow: var(--elev-1); transition: box-shadow 0.2s, transform 0.15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--elev-3); }
.blog-tag {
  align-self: flex-start; background: var(--md-primary); color: var(--md-on-primary);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-btn); margin-bottom: 12px;
}
.blog-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.blog-card p { color: var(--md-ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.blog-more { margin-top: auto; color: var(--md-ink); font-weight: 500; font-size: 0.9rem; }
.blog-more::after { content: ' \2192'; }

/* ---- Contact ---- */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px;
}
.contact-card {
  background: var(--md-surface-container);
  border-radius: var(--radius-card); padding: 26px 24px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { color: var(--md-ink-soft); font-size: 0.96rem; margin-bottom: 10px; }
.contact-card a { text-decoration: none; }
.contact-social, .contact-fine { font-size: 0.88rem; color: var(--md-ink-faint); }
.support-line { text-align: center; margin-top: 30px; color: var(--md-ink-soft); }
.support-line a { text-decoration: none; }

/* ---- Footer ---- */
.site-footer {
  background: var(--md-dark); color: #a8a8a8; padding: 36px 0 60px; text-align: center;
  font-size: 0.9rem;
}
.footer-wrap p { margin: 4px 0; }
.footer-social { display: flex; gap: 14px; justify-content: center; margin-bottom: 14px; }
.footer-social a {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.24); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.site-footer strong { color: #fff; }
.site-footer a { color: #d6d6d6; text-decoration: none; }
.footer-legal { margin-top: 12px; font-size: 0.85rem; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: #fff; }

/* ---- WhatsApp FAB ---- */
.wa-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--elev-3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 6px 14px 4px rgba(0, 0, 0, 0.2); }

/* ---- Blog article pages ---- */
.article { max-width: 720px; margin: 0 auto; padding: 64px 24px 90px; }
.article-back {
  display: inline-block; margin-bottom: 30px; text-decoration: none;
  color: var(--md-ink-faint); font-size: 0.92rem; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius-btn); background: var(--md-surface-variant);
}
.article-back:hover { color: var(--md-ink); background: var(--md-primary-container); }
.article h1 { font-size: clamp(1.8rem, 4.5vw, 2.4rem); font-weight: 900; letter-spacing: -0.015em; margin-bottom: 20px; }
.article .lede {
  font-size: 1.12rem; font-weight: 500; color: var(--md-on-primary-container);
  background: var(--md-primary-container); border-radius: 12px; padding: 18px 22px; margin-bottom: 34px;
}
.article h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.article p { color: var(--md-ink-soft); margin-bottom: 16px; }
.article .callout { margin-top: 40px; }
.article .callout a { color: var(--md-ink); font-weight: 700; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .lead-wrap { grid-template-columns: 1fr; gap: 28px; }
  .lead-success { grid-column: auto; }
  /* Single-column cards get wide; let the 16:9 bundle photo show at full height, uncropped */
  .tier-img { height: auto; aspect-ratio: 16 / 9; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { min-height: 240px; }
  .guide-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .guide-badges, .tier-grid, .perks { grid-template-columns: 1fr; }
  .pkg-grid-3 > * { flex-basis: calc((100% - 20px) / 2); } /* two per row on tablet, last one centred */
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; }
  .trust-bar { font-size: 0.78rem; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--md-surface);
    box-shadow: var(--elev-2); padding: 8px 0 14px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: block; }
  .nav-wrap { gap: 12px; }
  .nav-cta { margin-left: auto; padding: 8px 14px; font-size: 0.85rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .size-tabs {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 340px; margin: 0 auto 38px;
  }
  .size-tab { width: 100%; padding: 10px 0; text-align: center; }
  .pkg-grid-2 { grid-template-columns: 1fr; }
  .pkg-grid-3 > * { flex-basis: 100%; } /* single column on mobile */
  .lead-fields { grid-template-columns: 1fr; }
  .reel-track video { height: 130px; border-radius: 12px; margin-right: 10px; }
  .pkg-img-sq { aspect-ratio: 16 / 9; }
  .wa-fab { left: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ============ Motion: scroll reveal + micro-interactions ============ */
/* The fade-in applies to everyone. A pure opacity change is not "motion", so it
   is safe under reduced-motion — and it means the effect still shows in the many
   in-app browsers (Instagram/TikTok/Facebook) that report reduced-motion. The
   .js-anim gate (set in <head> before first paint) keeps no-JS visitors seeing
   content and avoids any flash. */
.js-anim .hero-copy,
.js-anim .hero-photo,
.js-anim .section-title,
.js-anim .lead-copy,
.js-anim .lead-form,
.js-anim .guide-grid > div,
.js-anim .guide-photo,
.js-anim .badge-card,
.js-anim .tier-card,
.js-anim .table-heading,
.js-anim .pkg-card,
.js-anim .line8-swatches .swatch,
.js-anim .perk,
.js-anim .steps li,
.js-anim .section-vision .container > *,
.js-anim .accordion details,
.js-anim .blog-card,
.js-anim .contact-card {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* !important so it beats the higher-specificity hidden selectors above
   (e.g. .steps li, .guide-grid > div) once JS adds the class. */
.js-anim .is-visible { opacity: 1 !important; }

/* The upward slide is the actual "motion", so it is added only when the visitor
   allows motion. Reduced-motion visitors still get the fade, just no movement. */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .hero-copy,
  .js-anim .hero-photo,
  .js-anim .section-title,
  .js-anim .lead-copy,
  .js-anim .lead-form,
  .js-anim .guide-grid > div,
  .js-anim .guide-photo,
  .js-anim .badge-card,
  .js-anim .tier-card,
  .js-anim .table-heading,
  .js-anim .pkg-card,
  .js-anim .line8-swatches .swatch,
  .js-anim .perk,
  .js-anim .steps li,
  .js-anim .section-vision .container > *,
  .js-anim .accordion details,
  .js-anim .blog-card,
  .js-anim .contact-card {
    transform: translateY(24px);
  }
  .js-anim .is-visible { transform: none !important; }
}

/* Micro-interaction: tactile press on every button. */
.btn { will-change: transform; }
.btn:active { transform: translateY(1px) scale(0.99); }

/* Give the previously-static cards the same gentle hover lift as the others. */
.badge-card, .steps li, .contact-card, .perk {
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.badge-card:hover, .steps li:hover, .contact-card:hover, .perk:hover {
  transform: translateY(-3px);
  box-shadow: var(--elev-2);
}

/* Colour swatches nudge up on hover. */
.swatch img { transition: transform 0.18s ease, box-shadow 0.22s ease; }
.swatch:hover img { transform: translateY(-3px) scale(1.04); box-shadow: var(--elev-2); }

/* Photos in the location cards ease in slightly on hover. */
.contact-card { overflow: hidden; }
.contact-img { transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1); }
.contact-card:hover .contact-img { transform: scale(1.04); }

/* Nav links grow an underline from the centre on hover. */
.site-nav a { position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 6px;
  height: 2px; background: var(--md-ink); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.22s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:active,
  .badge-card:hover, .steps li:hover, .contact-card:hover, .perk:hover,
  .swatch:hover img, .contact-card:hover .contact-img { transform: none !important; }
  .site-nav a::after { display: none; }
}

/* On small screens the nav is a stacked menu; skip the underline sweep there. */
@media (max-width: 900px) {
  .site-nav a::after { display: none; }
}
