/* ============================================================
   REALBOT — Shared stylesheet
   Editorial / modern proptech aesthetic for B2B real estate
   ============================================================ */

:root {
  --bg: #FAFAF6;
  --bg-warm: #F4F1E8;
  --surface: #FFFFFF;
  --ink: #0E1116;
  --ink-soft: #404652;
  --muted: #8B909A;
  --line: #E6E3D9;
  --line-soft: #F0EDE3;
  --accent: #FF4D14;
  --accent-deep: #C73B0E;
  --accent-soft: #FFEEE6;
  --blue: #2C4BD9;
  --blue-soft: #E8ECFC;
  --gold: #B58A3E;
  --green: #1A7F4F;
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1280px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

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

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) { .wrap { padding: 0 18px; } }

section { padding: 110px 0; }
@media (max-width: 720px) { section { padding: 70px 0; } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(40px, 6.4vw, 78px); font-weight: 340; letter-spacing: -.035em; }
h2 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 350; letter-spacing: -.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; }
h4 { font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
em { font-style: italic; color: var(--accent); font-weight: 350; font-variation-settings: "opsz" 144, "WONK" 1; }

p { color: var(--ink-soft); font-size: 16px; }
.lead { font-size: 18px; line-height: 1.6; color: var(--ink-soft); font-weight: 400; }

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { font-size: 18px; line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease, color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 28px -8px rgba(255, 77, 20, .55);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #1c2128; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); background: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--accent); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 246, .85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-color: var(--line); }
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}
.site-header .logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(14, 17, 22, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: background .15s;
}
.dropdown a small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.dropdown a:hover { background: var(--accent-soft); color: var(--accent-deep); }

.nav-cta-row { display: flex; align-items: center; gap: 12px; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color .2s, color .2s;
}
.phone-pill:hover { border-color: var(--accent); color: var(--accent); }
.phone-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 127, 79, .15);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 1080px) {
  .nav-links, .phone-pill { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 8px; }
}
.mobile-menu {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px 26px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-group { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---------- Hero (home) ---------- */
.hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,17,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,17,22,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 20, .14) 0%, transparent 60%);
  top: -250px; right: -200px;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { max-width: 14ch; }
.hero h1 .stack { display: block; }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .12em;
  height: .07em;
  background: var(--accent);
  transform-origin: left;
  animation: drawLine 1.1s .6s ease both;
  transform: scaleX(0);
  border-radius: 4px;
}
@keyframes drawLine { to { transform: scaleX(1); } }

.hero-sub {
  margin-top: 26px;
  max-width: 540px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust .stars { color: var(--gold); letter-spacing: 1px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px -40px rgba(14,17,22,.18);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Floating accent cards on hero */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 16px 40px -12px rgba(14,17,22,.18);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  animation: floaty 5s ease-in-out infinite;
}
.float-card.fc1 { top: 28px; left: -28px; }
.float-card.fc2 { bottom: 32px; right: -28px; animation-delay: -2s; }
.float-card .fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.float-card .fc-dot.green { background: var(--green); box-shadow: 0 0 0 4px rgba(26,127,79,.12); }
.float-card small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; font-family: var(--mono); letter-spacing: .04em; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 980px) { .float-card.fc1 { left: 12px; } .float-card.fc2 { right: 12px; } }

/* ---------- Trust strip / brand bar ---------- */
.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust-strip .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 22px;
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 56px;
  opacity: .85;
}
.brand-row img {
  height: 36px;
  width: auto;
  filter: grayscale(1) contrast(.9);
  opacity: .8;
  transition: filter .25s, opacity .25s;
}
.brand-row img:hover { filter: none; opacity: 1; }

/* ---------- Stat strip ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}
.stats-grid .cell {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.stats-grid .cell:last-child { border-right: none; }
.stats-grid .num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 360;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--ink);
}
.stats-grid .num em { color: var(--accent); }
.stats-grid .lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .cell:nth-child(2) { border-right: none; }
  .stats-grid .cell:nth-child(1), .stats-grid .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Feature grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(14,17,22,.14);
}
.feat-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.feat-card h4 { margin-bottom: 10px; font-size: 20px; }
.feat-card p { font-size: 14.5px; color: var(--ink-soft); }
.feat-card .more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- Editorial split (image + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.flip { direction: ltr; } }
.split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-warm);
}
.split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-content h2 { margin-bottom: 18px; }
.split-content p { font-size: 17px; line-height: 1.6; }
.split-content ul {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-content ul li {
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-size: 15px;
}
.split-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Awards section ---------- */
.awards-section { background: var(--ink); color: #fff; }
.awards-section h2 { color: #fff; }
.awards-section .eyebrow { color: var(--accent); }
.awards-section .eyebrow::before { background: var(--accent); }
.awards-section p { color: rgba(255,255,255,.72); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 900px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .awards-grid { grid-template-columns: 1fr; } }
.award-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: background .3s, border-color .3s, transform .3s;
}
.award-card:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.award-card .yr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.award-card h4 {
  color: #fff;
  font-size: 18px;
  font-family: var(--display);
  font-weight: 380;
  margin-bottom: 8px;
  line-height: 1.25;
}
.award-card p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.award-emblem {
  width: 40px; height: 40px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,77,20,.12);
  color: var(--accent);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s;
  font-family: var(--sans);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item p + p { margin-top: 12px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumbs a { color: var(--muted); transition: color .2s; }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero .breadcrumbs .sep { color: var(--line); }
.page-hero h1 { max-width: 16ch; margin-bottom: 22px; }
.page-hero .lead { max-width: 620px; }
.page-hero .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Big CTA ---------- */
.cta-band {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2230 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 30%, rgba(255,77,20,.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 75% 75%, rgba(44,75,217,.12), transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 64px);
  max-width: 18ch;
  margin: 0 auto 20px;
}
.cta-band h2 em { color: var(--accent); }
.cta-band p {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.6;
}
.cta-band .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo img {
  height: 36px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.footer-blurb {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 380;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
  max-width: 22ch;
}
.footer-blurb em { color: var(--accent); }
.footer-meta { font-size: 13px; max-width: 32ch; color: rgba(255,255,255,.55); }
.site-footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul li a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.site-footer ul li a:hover { color: var(--accent); }
.contact-block { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.contact-block a { color: #fff; font-weight: 500; }
.contact-block a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Form (signup, contact) ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: 0 30px 80px -30px rgba(14,17,22,.15);
}
@media (max-width: 540px) { .form-card { padding: 32px 24px; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-family: var(--mono);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-help { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-card .btn { width: 100%; justify-content: center; padding: 17px; margin-top: 8px; }
.form-foot { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
.form-foot a { color: var(--accent); }

.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.form-success h3 { margin-bottom: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Pricing tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.tier:last-child { border-right: none; }
@media (max-width: 980px) {
  .tier { border-right: none; border-bottom: 1px solid var(--line); }
  .tier:last-child { border-bottom: none; }
}
.tier.featured { background: var(--bg-warm); }
.tier.featured::before {
  content: "Most popular";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.tier .tname {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tier h3 { font-size: 30px; margin-bottom: 14px; font-family: var(--display); }
.tier .price-line {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 350;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.tier .price-line .from {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.tier .price-line .per {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.tier .desc {
  margin: 18px 0 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tier ul li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.tier ul li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.tier .btn { width: 100%; justify-content: center; }

/* ---------- Sub-feature grid (pre-listing) ---------- */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .sub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .sub-grid { grid-template-columns: 1fr; } }
.sub-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.sub-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 26px 50px -28px rgba(14,17,22,.14);
}
.sub-card .img-wrap {
  aspect-ratio: 16 / 10;
  background: var(--bg-warm);
  overflow: hidden;
}
.sub-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.sub-card:hover .img-wrap img { transform: scale(1.05); }
.sub-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.sub-card h4 { font-size: 20px; margin-bottom: 8px; }
.sub-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.sub-card .more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Quote / testimonial ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  transition: border-color .3s;
}
.quote-card:hover { border-color: var(--accent); }
.quote-card .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; font-size: 14px; }
.quote-card .quote {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.012em;
  margin-bottom: 22px;
}
.quote-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quote-card .who .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 16px;
}
.quote-card .who .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.quote-card .who .role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Helper utilities ---------- */
.center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-md { margin-bottom: 32px; }
.muted-bg { background: var(--bg-warm); }
.warm-section { background: var(--bg-warm); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--mono);
  letter-spacing: .04em;
}


/* ============================================================
   ADDITIONS — Chat widget, problem/solution, video embeds,
   conversational evidence blocks, agency page
   ============================================================ */

/* ---------- Floating chat launcher ---------- */
.rb-chat-launcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px -10px rgba(14, 17, 22, 0.4),
              0 0 0 4px rgba(255, 77, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rb-chat-launcher:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 50px -12px rgba(14, 17, 22, 0.5),
              0 0 0 6px rgba(255, 77, 20, 0.12);
}
.rb-chat-launcher .rb-launcher-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.rb-chat-launcher .rb-launcher-avatar::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #1eb967;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.rb-chat-launcher.hidden { display: none; }
@media (max-width: 540px) {
  .rb-chat-launcher { bottom: 16px; right: 16px; padding: 12px 16px 12px 12px; }
  .rb-chat-launcher .rb-launcher-label { display: none; }
}

/* ---------- Chat panel ---------- */
.rb-chat-panel {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1000;
  width: 400px;
  max-width: calc(100vw - 28px);
  height: 640px;
  max-height: calc(100vh - 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 40px 80px -20px rgba(14, 17, 22, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--sans);
}
.rb-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 540px) {
  .rb-chat-panel {
    bottom: 0; right: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}

.rb-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2230 100%);
  color: #fff;
  position: relative;
}
.rb-chat-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(255, 77, 20, 0.18), transparent 60%);
  pointer-events: none;
}
.rb-chat-header .rb-h-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.rb-chat-header .rb-h-meta { flex: 1; min-width: 0; position: relative; z-index: 2; }
.rb-chat-header .rb-h-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}
.rb-chat-header .rb-h-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.rb-chat-header .rb-h-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1eb967;
  box-shadow: 0 0 0 3px rgba(30, 185, 103, 0.2);
}
.rb-chat-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  position: relative;
  z-index: 2;
}
.rb-chat-close:hover { background: rgba(255, 255, 255, 0.16); }

.rb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rb-chat-body::-webkit-scrollbar { width: 6px; }
.rb-chat-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.rb-msg {
  display: flex;
  gap: 10px;
  max-width: 90%;
  animation: rbFadeIn 0.3s ease both;
}
@keyframes rbFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.rb-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.rb-msg .rb-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.rb-msg.bot .rb-bubble {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top-left-radius: 6px;
}
.rb-msg.user .rb-bubble {
  background: var(--ink);
  color: #fff;
  border-top-right-radius: 6px;
}
.rb-msg .rb-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--display);
  flex-shrink: 0;
}
.rb-msg.user .rb-msg-avatar {
  background: var(--ink);
  color: #fff;
}
.rb-msg.bot .rb-bubble strong { color: var(--accent-deep); font-weight: 700; }
.rb-msg.bot .rb-bubble a { color: var(--accent); text-decoration: underline; }
.rb-msg .rb-bubble ul { margin: 8px 0 0; padding-left: 20px; }
.rb-msg .rb-bubble li { margin-bottom: 4px; }

.rb-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
}
.rb-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: rbBlink 1.2s infinite;
}
.rb-typing span:nth-child(2) { animation-delay: 0.2s; }
.rb-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rbBlink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }

.rb-sources {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
}
.rb-sources a {
  color: var(--ink-soft);
  text-decoration: none;
  margin-right: 8px;
}
.rb-sources a:hover { color: var(--accent); }
.rb-verify {
  margin-top: 8px;
  font-size: 11px;
  color: var(--accent-deep);
  font-style: italic;
}

.rb-chips-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 22px 14px;
}
.rb-chips-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.rb-chip {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.rb-chip:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
  transform: translateX(2px);
}

.rb-chat-input-row {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.rb-chat-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  background: var(--bg);
  color: var(--ink);
  resize: none;
  max-height: 120px;
  min-height: 44px;
  line-height: 1.4;
}
.rb-chat-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.rb-chat-send {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.rb-chat-send:hover { background: var(--accent-deep); transform: scale(1.05); }
.rb-chat-send:disabled { background: var(--line); cursor: not-allowed; transform: none; }

.rb-chat-foot {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  padding: 8px 0 12px;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.rb-chat-foot a { color: var(--accent); }

/* ---------- Page-level "ask the bot" cards ---------- */
.rb-ask-strip {
  margin-top: 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2230 100%);
  color: #fff;
  border-radius: var(--r-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.rb-ask-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255, 77, 20, 0.18), transparent 60%);
  pointer-events: none;
}
.rb-ask-strip > * { position: relative; z-index: 2; }
.rb-ask-strip h4 {
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 380;
  letter-spacing: -0.015em;
  flex-shrink: 0;
}
.rb-ask-strip h4 em { color: var(--accent); }
.rb-ask-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.rb-ask-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--sans);
}
.rb-ask-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ---------- Problem & Solution narrative sections ---------- */
.problem-section {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 0%, rgba(255, 77, 20, 0.08), transparent 70%);
  pointer-events: none;
}
.problem-section .wrap { position: relative; z-index: 2; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
.problem-quote {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 380;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.018em;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 28px;
}
.problem-quote em { color: var(--accent); font-weight: 400; }
.problem-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  padding-left: 28px;
}
.problem-quote-author .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.pain-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pain-list li:hover {
  border-color: var(--accent);
  transform: translateX(3px);
}
.pain-list .pain-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 450;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.pain-list .pain-body strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.pain-list .pain-body span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Solution band */
.solution-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 77, 20, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(44, 75, 217, 0.1), transparent 60%);
  pointer-events: none;
}
.solution-section .wrap { position: relative; z-index: 2; }
.solution-section h2 { color: #fff; }
.solution-section .eyebrow { color: var(--accent); }
.solution-section .eyebrow::before { background: var(--accent); }
.solution-section p { color: rgba(255, 255, 255, 0.72); }

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 900px) { .solution-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .solution-pillars { grid-template-columns: 1fr; } }
.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.pillar .pillar-num {
  font-family: var(--display);
  font-size: 36px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 350;
  letter-spacing: -0.03em;
}
.pillar h4 {
  color: #fff;
  font-size: 19px;
  font-family: var(--display);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pillar p { color: rgba(255, 255, 255, 0.68); font-size: 13.5px; line-height: 1.55; }
.pillar .pillar-link {
  margin-top: 16px;
  display: inline-flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- YouTube video gallery ---------- */
.video-section { background: var(--bg-warm); }
.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 900px) { .video-row { grid-template-columns: 1fr; } }
.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 26px 60px -28px rgba(14, 17, 22, 0.18);
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-meta { padding: 26px 28px 30px; }
.video-meta .v-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.video-meta h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.video-meta h4 em { color: var(--accent); }
.video-meta p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Realsearch listing call-out ---------- */
.realsearch-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}
.rs-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .rs-grid { grid-template-columns: 1fr; gap: 36px; } }
.rs-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-top: 30px;
}
.rs-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.rs-feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent);
  background-image: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.rs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-top: 36px;
  overflow: hidden;
}
.rs-stats .cell {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.rs-stats .cell:last-child { border-right: none; }
.rs-stats .num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 360;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.rs-stats .num em { color: var(--accent); }
.rs-stats .lbl {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Conversational evidence callouts ---------- */
.evidence-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  position: relative;
}
.evidence-card .stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26, 127, 79, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(26, 127, 79, 0.2);
}
.evidence-card .e-quote {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
  margin: 14px 0 24px;
}
.evidence-card .e-quote em { color: var(--accent); font-weight: 450; }
.evidence-card .e-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.evidence-card .e-numbers .e-n {
  text-align: left;
}
.evidence-card .e-numbers .e-n-num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 360;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.evidence-card .e-numbers .e-n-lbl {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.evidence-card .e-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}
.evidence-card .e-attribution .e-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-family: var(--display);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.evidence-card .e-attribution .e-meta strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.evidence-card .e-attribution .e-meta span {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ---------- Agencies page hero ---------- */
.agency-hero {
  background: linear-gradient(135deg, #0a0c14 0%, #1c2230 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.agency-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 20%, rgba(255, 77, 20, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(44, 75, 217, 0.15), transparent 60%);
  pointer-events: none;
}
.agency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.agency-hero .wrap { position: relative; z-index: 2; }
.agency-hero h1 { color: #fff; }
.agency-hero h1 em { color: var(--accent); }
.agency-hero .lead { color: rgba(255, 255, 255, 0.72); }
.agency-hero .breadcrumbs { color: rgba(255, 255, 255, 0.5); }
.agency-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.55); }
.agency-hero .tag-pill {
  background: rgba(255, 77, 20, 0.18);
  color: var(--accent);
  border: 1px solid rgba(255, 77, 20, 0.4);
}

/* Layered preview visual on agency hero */
.agency-preview {
  position: relative;
  aspect-ratio: 1 / 0.95;
  width: 100%;
}
.agency-preview .scr {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  background: var(--surface);
}
.agency-preview .scr img { width: 100%; height: 100%; object-fit: cover; }
.agency-preview .scr.s1 { top: 0; left: 0; width: 78%; aspect-ratio: 16/10; z-index: 1; }
.agency-preview .scr.s2 { bottom: 0; right: 0; width: 60%; aspect-ratio: 4/5; z-index: 2; }
.agency-preview .scr.s3 {
  top: 25%; right: 10%;
  width: 48%; aspect-ratio: 16/10;
  z-index: 3;
  transform: rotate(2deg);
}



/* ============================================================
   ADDITIONS — Service pages, before/after slider, NFC card,
   AI Corner dashboard, trust-at-scale, service template kit
   ============================================================ */

/* ---------- Service page kit ---------- */
.service-hero {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255, 77, 20, 0.08), transparent 70%);
  pointer-events: none;
}
.service-hero .wrap { position: relative; z-index: 2; }
.service-hero .service-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.service-hero .service-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* What-you-get spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.spec-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.spec-item .spec-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.spec-item h5 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 450;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.spec-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
@media (max-width: 900px) {
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.process-step .pst-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: block;
}
.process-step h5 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 450;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.process-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Sample/gallery preview */
.sample-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .sample-preview { grid-template-columns: 1fr; } }
.sample-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sample-card .sample-img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  overflow: hidden;
}
.sample-card .sample-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.sample-card .sample-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(14, 17, 22, 0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sample-card .sample-meta {
  padding: 18px 22px;
}
.sample-card .sample-meta h6 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 450;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.sample-card .sample-meta span {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

/* ---------- Before / After slider ---------- */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-slider .ba-after-wrap img {
  width: 200%;
  max-width: none;
}
.ba-slider .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  cursor: ew-resize;
}
.ba-slider .ba-handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.ba-slider .ba-handle::after {
  content: "⇆";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
}
.ba-slider .ba-label {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  background: rgba(14, 17, 22, 0.85);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
.ba-slider .ba-label.before { left: 14px; }
.ba-slider .ba-label.after { right: 14px; }

/* ---------- NFC card visual ---------- */
.nfc-card-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.nfc-card {
  width: 78%;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #0a0c14 0%, #1c2230 50%, #0a0c14 100%);
  border-radius: 18px;
  position: relative;
  transform: rotateY(-12deg) rotateX(8deg);
  transform-style: preserve-3d;
  box-shadow:
    0 35px 60px -15px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nfc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 77, 20, 0.25), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(44, 75, 217, 0.15), transparent 60%);
  pointer-events: none;
}
.nfc-card-row { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.nfc-card-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.nfc-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.nfc-icon svg { opacity: 0.85; }
.nfc-card-meta { position: relative; z-index: 1; }
.nfc-card-meta .nfc-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.nfc-card-meta .nfc-role {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nfc-card-meta .nfc-suburb {
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
}
.nfc-tap-pulse {
  position: absolute;
  top: 16%;
  right: 12%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: nfcTap 2.5s ease-out infinite;
  pointer-events: none;
}
.nfc-tap-pulse:nth-of-type(2) { animation-delay: 0.8s; }
.nfc-tap-pulse:nth-of-type(3) { animation-delay: 1.6s; }
@keyframes nfcTap {
  0% { transform: scale(0.5); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ---------- AI Corner dashboard ---------- */
.ai-corner-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #1c2230 0%, #0a0c14 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-corner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 80%);
}
.ai-corner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 30% 30%, rgba(255, 77, 20, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(44, 75, 217, 0.12), transparent 60%);
  pointer-events: none;
}
.ai-corner-hero .wrap { position: relative; z-index: 2; }
.ai-corner-hero h1 { color: #fff; }
.ai-corner-hero h1 em { color: var(--accent); }
.ai-corner-hero .lead { color: rgba(255, 255, 255, 0.72); }
.ai-corner-hero .breadcrumbs { color: rgba(255, 255, 255, 0.5); }
.ai-corner-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.55); }
.ai-corner-hero .tag-pill {
  background: rgba(255, 77, 20, 0.18);
  color: var(--accent);
  border: 1px solid rgba(255, 77, 20, 0.4);
}

/* Dashboard preview block */
.dash-preview {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.dash-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 77, 20, 0.06), transparent 50%);
  pointer-events: none;
}
.dash-preview > * { position: relative; }
.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
}
.dash-tile .dt-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.dash-tile .dt-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: #fff;
}
.dash-tile .dt-val em { color: var(--accent); font-style: normal; }
.dash-tile .dt-foot {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.dash-tile.full { grid-column: 1 / -1; }
.dash-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.dash-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
}

/* AI Corner module cards */
.ai-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .ai-module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ai-module-grid { grid-template-columns: 1fr; } }
.ai-module {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ai-module:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(14, 17, 22, 0.18);
}
.ai-module .ai-mod-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ai-module .ai-mod-tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.ai-module h4 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.ai-module h4 em { color: var(--accent); }
.ai-module p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.ai-module .ai-mod-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.ai-module .ai-mod-foot .ai-mod-cta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.ai-module .ai-mod-foot .ai-mod-stat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

/* Visibility audit visual */
.aeo-status-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 720px) { .aeo-status-card { grid-template-columns: 1fr; } }
.aeo-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aeo-platform {
  display: grid;
  grid-template-columns: 90px 1fr 80px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.aeo-platform .aep-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.aeo-platform .aep-bar {
  height: 6px;
  background: var(--bg-warm);
  border-radius: 999px;
  overflow: hidden;
}
.aeo-platform .aep-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 999px;
}
.aeo-platform .aep-pct {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* ---------- Trust-at-scale ---------- */
.trust-scale {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust-scale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(255, 77, 20, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(44, 75, 217, 0.1), transparent 60%);
  pointer-events: none;
}
.trust-scale .wrap { position: relative; z-index: 2; }
.trust-scale h2 { color: #fff; }
.trust-scale .eyebrow { color: var(--accent); }
.trust-scale .eyebrow::before { background: var(--accent); }
.trust-scale .lead { color: rgba(255, 255, 255, 0.72); }
.trust-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .trust-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-numbers { grid-template-columns: 1fr; } }
.trust-num {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s ease;
}
.trust-num:last-child { border-right: none; }
@media (max-width: 900px) {
  .trust-num:nth-child(2n) { border-right: none; }
  .trust-num:nth-child(1), .trust-num:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}
.trust-num:hover { background: rgba(255, 255, 255, 0.04); }
.trust-num .tn-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 350;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.trust-num .tn-num em { color: var(--accent); font-style: normal; }
.trust-num .tn-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}
.trust-num .tn-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  line-height: 1.45;
}

/* Award timeline */
.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 900px) { .timeline-row { grid-template-columns: 1fr; gap: 28px; } }
.timeline-row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}
@media (max-width: 900px) { .timeline-row::before { display: none; } }
.tl-node {
  position: relative;
  z-index: 1;
  padding: 0 22px;
}
.tl-node .tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--ink);
  margin: 32px 0 18px;
  position: relative;
  z-index: 2;
}
.tl-node .tl-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}
.tl-node .tl-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.tl-node .tl-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Client logo strip */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
@media (max-width: 900px) { .clients-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .clients-strip { grid-template-columns: repeat(2, 1fr); } }
.clients-strip .client {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.clients-strip .client:hover { color: var(--ink); }

/* Hub navigator (pre-listing services) */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 900px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.hub-tile:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -28px rgba(14, 17, 22, 0.2);
}
.hub-tile .hub-img {
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.hub-tile .hub-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hub-tile:hover .hub-img img { transform: scale(1.04); }
.hub-tile .hub-content { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.hub-tile .hub-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.hub-tile h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.hub-tile h4 em { color: var(--accent); }
.hub-tile p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.hub-tile .hub-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.hub-tile .hub-foot .hub-price {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
}
.hub-tile .hub-foot .hub-cta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}



/* ============================================================
   MODERN V2 SYSTEM — distinctive editorial design layer
   Magazine-style typography, bento grids, sticky narrative,
   product preview cards, path selector, animated counters
   ============================================================ */

/* ---------- Modern hero: asymmetric editorial ---------- */
.mh-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 15% 10%, rgba(255, 77, 20, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(44, 75, 217, 0.05), transparent 60%),
    var(--bg);
  padding: 120px 0 80px;
  overflow: hidden;
}
.mh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 17, 22, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 17, 22, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 50% 50%;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  pointer-events: none;
}
.mh-hero .wrap { position: relative; z-index: 2; }
@media (max-width: 900px) { .mh-hero { padding: 90px 0 60px; } }

.mh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.mh-eyebrow .mh-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mh-headline {
  font-family: var(--display);
  font-weight: 320;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-top: 26px;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
.mh-headline .accent-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 380;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
.mh-headline .underlined {
  position: relative;
  display: inline-block;
}
.mh-headline .underlined::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.12em;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.85;
}
.mh-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 620px;
  font-weight: 400;
}
.mh-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.mh-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) {
  .mh-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Bento preview stack — small product previews next to the hero */
.mh-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  position: relative;
}
@media (max-width: 540px) {
  .mh-bento { grid-template-columns: 1fr; }
  .mh-bento .b-1 { grid-column: 1; }
  .mh-bento .b-2 { grid-column: 1; }
}
.mh-bento .b-1 { grid-column: 1 / span 2; }
.mh-bento .b-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mh-bento .b-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(14, 17, 22, 0.2);
}
.mh-bento .b-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.mh-bento .b-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.15;
}
.mh-bento .b-title em { color: var(--accent); font-style: italic; }
.mh-bento .b-foot {
  margin-top: auto;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

/* Mini product previews inside bento */
.bp-mini-card {
  background: linear-gradient(135deg, #0a0c14, #1c2230);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bp-mini-card .bp-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.bp-mini-card .bp-meta {
  font-size: 12px;
  line-height: 1.3;
}
.bp-mini-card .bp-meta strong { font-family: var(--display); font-weight: 400; font-size: 14px; display: block; }
.bp-mini-card .bp-meta span { color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; }

.bp-ribbon {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.bp-ribbon span {
  height: 4px;
  flex: 1;
  background: var(--line);
  border-radius: 2px;
}
.bp-ribbon span.on { background: var(--accent); }

/* ---------- Path selector (Agent vs Agency) ---------- */
.path-selector {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 800px) { .path-cards { grid-template-columns: 1fr; } }
.path-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 360px;
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, rgba(255, 77, 20, 0.12), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.path-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(14, 17, 22, 0.18);
}
.path-card:hover::before { opacity: 1; }
.path-card .pc-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  font-weight: 350;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.path-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 380;
  letter-spacing: -0.022em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.path-card h3 em { color: var(--accent); font-style: italic; }
.path-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}
.path-card .pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.path-card .pc-features li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.path-card .pc-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.path-card .pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}
.path-card .pc-cta .arr-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.path-card:hover .pc-cta .arr-circle { transform: translateX(4px); }

/* ---------- Product bento grid ---------- */
.product-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .product-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .product-bento { grid-template-columns: 1fr; }
}
.pb-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pb-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -25px rgba(14, 17, 22, 0.16);
}
.pb-tile .pb-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}
.pb-tile h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 12px;
}
.pb-tile h3 em { color: var(--accent); font-style: italic; }
.pb-tile p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 10px;
}
.pb-tile .pb-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pb-tile .pb-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.pb-tile .pb-price {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

/* Span variants */
.pb-tile.span-3 { grid-column: span 3; }
.pb-tile.span-2 { grid-column: span 2; }
.pb-tile.span-4 { grid-column: span 4; }
.pb-tile.span-6 { grid-column: span 6; }
.pb-tile.tall { grid-row: span 2; }
@media (max-width: 900px) {
  .pb-tile.span-3, .pb-tile.span-2, .pb-tile.span-4, .pb-tile.span-6 { grid-column: span 1; }
  .pb-tile.tall { grid-row: span 1; }
}

/* Dark featured tile */
.pb-tile.dark {
  background: linear-gradient(135deg, #0a0c14 0%, #1c2230 100%);
  color: #fff;
  border-color: transparent;
}
.pb-tile.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(255, 77, 20, 0.2), transparent 60%);
  pointer-events: none;
}
.pb-tile.dark > * { position: relative; z-index: 1; }
.pb-tile.dark h3 { color: #fff; }
.pb-tile.dark p { color: rgba(255,255,255,0.65); }
.pb-tile.dark .pb-price { color: rgba(255,255,255,0.5); }

/* Visual preview area inside a tile */
.pb-preview {
  margin-top: 18px;
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 16px;
  flex: 1;
  position: relative;
  min-height: 100px;
}
.pb-tile.dark .pb-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Animated stat row ---------- */
.stat-row-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}
@media (max-width: 900px) { .stat-row-modern { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stat-row-modern { grid-template-columns: 1fr; } }
.stat-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 77, 20, 0.015));
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat-cell .sc-num {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 320;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.stat-cell .sc-num .sc-plus {
  color: var(--accent);
  font-style: italic;
  font-weight: 380;
}
.stat-cell .sc-lbl {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.stat-cell .sc-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.45;
}

/* ---------- Magazine-style section heading ---------- */
.mag-heading {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .mag-heading { grid-template-columns: 1fr; gap: 28px; }
}
.mag-heading .mh-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mag-heading .mh-meta::before {
  content: "—";
  color: var(--accent);
}
.mag-heading h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 340;
  letter-spacing: -0.032em;
  line-height: 1.05;
  color: var(--ink);
}
.mag-heading h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 380;
}

/* ---------- Awards timeline modern ---------- */
.aw-timeline {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.aw-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(255, 77, 20, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(44, 75, 217, 0.1), transparent 60%);
  pointer-events: none;
}
.aw-timeline .wrap { position: relative; z-index: 2; }
.aw-timeline .mag-heading h2 { color: #fff; }
.aw-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 900px) {
  .aw-line { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .aw-line { grid-template-columns: 1fr; }
}
.aw-line::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, transparent);
}
@media (max-width: 900px) { .aw-line::before { display: none; } }
.aw-year-card {
  padding: 0 20px;
  position: relative;
}
.aw-year-card .ay-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--ink);
  margin: 0 auto 22px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.aw-year-card .ay-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.2; }
  50% { transform: scale(1.15); opacity: 0.5; }
}
.aw-year-card .ay-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.aw-year-card .ay-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.aw-year-card .ay-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-align: center;
}

/* ---------- Marquee client logos ---------- */
.client-marquee {
  padding: 36px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.client-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-warm), transparent); }
.client-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-warm), transparent); }
.client-marquee .cm-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-marquee .cm-item {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.client-marquee .cm-item:hover { color: var(--ink); }
.client-marquee .cm-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

/* ---------- Product demo strip ---------- */
.demo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .demo-strip { grid-template-columns: 1fr; } }
.demo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.demo-card .dc-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.demo-card h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 14px;
}
.demo-card h4 em { color: var(--accent); font-style: italic; }
.demo-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 10px;
}
.demo-card .dc-visual {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-card .dc-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.demo-card .dc-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* ---------- Pricing card v2 ---------- */
.price-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .price-v2-grid { grid-template-columns: 1fr; } }

/* ---------- Quote card modern ---------- */
.quote-modern {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
}
.quote-modern .qm-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 96px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -32px;
  opacity: 0.85;
}
.quote-modern blockquote {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 380;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.quote-modern blockquote em { color: var(--accent); font-style: italic; }
.quote-modern .qm-by {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quote-modern .qm-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-family: var(--display);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.quote-modern .qm-meta strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.quote-modern .qm-meta span {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ---------- Sticky narrative section ---------- */
.sticky-narr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .sticky-narr { grid-template-columns: 1fr; gap: 40px; }
}
.sticky-narr .sn-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 900px) {
  .sticky-narr .sn-sticky { position: static; }
}
.sn-step {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.sn-step:last-child { border-bottom: none; }
.sn-step .sn-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  font-weight: 380;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 14px;
}
.sn-step h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.sn-step h4 em { color: var(--accent); font-style: italic; }
.sn-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Final CTA modern ---------- */
.cta-modern {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 40%, rgba(255, 77, 20, 0.2), transparent 60%),
    radial-gradient(ellipse 40% 30% at 75% 70%, rgba(44, 75, 217, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.cta-modern .wrap { position: relative; z-index: 2; }
.cta-modern h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 320;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.cta-modern h2 em { color: var(--accent); font-style: italic; font-weight: 380; }
.cta-modern p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin: 28px auto 0;
  max-width: 600px;
  text-align: center;
  line-height: 1.55;
}
.cta-modern .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---------- Footer modern ---------- */
.footer-modern {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-modern .fm-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-modern .fm-row { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-modern .fm-row { grid-template-columns: 1fr; }
}
.footer-modern .fm-brand img { width: 130px; }
.footer-modern .fm-brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 280px;
}
.footer-modern .fm-brand p em { color: var(--accent); font-style: italic; }
.footer-modern .fm-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-modern .fm-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-modern .fm-col a {
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-modern .fm-col a:hover { color: var(--accent); }
.footer-modern .fm-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-modern .fm-bottom a { color: var(--ink-soft); text-decoration: none; margin-left: 12px; }
.footer-modern .fm-bottom a:hover { color: var(--accent); }

/* Modern btn variants */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-arrow:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-arrow .a-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.btn-arrow:hover .a-circle { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}



/* ============================================================
   AWARD-WINNING POLISH — Image-driven, human-touch components
   Founder note, lifestyle bands, image mosaics, agent profiles
   ============================================================ */

/* ---------- Standardised dual-dropdown nav ---------- */
.nav-mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  min-width: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(14, 17, 22, 0.15);
}
.nav-mega-col h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.nav-mega-col a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-mega-col a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.nav-mega-col a strong {
  display: block;
  font-weight: 600;
}
.nav-mega-col a span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  font-family: var(--mono);
}

/* ---------- Founder note (human touch) ---------- */
.founder-note {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 80px 56px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--surface) 100%);
  border-radius: 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .founder-note { grid-template-columns: 1fr; padding: 48px 32px; gap: 36px; }
}
.founder-note::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 20, 0.06), transparent 60%);
  pointer-events: none;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(14, 17, 22, 0.25);
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.founder-portrait .fp-overlay {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-portrait .fp-overlay .fp-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.founder-portrait .fp-overlay .fp-meta {
  font-size: 13px;
  line-height: 1.35;
}
.founder-portrait .fp-overlay .fp-meta strong { display: block; font-weight: 600; color: var(--ink); font-size: 14px; }
.founder-portrait .fp-overlay .fp-meta span { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }

.founder-body .fn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.founder-body .fn-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.founder-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 360;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 18px 0 24px;
  color: var(--ink);
}
.founder-body h2 em { color: var(--accent); font-style: italic; }
.founder-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.founder-body p strong { color: var(--ink); font-weight: 600; }
.founder-body .fn-signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder-body .fn-signature .fn-sig-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.founder-body .fn-signature .fn-sig-meta {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ---------- Lifestyle band (full-width imagery) ---------- */
.lifestyle-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-radius: 32px;
  overflow: hidden;
  margin: 80px 0;
}
.lifestyle-band .lb-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lifestyle-band .lb-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lifestyle-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(14, 17, 22, 0.85) 0%, rgba(14, 17, 22, 0.65) 45%, rgba(14, 17, 22, 0.2) 80%, transparent 100%);
  z-index: 1;
}
.lifestyle-band .lb-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  max-width: 640px;
  color: #fff;
}
@media (max-width: 720px) {
  .lifestyle-band .lb-content { padding: 56px 32px; }
  .lifestyle-band::after {
    background: linear-gradient(180deg, rgba(14, 17, 22, 0.85) 0%, rgba(14, 17, 22, 0.7) 100%);
  }
}
.lifestyle-band .lb-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lifestyle-band .lb-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.lifestyle-band h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 340;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 18px 0 20px;
}
.lifestyle-band h2 em { color: var(--accent); font-style: italic; }
.lifestyle-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------- Image mosaic (showcases work) ---------- */
.image-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .image-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
}
.im-tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
}
.im-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.im-tile:hover img { transform: scale(1.04); }
.im-tile .im-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.im-tile.t1 { grid-column: span 6; grid-row: span 4; }
.im-tile.t2 { grid-column: span 3; grid-row: span 2; }
.im-tile.t3 { grid-column: span 3; grid-row: span 2; }
.im-tile.t4 { grid-column: span 4; grid-row: span 3; }
.im-tile.t5 { grid-column: span 4; grid-row: span 3; }
.im-tile.t6 { grid-column: span 4; grid-row: span 3; }
@media (max-width: 720px) {
  .im-tile.t1 { grid-column: span 6; grid-row: span 3; }
  .im-tile.t2 { grid-column: span 3; grid-row: span 2; }
  .im-tile.t3 { grid-column: span 3; grid-row: span 2; }
  .im-tile.t4, .im-tile.t5, .im-tile.t6 { grid-column: span 3; grid-row: span 2; }
}

/* ---------- Agent voice card ---------- */
.agent-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .agent-voices { grid-template-columns: 1fr; } }
.av-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.av-card:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -25px rgba(14, 17, 22, 0.15); }
.av-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-soft);
  flex-shrink: 0;
}
.av-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.av-card .av-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.av-card .av-role {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.av-card blockquote {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 380;
  letter-spacing: -0.012em;
}
.av-card blockquote em { color: var(--accent); font-style: italic; }
.av-card .av-stars {
  color: #F2A20C;
  letter-spacing: 2px;
  font-size: 13px;
}
.av-meta-row { display: flex; align-items: center; gap: 14px; }

/* ---------- Hero overlay strip (image-driven section intro) ---------- */
.hero-overlay-strip {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 21/9;
  min-height: 340px;
}
.hero-overlay-strip img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14, 17, 22, 0.7) 100%);
}
.hero-overlay-strip .hos-text {
  position: absolute;
  bottom: 32px; left: 36px; right: 36px;
  color: #fff;
  z-index: 2;
}
.hero-overlay-strip .hos-text h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  max-width: 600px;
}
.hero-overlay-strip .hos-text h3 em { color: var(--accent); font-style: italic; }



/* ============================================================
   v3 — Property Analysis tool, Realbot Studio, vCard preview,
   AI tech-driven interactive elements
   ============================================================ */

/* ---------- AI tech accents ---------- */
.ai-scan-line {
  position: relative;
  overflow: hidden;
}
.ai-scan-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 77, 20, 0.4) 50%, transparent 100%);
  height: 2px;
  top: 0;
  animation: scanLine 3s ease-in-out infinite;
}
@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.ai-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ai-pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: aiPulse 1.8s ease-out infinite;
}
@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 20, 0.5); }
  100% { box-shadow: 0 0 0 14px rgba(255, 77, 20, 0); }
}

/* ---------- Property Analysis search hero ---------- */
.pa-hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 77, 20, 0.08), transparent 70%),
    var(--bg);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.pa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,17,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,17,22,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 90%);
  pointer-events: none;
}
.pa-hero .wrap { position: relative; z-index: 2; }

.pa-search {
  margin: 40px auto 0;
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: 0 30px 60px -20px rgba(14, 17, 22, 0.15);
  position: relative;
}
.pa-search::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 77, 20, 0.2), transparent 50%);
  border-radius: 26px;
  z-index: -1;
}
.pa-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  padding: 18px 22px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.pa-search input::placeholder { color: var(--muted); }
.pa-search .pa-icon {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.pa-search button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 28px;
  border-radius: 18px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.pa-search button:hover { background: var(--accent-deep); transform: translateY(-1px); }
.pa-search button svg { stroke-width: 2.4; }

.pa-quick-tries {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.pa-quick-tries .qt-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
}
.pa-quick-try {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pa-quick-try:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

/* AI analyzing state */
.pa-analyzing {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.pa-analyzing.show { display: block; }
.pa-analyzing .pa-spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pa-analyzing h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.pa-analyzing .pa-steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.pa-analyzing .pa-step {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: stepFadeIn 0.5s ease forwards;
}
.pa-analyzing .pa-step::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.pa-analyzing .pa-step:nth-child(1) { animation-delay: 0.3s; }
.pa-analyzing .pa-step:nth-child(2) { animation-delay: 0.9s; }
.pa-analyzing .pa-step:nth-child(3) { animation-delay: 1.6s; }
.pa-analyzing .pa-step:nth-child(4) { animation-delay: 2.3s; }
@keyframes stepFadeIn { to { opacity: 1; } }

/* ---------- Property Analysis results ---------- */
.pa-results { display: none; }
.pa-results.show { display: block; }

.pa-property-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.pa-property-card .pa-pc-image {
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.pa-property-card .pa-pc-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.pa-property-card .pa-pc-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,17,22,0.7) 100%);
}
.pa-property-card .pa-pc-addr {
  position: absolute;
  bottom: 24px; left: 28px; right: 28px;
  z-index: 2;
  color: #fff;
}
.pa-property-card .pa-pc-addr .pa-pc-line1 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 380;
  letter-spacing: -0.018em;
}
.pa-property-card .pa-pc-addr .pa-pc-line2 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.pa-pc-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0;
}
@media (max-width: 720px) {
  .pa-pc-stats { grid-template-columns: repeat(2, 1fr); }
}
.pa-pc-stat {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.pa-pc-stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .pa-pc-stat:nth-child(2n) { border-right: none; }
  .pa-pc-stat { border-bottom: 1px solid var(--line); }
}
.pa-pc-stat .ps-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pa-pc-stat .ps-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.pa-pc-stat .ps-val em { color: var(--accent); font-style: italic; }

/* Comparable sales grid */
.pa-section { margin-top: 56px; }
.pa-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.pa-section-title .pst-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
}
.pa-section-title h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.pa-section-title h3 em { color: var(--accent); font-style: italic; }
.pa-section-title .pst-meta {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.pa-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .pa-comp-grid { grid-template-columns: 1fr; } }
.pa-comp {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pa-comp:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.pa-comp .pc-img {
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.pa-comp .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.pa-comp .pc-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.pa-comp .pc-body { padding: 18px 20px 20px; }
.pa-comp .pc-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 450;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.pa-comp .pc-addr {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.pa-comp .pc-meta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pa-comp .pc-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* Insight cards */
.pa-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .pa-insights { grid-template-columns: 1fr; } }
.pa-insight {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.pa-insight::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}
.pa-insight .pi-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pa-insight h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 450;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.pa-insight p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Suburb snapshot tiles */
.pa-suburb-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .pa-suburb-tiles { grid-template-columns: repeat(2, 1fr); } }
.pa-st {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.pa-st .pst-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pa-st .pst-val {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pa-st .pst-trend {
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 6px;
}
.pa-st .pst-trend.up { color: #1eb967; }
.pa-st .pst-trend.down { color: #d44b3e; }

/* Sources strip */
.pa-sources {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--bg-warm);
  border: 1px dashed var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pa-sources .ps-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pa-sources .ps-source {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}
.pa-sources .ps-verify {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--accent-deep);
  font-style: italic;
}

/* ---------- Realbot Studio grid ---------- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 900px) { .studio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .studio-grid { grid-template-columns: 1fr; } }
.studio-tool {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.studio-tool::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 77, 20, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.studio-tool:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -25px rgba(14, 17, 22, 0.15);
}
.studio-tool:hover::before { opacity: 1; }
.studio-tool .st-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.studio-tool .st-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.studio-tool .st-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.studio-tool h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
}
.studio-tool h4 em { color: var(--accent); font-style: italic; }
.studio-tool p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.studio-tool .st-foot {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.studio-tool .st-included {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.studio-tool .st-included::before {
  content: "● ";
  color: var(--green);
}
.studio-tool .st-try {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.studio-tool.featured {
  background: linear-gradient(135deg, #0a0c14 0%, #1c2230 100%);
  border-color: transparent;
  color: #fff;
  grid-column: span 2;
}
@media (max-width: 900px) { .studio-tool.featured { grid-column: span 1; } }
.studio-tool.featured h4 { color: #fff; }
.studio-tool.featured p { color: rgba(255,255,255,0.7); }
.studio-tool.featured .st-foot { border-top-color: rgba(255,255,255,0.15); }

/* ---------- vCard preview (phone-style) ---------- */
.vcard-demo {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .vcard-demo { grid-template-columns: 1fr; gap: 40px; }
}

.vcard-phone {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  background: #0a0c14;
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(14, 17, 22, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.vcard-phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #0a0c14;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.vcard-screen {
  background: #f0f0f0;
  border-radius: 32px;
  aspect-ratio: 9/19.5;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vcard-screen .vc-status {
  padding: 16px 24px 4px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: #0a0c14;
  font-weight: 600;
}
.vcard-screen .vc-status .signal { display: inline-flex; gap: 2px; }
.vcard-screen .vc-status .signal span {
  display: block; width: 3px; background: #0a0c14; border-radius: 1px;
}
.vcard-screen .vc-status .signal span:nth-child(1){ height: 4px; }
.vcard-screen .vc-status .signal span:nth-child(2){ height: 6px; }
.vcard-screen .vc-status .signal span:nth-child(3){ height: 8px; }
.vcard-screen .vc-status .signal span:nth-child(4){ height: 10px; }
.vcard-screen .vc-header {
  padding: 28px 20px 20px;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.vcard-screen .vc-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(14, 17, 22, 0.15);
}
.vcard-screen .vc-name {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0a0c14;
}
.vcard-screen .vc-role {
  font-size: 13px;
  color: #5a5a5a;
  margin-top: 2px;
}
.vcard-screen .vc-rows {
  background: #fff;
  flex: 1;
}
.vcard-screen .vc-row {
  padding: 14px 20px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vcard-screen .vc-row .vc-l {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vcard-screen .vc-row .vc-v {
  font-size: 14.5px;
  color: #007aff;
  font-weight: 500;
}
.vcard-screen .vc-save {
  margin-top: auto;
  padding: 16px 20px 24px;
  background: #fff;
}
.vcard-screen .vc-save-btn {
  background: #007aff;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  font-family: -apple-system, system-ui, sans-serif;
}

.vcard-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.vcard-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--sans);
  transition: border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  color: inherit;
}
.vcard-action-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.vcard-action-btn .vab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vcard-action-btn .vab-text {
  flex: 1;
}
.vcard-action-btn .vab-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.vcard-action-btn .vab-text span {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 20px 40px -10px rgba(14, 17, 22, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .check {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 12px;
}

/* Package pricing v3 - vendor paid */
.vpa-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}
.vpa-card.featured {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -20px rgba(255, 77, 20, 0.18);
}
.vpa-card .vpa-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.vpa-card h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 380;
  letter-spacing: -0.022em;
  margin-top: 14px;
  color: var(--ink);
}
.vpa-card h3 em { color: var(--accent); font-style: italic; }
.vpa-card .vpa-note {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.vpa-card .vpa-incl {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.vpa-card .vpa-incl-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.vpa-card ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
@media (max-width: 720px) { .vpa-card ul { grid-template-columns: 1fr; } }
.vpa-card ul li {
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
}
.vpa-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 900px) { .addons-grid { grid-template-columns: 1fr; } }
.addon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.addon .ad-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.addon h5 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 450;
  margin-top: 8px;
  color: var(--ink);
}
.addon .ad-fee {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-deep);
  margin-top: 8px;
  font-weight: 600;
}
.addon p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}



/* ============================================================
   v4 — Award-winning About page: interactive gallery + lightbox,
   industry timeline, live counters, video grid, enquiry CTAs
   ============================================================ */

/* ---------- About hero — editorial split ---------- */
.about-hero {
  position: relative;
  padding: 120px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 10%, rgba(255, 77, 20, 0.07), transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(44, 75, 217, 0.05), transparent 65%),
    var(--bg);
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,17,22,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,17,22,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 85%);
  pointer-events: none;
}
.about-hero .wrap { position: relative; z-index: 2; }
@media (max-width: 900px) { .about-hero { padding: 90px 0 60px; } }

/* ---------- Mission / Vision split ---------- */
.mv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 800px) { .mv-split { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 70px -28px rgba(14, 17, 22, 0.2);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 20, 0.1), transparent 65%);
  pointer-events: none;
}
.mv-card.vision::before {
  background: radial-gradient(circle, rgba(44, 75, 217, 0.1), transparent 65%);
}
.mv-card .mv-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.mv-card.vision .mv-label { color: var(--blue); }
.mv-card .mv-label .mv-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.mv-card.vision .mv-label .mv-icon {
  background: rgba(44, 75, 217, 0.1);
  color: var(--blue);
}
.mv-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 380;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: var(--ink);
}
.mv-card h3 em { color: var(--accent); font-style: italic; }
.mv-card.vision h3 em { color: var(--blue); }

/* ---------- Live platform stats (animated) ---------- */
.live-stats {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.live-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(255, 77, 20, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 70%, rgba(44, 75, 217, 0.12), transparent 60%);
  pointer-events: none;
}
.live-stats > * { position: relative; z-index: 1; }
.live-stats .ls-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.live-stats .ls-head h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 380;
  color: #fff;
  letter-spacing: -0.02em;
}
.live-stats .ls-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 185, 103, 0.15);
  color: #1eb967;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.live-stats .ls-live-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1eb967;
  animation: aiPulse 1.8s ease-out infinite;
}
.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .live-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .live-stats-grid { grid-template-columns: 1fr; } }
.live-stat .lst-num {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 320;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.live-stat .lst-num em { color: var(--accent); font-style: italic; }
.live-stat .lst-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.4;
}
.live-stats .ls-foot {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ---------- Industry trust timeline (interactive) ---------- */
.trust-timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 0;
}
.tt-track {
  position: relative;
}
.tt-track::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--line) 100%);
}
@media (max-width: 600px) { .tt-track::before { left: 19px; } }
.tt-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 40px;
  cursor: pointer;
}
@media (max-width: 600px) { .tt-item { padding-left: 56px; } }
.tt-item:last-child { padding-bottom: 0; }
.tt-item .tt-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
@media (max-width: 600px) { .tt-item .tt-dot { left: 8px; } }
.tt-item:hover .tt-dot {
  transform: scale(1.2);
  background: var(--accent);
}
.tt-item .tt-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.tt-item .tt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.tt-item:hover .tt-card {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 24px 48px -28px rgba(14, 17, 22, 0.18);
}
.tt-item .tt-card h4 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.tt-item .tt-card h4 em { color: var(--accent); font-style: italic; }
.tt-item .tt-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.tt-item .tt-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- Interactive sponsorship gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-warm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 17, 22, 0.85) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 0.9; }
.gallery-item .gi-caption {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
  color: #fff;
}
.gallery-item .gi-caption .gic-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.gallery-item .gi-caption .gic-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.gallery-item .gi-zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gi-zoom { opacity: 1; transform: scale(1); }

/* Mosaic spans */
.gallery-item.g-wide { grid-column: span 6; grid-row: span 2; }
.gallery-item.g-tall { grid-column: span 3; grid-row: span 3; }
.gallery-item.g-std  { grid-column: span 3; grid-row: span 2; }
.gallery-item.g-sm   { grid-column: span 3; grid-row: span 2; }
.gallery-item.g-feat { grid-column: span 6; grid-row: span 3; }
@media (max-width: 800px) {
  .gallery-item.g-wide { grid-column: span 6; grid-row: span 2; }
  .gallery-item.g-tall { grid-column: span 3; grid-row: span 2; }
  .gallery-item.g-std  { grid-column: span 3; grid-row: span 2; }
  .gallery-item.g-sm   { grid-column: span 3; grid-row: span 2; }
  .gallery-item.g-feat { grid-column: span 6; grid-row: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, 0.94);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 1000px;
  width: 100%;
  position: relative;
}
.lightbox-inner img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
}
.lightbox-caption {
  text-align: center;
  color: #fff;
  margin-top: 20px;
}
.lightbox-caption .lbc-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}
.lightbox-caption .lbc-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-nav.prev { left: -64px; }
.lightbox-nav.next { right: -64px; }
@media (max-width: 768px) {
  .lightbox { padding: 20px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-close { top: -44px; }
}

/* ---------- Video grid ---------- */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .video-gallery { grid-template-columns: 1fr; } }
.video-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 28px 56px -28px rgba(14, 17, 22, 0.2);
}
.video-tile .vt-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.video-tile .vt-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-tile .vt-body { padding: 20px 22px 22px; }
.video-tile .vt-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.video-tile .vt-body h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 420;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.25;
}
.video-tile .vt-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 8px;
}

/* ---------- Enquiry CTA band (book a meeting / submit enquiry) ---------- */
.enquiry-band {
  background: linear-gradient(135deg, #0a0c14 0%, #1c2230 100%);
  border-radius: 32px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.enquiry-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255, 77, 20, 0.2), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(44, 75, 217, 0.12), transparent 60%);
  pointer-events: none;
}
.enquiry-band > * { position: relative; z-index: 1; }
.enquiry-band .eb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .enquiry-band .eb-grid { grid-template-columns: 1fr; gap: 36px; } }
.enquiry-band h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 340;
  letter-spacing: -0.028em;
  line-height: 1.1;
}
.enquiry-band h2 em { color: var(--accent); font-style: italic; }
.enquiry-band .eb-sub {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}
.enquiry-band .eb-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eb-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 22px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}
.eb-option:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--accent);
  transform: translateX(4px);
}
.eb-option .ebo-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.eb-option .ebo-text { flex: 1; }
.eb-option .ebo-text strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
}
.eb-option .ebo-text span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 2px;
}
.eb-option .ebo-arrow {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.eb-option:hover .ebo-arrow { transform: translateX(4px); }

/* ---------- Inline enquiry form ---------- */
.enquiry-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
}
.enquiry-form .ef-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .enquiry-form .ef-row { grid-template-columns: 1fr; } }
.enquiry-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 14.5px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.enquiry-form textarea { resize: vertical; min-height: 90px; }
.enquiry-form .ef-field { margin-bottom: 14px; }

/* ---------- Founder spotlight ---------- */
.founder-spotlight {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .founder-spotlight { grid-template-columns: 1fr; gap: 36px; } }
.founder-spotlight .fs-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
}
.founder-spotlight .fs-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.founder-spotlight .fs-image .fs-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Sticky mobile enquiry button ---------- */
.sticky-enquire {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
  display: none;
}
@media (max-width: 768px) {
  .sticky-enquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 30px -8px rgba(255, 77, 20, 0.5);
  }
}

