/* =========================================================
   Reelio — English brand landing page
   Warm cream + bronze-gold, Poppins-set, soft-shadow cards
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #f6f2ea;          /* warm cream page bg */
  --bg-2: #f1ebdf;        /* slightly deeper alt bg */
  --card: #ffffff;
  --card-soft: #fdfbf6;
  --card-tint: #faf6ee;

  /* Ink / text */
  --ink: #16161a;         /* headings near-black */
  --ink-2: #2c2c30;
  --muted: #6f7178;       /* body / subtitle gray */
  --muted-2: #9a9ca2;     /* faint meta */

  /* Gold / bronze brand */
  --gold: #c0883a;        /* primary button & accents */
  --gold-deep: #9c6b27;
  --gold-dark: #6f4c1c;
  --gold-light: #e2bd7e;
  --gold-soft: #efe6d5;   /* pill / chip bg */
  --gold-soft-2: #f3ecdd;
  --gold-grad: linear-gradient(120deg, #6c4b1d 0%, #a9762e 42%, #cf9a44 100%);
  --gold-btn: linear-gradient(180deg, #c89249 0%, #b27c30 100%);
  --gold-btn-flat: #bd8438;

  /* Dark sections */
  --dark: #282b32;        /* charcoal-navy banner */
  --dark-2: #20232a;

  /* Lines */
  --line: rgb(26 22 14 / 0.09);
  --line-soft: rgb(26 22 14 / 0.06);
  --line-strong: rgb(26 22 14 / 0.14);

  /* Shadows */
  --sh-card: 0 14px 40px rgb(40 30 15 / 0.07), 0 2px 6px rgb(40 30 15 / 0.04);
  --sh-card-hover: 0 24px 60px rgb(40 30 15 / 0.12);
  --sh-soft: 0 10px 30px rgb(40 30 15 / 0.06);
  --sh-float: 0 30px 70px rgb(30 22 12 / 0.18);
  --sh-gold: 0 14px 34px rgb(176 120 45 / 0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1240px;
  --radius: 22px;

  color-scheme: light;
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
p, h1, h2, h3, h4, h5 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-light); color: #1a1206; }

/* ===== Helpers ===== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hand {
  font-family: "Caveat", cursive;
  color: var(--gold-deep);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

/* ===== Kicker pill ===== */
.kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== Section scaffolding ===== */
.section { padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 64px); position: relative; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 880px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 {
  margin-top: 20px;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head .lead {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  text-wrap: balance;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
    background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn-gold {
  color: #fff;
  background: var(--gold-btn);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgb(176 120 45 / 0.42); }
.btn-outline {
  color: var(--gold-deep);
  border-color: rgb(176 120 45 / 0.5);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold-deep); }
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 0.95rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgb(255 255 255 / 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgb(40 30 15 / 0.06);
  border-color: var(--line-soft);
  background: rgb(255 255 255 / 0.94);
}
.brand img { width: 132px; height: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
}
.header-nav a { position: relative; transition: color .2s; }
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.header-nav a:hover { color: var(--gold-deep); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .login { font-weight: 500; color: var(--ink-2); transition: color .2s; white-space: nowrap; }
.header-actions .login:hover { color: var(--gold-deep); }
.nav-toggle { display: none; }

/* =========================================================
   HERO — split before/after
   ========================================================= */
.hero { padding: 0; }
@property --p { syntax: '<number>'; inherits: true; initial-value: 0.5; }
.hero-stage {
  position: relative;
  min-height: clamp(640px, 88vh, 840px);
  overflow: hidden;
  isolation: isolate;
  background: #08080a;
  --p: 0.5;
}
.hero-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* static photo (left of divider) — dull, flat, lifeless */
#heroPhoto { filter: grayscale(.5) saturate(.55) contrast(.9) brightness(.92); }
.hero-photo-cool {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  clip-path: inset(0 calc((1 - var(--p)) * 100%) 0 0);
  background: linear-gradient(0deg, rgba(96,104,116,.34), rgba(96,104,116,.26));
  mix-blend-mode: saturation;
}
/* a second flat gray wash over the photo side to kill any pop */
.hero-photo-cool::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(108,112,120,.18);
  mix-blend-mode: multiply;
}
/* live video (right of divider) — rich, warm, alive */
#heroLive {
  z-index: 1;
  filter: saturate(1.24) contrast(1.1) brightness(1.05);
  clip-path: inset(0 0 0 calc(var(--p) * 100%));
}
.hero-live-grade {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  clip-path: inset(0 0 0 calc(var(--p) * 100%));
  background:
    radial-gradient(125% 120% at 60% 45%, rgba(0,0,0,0) 50%, rgba(0,0,0,.36) 100%),
    linear-gradient(0deg, rgba(255,140,40,.16), rgba(255,190,100,.07));
  mix-blend-mode: multiply;
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  box-shadow: inset 0 0 160px 30px rgba(0,0,0,.45);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgb(20 14 8 / 0.5) 72%, rgb(14 10 6 / 0.86) 100%);
}
/* drifting divider */
.hero-rev-divider {
  position: absolute; top: 0; bottom: 0; z-index: 6;
  left: calc(var(--p) * 100%); width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,.25), #fff 50%, rgba(255,255,255,.25));
  box-shadow: 0 0 12px 2px rgba(255,255,255,.5), 0 0 40px 8px rgba(255,200,130,.18);
}
/* corner pills */
.hero-pill {
  position: absolute; top: 28px; z-index: 7;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: .12em;
  padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(8px); white-space: nowrap;
}
.hero-pill.left { left: 28px; color: #fff; background: rgba(15,15,18,.62); border: 1px solid rgba(255,255,255,.16); }
.hero-pill.right { right: 28px; color: #1b160c; background: rgba(244,238,226,.92);
  border: 1px solid rgba(255,255,255,.5); box-shadow: 0 6px 18px rgba(0,0,0,.3); }
.hero-pill .pill-play { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 10px solid #b9892f; }
/* divider drift loop — sweeps left to favor the video (0.22), but never
   past center going right (0.50) so the photo can't dominate.
   Runs for ALL visitors (incl. Reduce Motion): the drift is core to the
   photo→video demo, and the effect is slow, smooth, and non-flashing. */
@keyframes heroDrift { from { --p: 0.22; } to { --p: 0.50; } }
.hero-stage {
  animation: heroDrift 8s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  /* Re-assert the duration so the global reduced-motion clamp further down
     (the universal `animation-duration: .01ms !important` rule) can't freeze
     this specific hero effect. Higher specificity beats the `*` selector. */
  animation-duration: 8s !important;
}
.hero-pane { position: relative; overflow: hidden; }
.hero-pane image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-pane.right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(30 20 10 / 0.28) 0%, rgb(30 20 10 / 0.12) 40%, rgb(20 14 8 / 0.55) 100%);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  top: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-tag.dark { left: 28px; background: rgb(28 26 24 / 0.82); color: #f3ede2; backdrop-filter: blur(6px); }
.hero-tag.gold { right: 28px; background: var(--gold-btn-flat); color: #fff; }
.hero-tag svg { width: 15px; height: 15px; }

/* center divider handle */
.hero-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgb(255 255 255 / 0.7);
  transform: translateX(-50%);
  z-index: 6;
}
.hero-handle {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-btn-flat);
  color: #fff;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.3);
  z-index: 7;
}
.hero-handle svg { width: 20px; height: 20px; }

/* video-ish title on right pane */
.hero-vid-title {
  position: absolute;
  top: 15%;
  left: 0; right: 0;
  z-index: 5;
  text-align: center;
  padding: 0 6%;
}
.hero-vid-title h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgb(0 0 0 / 0.5);
  line-height: 1;
}
.hero-vid-title .sub {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 22px;
  border-radius: 12px;
  background: rgb(190 138 60 / 0.9);
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

/* fake video scrubber on right pane */
.hero-scrub {
  position: absolute;
  left: 5%; right: 5%;
  bottom: 34%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.hero-scrub .play { width: 26px; height: 26px; flex: none; }
.hero-scrub .bar { flex: 1; height: 4px; border-radius: 999px; background: rgb(255 255 255 / 0.4); position: relative; }
.hero-scrub .bar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 36%; background: #fff; border-radius: 999px; }
.hero-scrub .bar::after { content: ""; position: absolute; left: 36%; top: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; border-radius: 50%; background: var(--gold-light); }
.hero-scrub .t { font-size: 0.85rem; font-weight: 500; }
.hero-scrub .ic { width: 20px; height: 20px; flex: none; }

/* hero overlay copy (bottom, over dark) */
.hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 70px);
  transform: translateX(-50%);
  z-index: 8;
  width: min(720px, 92%);
  text-align: center;
}
.hero-copy h1 {
  font-size: clamp(1.85rem, 3.7vw, 3.05rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.5);
}
.hero-copy h1 .gold { color: var(--gold-light); }
.hero-copy .hsub {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 400;
  text-shadow: 0 2px 14px rgb(0 0 0 / 0.5);
}
.hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta-row .hand { font-size: 1.45rem; color: var(--gold-light); display: inline-flex; align-items: center; gap: 8px; }

/* ===== Trust bar ===== */
.trust-bar {
  max-width: var(--maxw);
  margin: -40px auto 0;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  padding: 22px clamp(24px, 4vw, 48px);
  background: var(--card-tint);
  border-radius: 20px;
  box-shadow: var(--sh-soft);
}
.trust-bar .tb-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: uppercase;
  line-height: 1.3;
  padding-right: clamp(12px, 2vw, 28px);
  border-right: 1px solid var(--line);
}
.logo-strip { display: flex; align-items: center; gap: clamp(22px, 4vw, 52px); flex-wrap: wrap; justify-content: center; }
.logo-wm { font-weight: 800; letter-spacing: -0.02em; color: #8a8d93; opacity: 0.85; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; font-size: 1.15rem; }
.logo-wm.remax { color: #b9322f; }
.logo-wm.remax .slash { color: #1f3a93; }
.logo-wm.kw { flex-direction: column; line-height: 0.85; align-items: flex-start; font-size: 0.95rem; }
.logo-wm.kw .kw-badge { background: #b08f3a; color: #fff; padding: 2px 6px; border-radius: 3px; font-size: 0.85rem; }
.logo-wm.c21 { color: #5b5b52; font-family: "Poppins"; letter-spacing: 0.02em; font-size: 1.05rem; }
.logo-wm.cb { color: #16407a; }
.logo-wm.cb .cb-mark { background: #16407a; color: #fff; border-radius: 4px; padding: 1px 5px; margin-right: 4px; }

/* =========================================================
   SEE THE DIFFERENCE
   ========================================================= */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.diff-photos {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card-tint);
  border: 1px solid var(--line);
}
.diff-photos .panel-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #45413c;
  color: #f2ede4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.diff-photos .pg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.diff-photos .pg image-slot { width: 100%; aspect-ratio: 4/3; }
.diff-arrow {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-btn-flat);
  color: #fff;
  flex: none;
  box-shadow: var(--sh-gold);
}
.diff-arrow svg { width: 22px; height: 22px; }
.diff-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-float);
  background: #1a1714;
}
.diff-video image-slot, .diff-video video { width: 100%; aspect-ratio: 16/10; }
.diff-video .panel-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--gold-btn-flat);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.play-btn {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--gold-deep);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.3);
  z-index: 4;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
/* video chrome (fake controls bar) */
.vid-chrome {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgb(10 8 6 / 0.6), transparent);
  color: #fff;
}
.vid-chrome .ic { width: 18px; height: 18px; flex: none; }
.vid-chrome .t { font-size: 0.82rem; font-weight: 500; }
.vid-chrome .track { flex: 1; height: 4px; border-radius: 999px; background: rgb(255 255 255 / 0.35); position: relative; }
.vid-chrome .track::before { content: ""; position: absolute; inset: 0 64% 0 0; background: var(--gold-light); border-radius: 999px; }
.vid-chrome .track::after { content: ""; position: absolute; left: 36%; top: 50%; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; }

.diff-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--maxw);
  margin: clamp(40px, 5vw, 60px) auto 0;
}
.diff-point { display: flex; gap: 14px; padding: 0 clamp(16px, 2vw, 28px); }
.diff-point:not(:last-child) { border-right: 1px solid var(--line); }
.diff-point .pic {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.diff-point .pic svg { width: 22px; height: 22px; }
.diff-point h4 { font-size: 1.02rem; font-weight: 600; }
.diff-point p { margin-top: 4px; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }

/* =========================================================
   EVERYTHING IN ONE — tabs
   ========================================================= */
.tabs {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 4px 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.tab svg { width: 22px; height: 22px; }
.tab[aria-selected="true"] { color: var(--gold-deep); border-color: var(--gold); font-weight: 600; }
.tab:hover { color: var(--ink); }

.tab-panel {
  display: none;
  max-width: var(--maxw);
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card-soft);
}
.tab-panel.active { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.tab-panel .tp-copy h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
.tab-panel .tp-copy > p { margin-top: 16px; color: var(--muted); font-size: 1.04rem; line-height: 1.6; }
.tp-list { display: grid; gap: 14px; margin-top: 26px; }
.tp-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-2); }
.tp-list li svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.tp-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--sh-card); }
.tp-media image-slot, .tp-media video { width: 100%; aspect-ratio: 16/10; }

.everything-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}
.everything-foot .ef-text { color: var(--muted); font-size: 1.06rem; }
.everything-foot .ef-pill {
  padding: 10px 22px;
  border: 1.5px solid rgb(176 120 45 / 0.5);
  border-radius: 999px;
  color: var(--gold-deep);
  font-weight: 600;
}

/* =========================================================
   HOW IT WORKS — 4 steps
   ========================================================= */
.steps-band { background: var(--bg-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.step { position: relative; text-align: center; min-width: 0; }
.step .step-arrow {
  position: absolute;
  top: 30px; right: -14px;
  color: var(--muted-2);
  z-index: 2;
}
.step .step-arrow svg { width: 22px; height: 22px; }
.step-icon {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto;
  display: grid; place-items: center;
  color: var(--gold-deep);
}
.step-icon svg { width: 42px; height: 42px; stroke-width: 1.5; }
.step-num {
  position: absolute;
  left: calc(50% - 56px); top: 4px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-btn-flat);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}
.step h3 { margin-top: 18px; font-size: 1.22rem; font-weight: 600; }
.step p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; line-height: 1.5; padding: 0 6px; }
.step-card {
  margin-top: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
  overflow: hidden;
  text-align: left;
  min-width: 0;
}

/* step card 1: upload */
.sc-upload { padding: 14px; }
.sc-upload image-slot { width: 100%; aspect-ratio: 16/10; border-radius: 12px; }
.sc-dropzone {
  margin-top: 12px;
  border: 2px dashed rgb(176 120 45 / 0.45);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  position: relative;
}
.sc-dropzone .up-ic { width: 38px; height: 38px; margin: 0 auto 8px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); }
.sc-thumbs { display: flex; gap: 8px; margin-top: 12px; align-items: center; }
.sc-thumbs image-slot { flex: 1; aspect-ratio: 1; border-radius: 8px; }
.sc-thumbs .add { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-btn-flat); color: #fff; font-size: 1.2rem; }

/* step card 2: choose style */
.sc-style { padding: 0; }
.sc-style > image-slot { width: 100%; aspect-ratio: 16/9; }
.sc-style .styles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 12px; }
.sc-style .styles .st { text-align: center; }
.sc-style .styles image-slot { width: 100%; aspect-ratio: 1; border-radius: 8px; }
.sc-style .styles.active-first .st:first-child image-slot { outline: 2px solid var(--gold); outline-offset: 1px; }
.sc-style .styles .st span { display: block; margin-top: 5px; font-size: 0.72rem; color: var(--muted); }

/* step card 3: creating (dark) */
.sc-create { background: #1c1f25; color: #e8e6e1; padding: 18px; min-width: 0; }
.sc-create .cc-title { font-size: 0.96rem; font-weight: 600; }
.sc-create .cc-bar { height: 7px; border-radius: 999px; background: rgb(255 255 255 / 0.14); margin: 12px 0 16px; overflow: hidden; position: relative; }
.sc-create .cc-bar i { position: absolute; inset: 0; width: 100%; background: var(--gold-btn-flat); border-radius: 999px; }
.sc-create .cc-pct { float: right; font-size: 0.8rem; color: var(--gold-light); margin-top: -30px; }
.sc-create .cc-list { display: grid; gap: 10px; }
.sc-create .cc-list li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: rgb(232 230 225 / 0.9); }
.sc-create .cc-list li svg { width: 16px; height: 16px; color: var(--gold-light); flex: none; }

/* step card 4: deliverables */
.sc-deliver { padding: 12px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 8px; min-width: 0; }
.sc-deliver .d-box { min-width: 0; }
.sc-deliver .d-copy p { overflow-wrap: anywhere; }
.sc-deliver .d-box { background: var(--card-tint); border: 1px solid var(--line); border-radius: 10px; padding: 8px; }
.sc-deliver .d-vid { position: relative; }
.sc-deliver .d-vid image-slot { width: 100%; aspect-ratio: 16/10; border-radius: 8px; }
.sc-deliver .d-vid .play-mini { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 30px; height: 30px; border-radius: 50%; background: rgb(255 255 255 / 0.85); display: grid; place-items: center; color: var(--gold-deep); }
.sc-deliver .d-vid .play-mini svg { width: 14px; height: 14px; }
.sc-deliver .d-head { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 600; color: var(--gold-deep); }
.sc-deliver .d-head svg { width: 14px; height: 14px; }
.sc-deliver .d-copy p { margin-top: 6px; font-size: 0.7rem; color: var(--muted); line-height: 1.4; }
.sc-deliver .d-social { margin-top: 6px; display: flex; gap: 6px; }
.sc-deliver .d-social .s { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 0.6rem; }
.sc-deliver .d-thumbs { display: flex; gap: 4px; margin-top: 6px; }
.sc-deliver .d-thumbs image-slot { flex: 1; aspect-ratio: 1; border-radius: 5px; }
.sc-deliver .d-wave { margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.sc-deliver .d-wave .pl { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-btn-flat); color: #fff; display: grid; place-items: center; flex: none; }
.sc-deliver .d-wave .pl svg { width: 12px; height: 12px; }
.sc-deliver .d-wave .wf { flex: 1; height: 20px; background:
  repeating-linear-gradient(90deg, var(--gold-light) 0 2px, transparent 2px 5px); opacity: 0.7; border-radius: 4px; }

/* =========================================================
   PROPERTY TYPES — carousel
   ========================================================= */
.types-carousel { position: relative; max-width: 1340px; margin: 0 auto; padding: 0 clamp(36px, 5vw, 64px); }
.types-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  scrollbar-width: none;
}
.types-track::-webkit-scrollbar { display: none; }
.type-card {
  position: relative;
  flex: 0 0 clamp(220px, 22vw, 250px);
  aspect-ratio: 3/4.4;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--sh-card);
}
.type-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.type-card .tc-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(0deg, rgb(14 11 8 / 0.92) 10%, rgb(14 11 8 / 0.5) 60%, transparent);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.type-card .tc-ic {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-btn-flat);
  flex: none;
}
.type-card .tc-ic svg { width: 17px; height: 17px; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  box-shadow: var(--sh-soft);
  cursor: pointer;
  z-index: 6;
  transition: transform .2s, color .2s;
}
.carousel-arrow:hover { color: var(--gold-deep); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.carousel-dots button { width: 9px; height: 9px; border: 0; border-radius: 50%; background: rgb(26 22 14 / 0.18); cursor: pointer; padding: 0; transition: background .2s, width .2s; }
.carousel-dots button.active { background: var(--gold); width: 24px; border-radius: 999px; }

/* =========================================================
   BEFORE / AFTER — 3 columns
   ========================================================= */
.ba-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  margin: 0 auto;
}
.ba-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-card);
}
.ba-col .ba-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ba-col .ba-head h3 { font-size: 1.2rem; font-weight: 600; }
.ba-col .ba-head .ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgb(176 120 45 / 0.45);
  color: var(--gold-deep);
}
.ba-col .ba-head .ic svg { width: 20px; height: 20px; }
.ba-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-photos image-slot { width: 100%; aspect-ratio: 4/3; }
.ba-vid { position: relative; border-radius: 14px; overflow: hidden; flex: 1; min-height: 240px; }
.ba-vid image-slot, .ba-vid video { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-foot { margin-top: 16px; text-align: center; color: var(--muted); font-size: 0.95rem; }
.ba-copy-lead { color: var(--gold-deep); font-weight: 600; font-size: 1.02rem; }
.ba-copy-body { margin-top: 12px; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.ba-copy-body + .ba-copy-body { margin-top: 12px; }
.ba-specs { margin-top: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; display: grid; gap: 10px; }
.ba-specs li { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-2); }
.ba-specs li svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.ba-connector { align-self: center; }
.ba-connector .diff-arrow { width: 44px; height: 44px; transform: rotate(90deg); }
.ba-cta { text-align: center; margin-top: clamp(34px, 4vw, 48px); }
.ba-cta .hand { display: block; margin-top: 16px; }

/* =========================================================
   YOU HAVE PROPERTIES
   ========================================================= */
.props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.props-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 22px;
}
.props-copy .lead { margin-top: 20px; color: var(--muted); font-size: 1.12rem; line-height: 1.6; max-width: 480px; }
.props-divider { height: 1px; background: var(--line); margin: 28px 0; }
.props-feats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.props-feat { text-align: center; padding: 0 6px; }
.props-feat:not(:last-child) { border-right: 1px solid var(--line); }
.props-feat .pf-ic { width: 38px; height: 38px; margin: 0 auto 10px; color: var(--gold-deep); display: grid; place-items: center; }
.props-feat .pf-ic svg { width: 30px; height: 30px; stroke-width: 1.5; }
.props-feat h4 { font-size: 0.84rem; font-weight: 600; line-height: 1.2; }
.props-feat p { margin-top: 6px; font-size: 0.74rem; color: var(--muted); line-height: 1.35; }
.props-cta { margin-top: 36px; }
.props-cta .btn { width: 100%; max-width: 480px; }
.props-cta .hand { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; }
.props-visual { position: relative; }
.props-visual image-slot { width: 100%; aspect-ratio: 1/1.04; border-radius: 26px; box-shadow: var(--sh-float); }
.props-badge {
  position: absolute;
  left: 18px; right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgb(20 16 12 / 0.62);
  backdrop-filter: blur(10px);
  color: #fff;
}
.props-badge .pb-ic { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold-btn-flat); }
.props-badge .pb-ic svg { width: 24px; height: 24px; }
.props-badge p { font-size: 1.06rem; font-weight: 500; line-height: 1.35; }

/* =========================================================
   EXAMPLES — card carousel
   ========================================================= */
.ex-carousel { position: relative; max-width: 1340px; margin: 0 auto; padding: 0 clamp(36px, 5vw, 64px); }
.ex-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 16px;
  scrollbar-width: none;
}
.ex-track::-webkit-scrollbar { display: none; }
.ex-card {
  flex: 0 0 clamp(280px, 28vw, 300px);
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
}
.ex-thumb { position: relative; }
.ex-thumb image-slot,
.ex-thumb video { width: 100%; aspect-ratio: 16/11; }
.ex-thumb video { display: block; object-fit: cover; background: #0e0b08; cursor: pointer; }
.ex-thumb .play-btn { transition: transform .25s var(--ease), opacity .2s var(--ease); }
.ex-thumb .dur { transition: opacity .2s var(--ease); }
.ex-thumb.started .play-btn,
.ex-thumb.started .dur { opacity: 0; visibility: hidden; pointer-events: none; }
.ex-thumb .badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 3;
}
.badge.sale { background: #3f7d52; }
.badge.rent { background: #3b6fb0; }
.badge.commercial { background: #6b4fa8; }
.badge.luxury { background: var(--gold-btn-flat); }
.ex-thumb .dur {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgb(14 11 8 / 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 3;
}
.ex-thumb .play-btn { width: 58px; height: 58px; }
.ex-thumb .play-btn svg { width: 22px; height: 22px; }
.ex-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.ex-body h3 { font-size: 1.2rem; font-weight: 600; }
.ex-meta { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px 14px; color: var(--ink-2); font-size: 0.88rem; font-weight: 500; }
.ex-meta .sep { color: var(--muted-2); }
.ex-loc { margin-top: 8px; display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 0.86rem; }
.ex-loc svg { width: 14px; height: 14px; color: var(--gold); }
.ex-desc { margin-top: 12px; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.ex-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.ex-link svg { width: 18px; height: 18px; }
.ex-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(30px, 4vw, 44px);
  color: var(--muted);
  font-size: 1rem;
}
.ex-foot .ef-ic { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid rgb(176 120 45 / 0.4); color: var(--gold-deep); }
.ex-foot .ef-ic svg { width: 22px; height: 22px; }
.ex-cta { text-align: center; margin-top: 30px; }
.ex-cta .hand { display: block; margin-top: 14px; }

/* =========================================================
   PRICING
   ========================================================= */
.bill-toggle {
  display: flex;
  width: max-content;
  margin: 0 auto clamp(24px, 3vw, 34px);
  padding: 5px;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--sh-soft);
}
.bt-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bt-opt.active { background: var(--gold-btn-flat); color: #fff; }
.bt-save {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.bt-opt.active .bt-save { background: rgb(255 255 255 / 0.22); color: #fff; }
.free-cta { text-align: center; margin-bottom: 26px; }
.free-cta .free-btn { min-height: 48px; padding: 0 24px; font-size: 0.96rem; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
  text-align: center;
}
.price-card.popular {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgb(176 120 45 / 0.18);
  padding-top: 48px;
}
.price-card .pop-tag {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: var(--gold-btn-flat);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 17px 17px 0 0;
}
.price-card .pop-tag svg { width: 13px; height: 13px; }
.price-card .p-ic {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.price-card .p-ic svg { width: 26px; height: 26px; }
.price-card h3 { font-size: 1.3rem; font-weight: 600; }
.price-card .p-sub { margin-top: 4px; color: var(--muted); font-size: 0.86rem; }
.price-card .p-amt { margin-top: 18px; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.price-card .p-amt.p-custom { font-size: 1.45rem; margin-top: 28px; }
.price-card.popular .p-amt { color: var(--gold-deep); }
.price-card .p-per { margin-top: 6px; color: var(--muted); font-size: 0.86rem; }
.price-card .p-feats {
  list-style: none;
  margin: 22px 0 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
  text-align: left;
}
.price-card .p-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--ink-2); }
.price-card .p-feats li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--gold); }
.price-card .p-feats li.off { color: var(--muted-2); }
.price-card .p-feats li.off svg { color: var(--muted-2); }
.price-card .btn { width: 100%; margin-top: auto; }
.price-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 38px;
  max-width: var(--maxw);
  margin: 30px auto 0;
}
.price-trust .pt-item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.88rem; }
.price-trust .pt-item svg { width: 20px; height: 20px; flex: none; color: var(--gold); }
.price-magic { text-align: center; margin-top: 20px; color: var(--ink-2); font-size: 0.95rem; }
.price-enterprise {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px 36px;
  max-width: var(--maxw);
  margin: 16px auto 0;
  padding: 26px 30px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
}
.price-enterprise .pe-main { display: flex; align-items: center; gap: 15px; }
.price-enterprise .pe-ic {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.price-enterprise .pe-ic svg { width: 26px; height: 26px; }
.price-enterprise .pe-title { text-align: left; }
.price-enterprise h3 { font-size: 1.3rem; font-weight: 600; }
.price-enterprise .p-sub { margin-top: 3px; color: var(--muted); font-size: 0.86rem; }
.price-enterprise .pe-feats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 28px;
}
.price-enterprise .pe-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--ink-2); text-align: left; }
.price-enterprise .pe-feats li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--gold); }
.price-enterprise .pe-cta { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.price-enterprise .pe-amt { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.price-enterprise .pe-cta .p-per { color: var(--muted); font-size: 0.86rem; }
.price-enterprise .pe-cta .btn { margin-top: 12px; white-space: nowrap; }
.price-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  margin-top: clamp(30px, 4vw, 42px);
  flex-wrap: wrap;
}
.price-foot .pf-note { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.96rem; }
.price-foot .pf-note .ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); }
.price-foot .pf-note .ic svg { width: 20px; height: 20px; }
.price-foot .hand { display: inline-flex; align-items: center; gap: 8px; max-width: 200px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
.faq-list { display: grid; gap: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--card); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-q .fq-ic {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.faq-q .fq-ic svg { width: 22px; height: 22px; }
.faq-q .fq-text { flex: 1; }
.faq-q .fq-text strong { display: block; font-size: 1.06rem; font-weight: 600; color: var(--ink); }
.faq-q .fq-text span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.faq-q .chev { color: var(--muted-2); transition: transform .25s var(--ease); flex: none; }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-extra { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-extra-inner { padding: 0 24px 22px 84px; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.faq-side {
  padding: clamp(28px, 3vw, 40px) 28px;
  border-radius: 20px;
  background: var(--card-tint);
  border: 1px solid var(--line);
  text-align: center;
}
.faq-side .fs-ic { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--card); box-shadow: var(--sh-soft); color: var(--gold-deep); }
.faq-side .fs-ic svg { width: 30px; height: 30px; }
.faq-side h3 { font-size: 1.4rem; font-weight: 700; }
.faq-side > p { margin-top: 6px; color: var(--muted); }
.faq-contacts { display: grid; gap: 18px; margin-top: 26px; text-align: left; }
.faq-contact { display: flex; align-items: center; gap: 14px; }
.faq-contact .c-ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--card); color: var(--gold-deep); box-shadow: var(--sh-soft); }
.faq-contact .c-ic svg { width: 20px; height: 20px; }
.faq-contact .c-label { font-size: 0.82rem; color: var(--muted); }
.faq-contact .c-val { font-weight: 600; font-size: 0.98rem; }
.faq-note { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.92rem; text-align: left; }
.faq-note svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }

/* dark CTA banner (shared) */
.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
  max-width: var(--maxw);
  margin: clamp(40px, 5vw, 64px) auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.cta-banner .cb-copy { padding: clamp(30px, 4vw, 48px); z-index: 2; }
.cta-banner .cb-copy h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 700; line-height: 1.1; }
.cta-banner .cb-copy h3 .gold { color: var(--gold-light); }
.cta-banner .cb-copy p { margin-top: 14px; color: rgb(255 255 255 / 0.78); font-size: 1.04rem; max-width: 420px; }
.cta-banner .cb-copy .btn { margin-top: 24px; }
.cta-banner .cb-row { display: flex; align-items: center; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.cta-banner .cb-img { position: relative; min-height: 220px; height: 100%; }
.cta-banner .cb-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-banner .cb-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--dark) 0%, transparent 45%); }

/* inline CTA in faq banner places button inline */
.cta-banner.inline-btn { grid-template-columns: 1fr; }
.cta-banner.inline-btn .cb-copy { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner.inline-btn .cb-text h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.cta-banner.inline-btn .cb-text p { margin-top: 10px; }

/* =========================================================
   BOTTOM LINE
   ========================================================= */
.bl-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.bl-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.bl-copy h2 .gold { color: var(--gold-deep); }
.bl-copy .lead { margin-top: 18px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 440px; }
.bl-feats { display: grid; gap: 0; margin-top: 28px; }
.bl-feat { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.bl-feat:last-child { border-bottom: 0; }
.bl-feat .bf-ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid rgb(176 120 45 / 0.4); color: var(--gold-deep); }
.bl-feat .bf-ic svg { width: 22px; height: 22px; }
.bl-feat h4 { font-size: 1.1rem; font-weight: 600; }
.bl-feat p { margin-top: 3px; color: var(--muted); font-size: 0.95rem; }
.bl-cta { display: flex; align-items: flex-start; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.bl-cta .hand { display: block; max-width: 200px; margin-top: 10px; }
.bl-mini { display: flex; gap: 18px; }
.bl-mini .bm { text-align: center; max-width: 80px; }
.bl-mini .bm .ic { width: 38px; height: 38px; margin: 0 auto 6px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--gold-deep); }
.bl-mini .bm .ic svg { width: 18px; height: 18px; }
.bl-mini .bm span { font-size: 0.72rem; color: var(--muted); line-height: 1.3; display: block; }
.bl-visual { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--sh-float); }
.bl-visual image-slot, .bl-visual video { width: 100%; aspect-ratio: 16/12; }
.bl-stats {
  position: absolute;
  left: 16px; right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 8px;
  border-radius: 16px;
  background: rgb(20 16 12 / 0.66);
  backdrop-filter: blur(8px);
  color: #fff;
}
.bl-stats .bs { text-align: center; padding: 0 8px; }
.bl-stats .bs:not(:last-child) { border-right: 1px solid rgb(255 255 255 / 0.18); }
.bl-stats .bs .v { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.7rem; font-weight: 700; }
.bl-stats .bs .v svg { width: 22px; height: 22px; color: var(--gold-light); }
.bl-stats .bs span { display: block; margin-top: 2px; font-size: 0.8rem; color: rgb(255 255 255 / 0.8); }

.bl-trustrow {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: clamp(36px, 4vw, 52px) auto 0;
  padding: 24px clamp(24px, 3vw, 40px);
  border-radius: 20px;
  background: var(--bg-2);
}
.bl-trustrow .tr-l { display: flex; align-items: center; gap: 16px; }
.bl-trustrow .tr-l .ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold-btn-flat); color: #fff; }
.bl-trustrow .tr-l .ic svg { width: 22px; height: 22px; }
.bl-trustrow .tr-l p { font-weight: 500; max-width: 280px; }
.avatars { display: flex; align-items: center; }
.avatars .av { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-2); margin-left: -12px; overflow: hidden; }
.avatars .av:first-child { margin-left: 0; }
.avatars .av image-slot { width: 100%; height: 100%; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.bl-trustrow .tr-rating { text-align: center; }
.bl-trustrow .tr-rating .rt { margin-top: 4px; color: var(--muted); font-size: 0.86rem; }
.bl-trustrow .tr-note { color: var(--muted); font-size: 0.9rem; max-width: 220px; text-align: right; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tm-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.tm-card { display: flex; flex-direction: column; padding: 26px 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-card); }
.tm-quote-mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0.6; color: var(--gold); font-weight: 700; }
.tm-card blockquote { margin: 14px 0 0; font-size: 1.06rem; font-weight: 500; line-height: 1.45; color: var(--ink); }
.tm-stat { display: flex; align-items: center; gap: 14px; margin: 20px 0; padding: 16px; border-radius: 14px; background: var(--gold-soft-2); }
.tm-stat .ts-ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--card); color: var(--gold-deep); }
.tm-stat .ts-ic svg { width: 22px; height: 22px; }
.tm-stat .ts-v { font-size: 1.5rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.tm-stat .ts-l { font-size: 0.8rem; color: var(--muted); margin-top: 3px; line-height: 1.25; }
.tm-person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.tm-person .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; }
.tm-person .av image-slot { width: 100%; height: 100%; }
.tm-person .pm { flex: 1; }
.tm-person .pm strong { display: block; font-size: 0.96rem; font-weight: 600; }
.tm-person .pm .role { font-size: 0.8rem; color: var(--muted); }
.tm-person .pm .loc { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.tm-person .pm .loc svg { width: 12px; height: 12px; color: var(--gold); }
.tm-person .firm { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; color: var(--muted-2); text-align: center; line-height: 1.2; text-transform: uppercase; }

.tm-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  max-width: var(--maxw);
  margin: clamp(28px, 3vw, 40px) auto 0;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 20px;
  background: var(--card-tint);
}
.tm-band .tb-rating .stars { font-size: 1.3rem; }
.tm-band .tb-rating .rt { margin-top: 8px; font-weight: 500; }
.tm-band .tb-rating .av-row { display: flex; align-items: center; margin-top: 14px; }
.tm-band .tb-rating .av-row .av { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--card-tint); margin-left: -12px; overflow: hidden; }
.tm-band .tb-rating .av-row .av:first-child { margin-left: 0; }
.tm-band .tb-rating .av-row .av image-slot { width: 100%; height: 100%; }
.tm-band .tb-rating .av-row .more { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--card-tint); margin-left: -12px; background: var(--gold-btn-flat); color: #fff; display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; }
.tm-band .tb-rating .small { margin-top: 10px; color: var(--muted); font-size: 0.86rem; }
.tm-band .tb-quote { border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 36px); }
.tm-band .tb-quote .tm-quote-mark { font-size: 2.4rem; }
.tm-band .tb-quote p { font-size: 1.02rem; line-height: 1.55; color: var(--ink-2); }
.tm-band .tb-quote .src { margin-top: 12px; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.tm-band .tb-img { border-radius: 16px; overflow: hidden; }
.tm-band .tb-img image-slot { width: 100%; aspect-ratio: 16/10; }
.tm-cta { text-align: center; margin-top: clamp(34px, 4vw, 48px); }
.tm-cta .tc-line { font-size: 1.2rem; font-weight: 500; }
.tm-cta .tc-row { display: inline-flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
.tm-cta .hand { display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   TRUSTED BY — stats + logos + dark CTA
   ========================================================= */
.stat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.stat-card { padding: 30px 20px; border-radius: 18px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-soft); text-align: center; }
.stat-card .sc-ic { width: 56px; height: 56px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); }
.stat-card .sc-ic svg { width: 28px; height: 28px; }
.stat-card .sc-v { font-size: clamp(1.8rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -0.02em; }
.stat-card .sc-l { margin-top: 4px; color: var(--muted); font-weight: 500; font-size: 0.96rem; }
.stat-card .sc-div { height: 1px; background: var(--line); margin: 16px 8px; }
.stat-card .sc-note { color: var(--muted); font-size: 0.85rem; line-height: 1.4; }
.stat-card .stars { font-size: 1.1rem; margin-bottom: 6px; }

.brand-strip {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--maxw);
  margin: clamp(26px, 3vw, 36px) auto 0;
  padding: 26px clamp(24px, 3vw, 40px);
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.brand-strip .bs-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold-deep); text-transform: uppercase; }
.brand-strip .logo-wm { color: #4a4a48; opacity: 0.7; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--dark-2); color: rgb(255 255 255 / 0.7); padding: 48px clamp(18px, 5vw, 64px) 36px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.footer-inner img { width: 120px; height: auto; }
.footer-inner nav { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.92rem; }
.footer-inner nav a:hover { color: var(--gold-light); }
.footer-inner .copy { width: 100%; text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 0.1); font-size: 0.86rem; color: rgb(255 255 255 / 0.5); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== image-slot default look ===== */
image-slot {
  --is-empty-bg: var(--card-tint);
  --is-empty-fg: var(--muted-2);
  border-radius: 12px;
  overflow: hidden;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .nav-toggle { display: inline-grid; }
  .diff-points { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .diff-point:nth-child(2) { border-right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }
  .step .step-arrow { display: none; }
  .price-cards { grid-template-columns: repeat(3, 1fr); }
  .price-card.popular { grid-column: span 1; }
  .price-enterprise { padding: 24px; gap: 18px 28px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .tm-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .hero-stage { min-height: 78vh; }
  .hero-copy { width: 92%; bottom: clamp(24px, 5vh, 48px); }
  .hero-copy h1 { width: auto !important; max-width: 100%; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-arrow { margin: 0 auto; }
  .diff-arrow svg { transform: rotate(90deg); }
  .tab-panel.active { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-connector { display: none; }
  .props-grid, .bl-grid { grid-template-columns: 1fr; gap: 40px; }
  .props-visual, .bl-visual { order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-banner, .cta-banner.inline-btn { grid-template-columns: 1fr; }
  .cta-banner .cb-img { min-height: 200px; }
  .cta-banner .cb-img::after { background: linear-gradient(0deg, var(--dark) 0%, transparent 60%); }
  .tm-band { grid-template-columns: 1fr; }
  .tm-band .tb-quote { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .price-cards { grid-template-columns: 1fr; max-width: 420px; }
  .price-enterprise { grid-template-columns: 1fr; text-align: center; gap: 20px; max-width: 480px; }
  .price-enterprise .pe-main { flex-direction: column; text-align: center; gap: 12px; }
  .price-enterprise .pe-title { text-align: center; }
  .price-enterprise .pe-feats { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
@media (max-width: 580px) {
  .trust-bar { margin-top: 24px; }
  .diff-points { grid-template-columns: 1fr; gap: 22px; }
  .diff-point { border-right: 0 !important; }
  .steps { grid-template-columns: 1fr; }
  .props-feats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .props-feat:nth-child(2n) { border-right: 0; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.popular { grid-column: span 1; }
  .stat-cards, .tm-cards { grid-template-columns: 1fr; }
  .bl-stats .bs .v { font-size: 1.3rem; }
  .bl-trustrow .tr-note { text-align: left; }
  .footer-inner { flex-direction: column; text-align: center; }
  /* header: collapse the "Upload Photos" CTA to an icon so "Log in" has room */
  .header-actions { gap: 14px; }
  .header-actions .btn-sm { width: 44px; padding: 0; gap: 0; }
  .header-actions .btn-sm .btn-label { display: none; }
  /* hero corner badges: smaller so they don't crowd the centre */
  .hero-pill { top: 18px; font-size: 0.62rem; letter-spacing: .07em; padding: 6px 11px; gap: 6px; }
  .hero-pill.left { left: 14px; }
  .hero-pill.right { right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- Cookie consent (Amendment 13) ---- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 200;
  width: min(920px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.14);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ink-2); }
.cookie-text a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  min-height: 42px;
}
.cookie-btn.decline { background: transparent; color: var(--ink-2); border: 1px solid var(--line); }
.cookie-btn.accept { background: var(--gold-btn-flat); color: #fff; }
.cookie-btn.accept:hover { filter: brightness(1.05); }
@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ---- Inline preview videos (click a poster to play) ---- */
.vplay { display: block; object-fit: cover; background: #0e0b08; cursor: pointer; }
.play-btn { transition: transform .25s var(--ease), opacity .2s var(--ease); }
.vid-chrome, .bl-stats { transition: opacity .2s var(--ease); }
.vplaying .play-btn,
.vplaying .vid-chrome,
.vplaying .bl-stats { opacity: 0; visibility: hidden; pointer-events: none; }
