/* ============================================================
   Discovery Adviser Landing — Design tokens & base
   ============================================================ */

:root {
  /* Discovery-inspired palette */
  --disc-navy: #0a2540;
  --disc-blue-deep: #0b3d91;
  --disc-blue: #1568c7;
  --disc-blue-mid: #2596ea;
  --disc-cyan: #3fbcf0;
  --disc-cyan-light: #7fd5f6;
  --disc-gold: #c4a154;

  --ink-900: #0a1a2f;
  --ink-700: #22344a;
  --ink-500: #55647a;
  --ink-400: #8090a4;
  --ink-300: #b6bfcc;
  --ink-200: #d7dde5;
  --ink-100: #eaeef3;
  --paper: #ffffff;
  --paper-soft: #f6f8fb;
  --paper-tint: #eef3f9;

  --grad-hero: linear-gradient(155deg, #3fbcf0 0%, #1568c7 45%, #0b3d91 100%);
  --grad-hero-flip: linear-gradient(160deg, #7fd5f6 0%, #2596ea 42%, #0b3d91 100%);
  --grad-text: linear-gradient(90deg, #2596ea 0%, #0b3d91 100%);
  --grad-text-bright: linear-gradient(90deg, #3fbcf0 0%, #1568c7 55%, #0b3d91 100%);

  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 2px 8px rgba(10,37,64,.04);
  --shadow-md: 0 6px 20px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.04);
  --shadow-lg: 0 22px 50px rgba(10,37,64,.14), 0 8px 20px rgba(10,37,64,.06);
  --shadow-hero: 0 30px 80px rgba(11,61,145,.22), 0 10px 30px rgba(11,61,145,.14);

  --stack-gap: 14px; /* vertical gap between connected drawers */
  --notch-size: 44px; /* diameter of the circular Discovery connector notch */

  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);

  --header-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  background: var(--paper-soft);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ============================================================
   Gradient text utility
   ============================================================ */
.grad-text {
  background: var(--grad-text-bright);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0 0.02em; /* prevents descender clipping */
}

/* ============================================================
   Variation switcher (top of page)
   ============================================================ */
.variation-switch {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: rgba(10, 26, 47, .92);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.variation-switch button {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: 999px;
  letter-spacing: .02em;
  transition: all .3s var(--ease-out);
}
.variation-switch button.active {
  background: linear-gradient(90deg, #3fbcf0, #1568c7);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,150,234,.35);
}
.variation-switch button:hover:not(.active) { color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), padding .3s var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: rgba(10,37,64,.08);
  box-shadow: 0 4px 16px rgba(10,37,64,.04);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.brand-lock {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--disc-navy);
}
.brand-lock .disc-mark { width: 30px; height: 30px; }

.adviser-lock {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid var(--ink-200);
}
.adviser-lock .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef3f9, #d7e3ef);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10,37,64,.1);
  display: grid; place-items: center;
  color: var(--disc-blue-deep);
  font-weight: 700;
  font-size: 14px;
}
.adviser-lock .who {
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.adviser-lock .who .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--disc-navy);
}
.adviser-lock .who .meta {
  font-size: 11.5px;
  color: var(--ink-500);
  font-weight: 500;
}

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--disc-blue-deep);
  transition: all .25s var(--ease-out);
}
.icon-btn:hover {
  background: var(--disc-blue-deep);
  color: #fff;
  transform: translateY(-1px);
}
.icon-btn svg { width: 18px; height: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn-ghost {
  color: var(--disc-navy);
  background: transparent;
  border: 1px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--disc-blue); color: var(--disc-blue-deep); background: rgba(37,150,234,.06); }
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #1568c7, #0b3d91);
  box-shadow: 0 6px 18px rgba(11,61,145,.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(11,61,145,.34); }
.btn-primary:active { transform: translateY(0); }

.btn-lg { padding: 16px 26px; font-size: 15px; }

/* ============================================================
   Page shell
   ============================================================ */
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 40px 60px;
}

/* ============================================================
   HERO — two connected blocks
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  margin-bottom: 22px;
}

/* Left block: adviser card */
.hero-adviser {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 46px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.hero-adviser::before {
  /* Subtle radial ambient */
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle at center, rgba(63,188,240,.18), transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: rgba(21,104,199,.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--disc-blue-deep);
  align-self: flex-start;
  letter-spacing: .01em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--disc-blue-mid); box-shadow: 0 0 0 3px rgba(37,150,234,.22); }

h1.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 22px 0 20px;
  color: var(--disc-navy);
  text-wrap: pretty;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 460px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.adviser-card-inner {
  margin-top: auto;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(180deg, #f6f8fb 0%, #eef3f9 100%);
  border-radius: 24px;
  border: 1px solid rgba(21,104,199,.08);
}

.photo-slot {
  width: 132px; height: 132px;
  border-radius: 22px;
  background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #eef3f9 10px, #eef3f9 20px);
  border: 1.5px dashed var(--ink-300);
  display: grid;
  place-items: center;
  color: var(--ink-400);
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px;
}
.photo-slot svg { width: 28px; height: 28px; margin-bottom: 6px; display: block; opacity: .5; }
.photo-slot span { display: block; }

.adviser-facts .name {
  font-size: 22px;
  font-weight: 800;
  color: var(--disc-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.adviser-facts .role {
  font-size: 13.5px;
  color: var(--disc-blue-deep);
  font-weight: 600;
  margin: 0 0 12px;
}
.adviser-facts .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.adviser-facts .meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.adviser-facts .meta-row svg { width: 12px; height: 12px; color: var(--disc-blue); }

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* Right block: gradient form */
.hero-form {
  border-radius: var(--radius-xl);
  padding: 44px 46px;
  background: var(--grad-hero);
  color: #fff;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}
.hero-form::before, .hero-form::after {
  /* Decorative Discovery tree hints */
  content: '';
  position: absolute;
  pointer-events: none;
}
.hero-form::before {
  right: -140px; top: -140px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.14), transparent 60%);
}
.hero-form::after {
  left: -50px; bottom: -110px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(63,188,240,.35), transparent 60%);
}

.hero-form h2 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.hero-form .form-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
  margin: 0 0 24px;
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.hero-form form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all .2s var(--ease-out);
}
.field input::placeholder { color: rgba(255,255,255,.55); }
.field input:focus {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}
.field.error input { border-color: #ffb3b3; background: rgba(255, 100, 100, .12); }
.field .err {
  font-size: 11.5px;
  color: #ffcdcd;
  margin-top: 4px;
  display: none;
}
.field.error .err { display: block; }

/* Interest chips */
.interest-label { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.interest-card {
  padding: 12px 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-size: 11.5px;
  font-weight: 600;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .22s var(--ease-out);
  min-height: 68px;
  position: relative;
  overflow: hidden;
}
.interest-card svg { width: 18px; height: 18px; color: rgba(255,255,255,.85); flex-shrink: 0; }
.interest-card:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.36); }
.interest-card.selected {
  background: #fff;
  color: var(--disc-blue-deep);
  border-color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}
.interest-card.selected svg { color: var(--disc-blue); }
.interest-card .check {
  position: absolute; top: 8px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--disc-blue);
  color: #fff;
  display: grid; place-items: center;
  opacity: 0; transform: scale(.6);
  transition: all .22s var(--ease-out);
}
.interest-card.selected .check { opacity: 1; transform: scale(1); }
.interest-card .check svg { width: 10px; height: 10px; color: #fff; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  line-height: 1.5;
}
.consent input[type="checkbox"] {
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all .2s;
}
.consent input[type="checkbox"]:checked {
  background: #fff;
  border-color: #fff;
}
.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--disc-blue-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent a { color: #fff; text-decoration: underline; }

.form-submit {
  margin-top: 6px;
  padding: 16px 24px;
  background: #fff;
  color: var(--disc-blue-deep);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .2s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.form-submit .arrow { transition: transform .2s var(--ease-out); }
.form-submit:hover .arrow { transform: translateX(3px); }
.form-submit:disabled { opacity: .6; cursor: wait; }

.form-fineprint {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  text-align: center;
  margin: 6px 0 0;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 40px 20px;
  height: 100%;
}
.form-success.on { display: flex; }
.form-success .tick {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,.4);
}
.form-success .tick svg { width: 34px; height: 34px; }
.form-success h3 { margin: 6px 0 0; font-size: 24px; font-weight: 800; }
.form-success p { margin: 0; color: rgba(255,255,255,.82); max-width: 320px; font-size: 14px; }
.form-success .next {
  display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; justify-content: center;
}
.form-success .next button {
  padding: 10px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background .2s;
}
.form-success .next button:hover { background: rgba(255,255,255,.24); }
.form-success .next button.filled { background: #fff; color: var(--disc-blue-deep); border-color: #fff; }

/* ============================================================
   HERO CONNECTOR — the central Discovery "notch"
   ============================================================ */
.hero-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11,61,145,.18), inset 0 0 0 1px rgba(21,104,199,.12);
  display: grid;
  place-items: center;
  z-index: 5;
}
.hero-connector::before {
  /* Inset ring */
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef3f9, #d7e3ef);
}
.hero-connector .tree {
  position: relative;
  z-index: 1;
  width: 36px; height: 36px;
  color: var(--disc-blue-deep);
}
/* Adviser card has a rounded semicircle cutout on right; form has one on left */
.hero-adviser::after, .hero-form-cutout {
  content: '';
  position: absolute;
  top: 50%;
  width: 46px; height: 92px;
  background: var(--paper-soft);
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
.hero-adviser::after {
  right: -1px;
  border-radius: 92px 0 0 92px;
}
.hero-form-cutout {
  left: -1px;
  border-radius: 0 92px 92px 0;
  background: var(--paper-soft);
}

/* ============================================================
   DRAWER STACK
   ============================================================ */
.drawer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  position: relative;
}

.drawer {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s var(--ease-out);
}
.drawer.open { box-shadow: var(--shadow-lg); }

/* Top notch — the Discovery-symbol cutout */
.drawer .notch {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--notch-size) * 2.4);
  height: var(--notch-size);
  background: var(--paper-soft);
  border-radius: 0 0 var(--notch-size) var(--notch-size);
  z-index: 2;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding-top: 4px;
}
.drawer .notch .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(21,104,199,.15);
  transition: all .5s var(--ease-out);
  display: grid;
  place-items: center;
  transform: translateY(6px);
}
.drawer .notch .dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--disc-blue-mid);
  transition: all .5s var(--ease-out);
}
.drawer.open .notch .dot {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  border-color: rgba(255,255,255,.6);
  transform: translateY(6px) rotate(180deg);
}
.drawer.open .notch .dot::after { background: #fff; }

/* First drawer — no top notch (nothing above it) */
.drawer:first-child .notch { display: none; }

.drawer-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 44px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.drawer-head:hover { background: rgba(21,104,199,.02); }

.drawer-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--disc-blue);
  letter-spacing: .12em;
  min-width: 34px;
}

.drawer-title-group {
  flex: 1;
}
.drawer-title-group h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--disc-navy);
}
.drawer-title-group .preview {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--ink-500);
}

.drawer-toggle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--disc-blue-deep);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.drawer-toggle svg {
  width: 20px; height: 20px;
  transition: transform .4s var(--ease-out);
}
.drawer.open .drawer-toggle {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
  box-shadow: 0 6px 18px rgba(11,61,145,.28);
}
.drawer.open .drawer-toggle svg { transform: rotate(45deg); }

.drawer-body-wrap {
  height: 0;
  overflow: hidden;
  transition: height .55s var(--ease-inout);
}
/* height on .open managed inline by JS so transition works */
.drawer-body {
  padding: 4px 44px 44px;
  border-top: 1px solid var(--ink-100);
  padding-top: 32px;
}

/* ============================================================
   Drawer 1 — Products
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-card {
  background: var(--paper-soft);
  border: 1px solid var(--ink-100);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  transition: all .25s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  min-height: 190px;
}
.product-card:hover {
  border-color: var(--disc-blue-mid);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11,61,145,.1);
}
.product-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--ink-100);
  display: grid; place-items: center;
  color: var(--disc-blue-deep);
  transition: all .25s var(--ease-out);
}
.product-card:hover .icon {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
  border-color: transparent;
}
.product-card .icon svg { width: 22px; height: 22px; }
.product-card h4 { margin: 4px 0 0; font-size: 16px; font-weight: 700; color: var(--disc-navy); }
.product-card p { margin: 0; font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }
.product-card .discuss {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--disc-blue-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 6px;
}
.product-card .discuss svg { width: 12px; height: 12px; transition: transform .2s; }
.product-card:hover .discuss svg { transform: translateX(3px); }
.product-card.authorised .icon .badge {
  display: none;
}

.review-cta {
  margin-top: 22px;
  padding: 22px 26px;
  background: linear-gradient(90deg, rgba(37,150,234,.06), rgba(11,61,145,.02));
  border: 1px solid rgba(21,104,199,.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.review-cta p { margin: 0; flex: 1; font-size: 14.5px; color: var(--ink-700); }
.review-cta p strong { color: var(--disc-navy); }

/* ============================================================
   Drawer 2 — Meet the adviser
   ============================================================ */
.bio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.bio-photo {
  border-radius: 24px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #eef3f9 10px, #eef3f9 20px);
  border: 1.5px dashed var(--ink-300);
  height: 340px;
  display: grid;
  place-items: center;
  color: var(--ink-400);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bio-photo svg { width: 40px; height: 40px; opacity: .5; margin-bottom: 8px; }
.bio-photo div { padding: 10px; }

.bio-intro h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--disc-navy);
  letter-spacing: -.01em;
}
.bio-intro p {
  margin: 0 0 14px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.65;
}

.expect-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.expect-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--paper-soft);
}
.expect-item .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.expect-item .tick svg { width: 11px; height: 11px; }
.expect-item span { font-size: 13.5px; color: var(--ink-700); line-height: 1.45; }

.bio-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-100);
}
.bio-fact {
  padding: 14px 16px;
  background: var(--paper-soft);
  border-radius: 14px;
}
.bio-fact .label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); font-weight: 600; }
.bio-fact .val { font-size: 15px; font-weight: 700; color: var(--disc-navy); margin-top: 4px; }

.outside-office {
  margin-top: 26px;
  padding: 22px 24px;
  background: url('assets/lifestyle-family.jpg') center/cover;
  background-position: center 30%;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
}
.outside-office::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,.78) 0%, rgba(10,37,64,.4) 60%, transparent 100%);
}
.outside-office .inner {
  position: relative;
  z-index: 1;
  max-width: 460px;
}
.outside-office h5 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.outside-office p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}

/* ============================================================
   Drawer 3 — Testimonials
   ============================================================ */
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scroll-padding: 0 44px;
  scrollbar-width: thin;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 3px; }

.testi-card {
  scroll-snap-align: start;
  background: var(--paper-soft);
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--disc-cyan);
  line-height: 0.8;
  height: 30px;
  opacity: .6;
}
.testi-card blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
  flex: 1;
  text-wrap: pretty;
}
.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}
.testi-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--disc-cyan-light), var(--disc-blue-mid));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.testi-card .who .info { flex: 1; }
.testi-card .who .n { font-size: 13.5px; font-weight: 700; color: var(--disc-navy); }
.testi-card .who .cat { font-size: 11.5px; color: var(--ink-500); }
.testi-card .rating {
  display: flex;
  gap: 2px;
  color: var(--disc-gold);
}
.testi-card .rating svg { width: 12px; height: 12px; }
.testi-card .verified {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--disc-blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.testi-card .verified svg { width: 11px; height: 11px; }

.testi-nav {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.testi-nav .arrows { display: flex; gap: 8px; }
.testi-nav .arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--disc-blue-deep);
  display: grid; place-items: center;
  transition: all .2s var(--ease-out);
}
.testi-nav .arrows button:hover { background: var(--disc-blue-deep); color: #fff; }
.testi-nav .arrows svg { width: 16px; height: 16px; }

/* ============================================================
   Drawer 4 — Booking
   ============================================================ */
.book-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  min-height: 460px;
}

.meeting-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meeting-types .step-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--disc-blue);
  margin-bottom: 6px;
}
.meeting-type {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid var(--ink-100);
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  transition: all .2s var(--ease-out);
  cursor: pointer;
}
.meeting-type:hover { border-color: var(--disc-blue-mid); background: var(--paper-soft); }
.meeting-type.selected {
  border-color: var(--disc-blue-deep);
  background: linear-gradient(180deg, rgba(37,150,234,.06), rgba(11,61,145,.02));
  box-shadow: 0 6px 18px rgba(11,61,145,.08);
}
.meeting-type .mt-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--paper-soft);
  color: var(--disc-blue-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .2s;
}
.meeting-type.selected .mt-icon {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
}
.meeting-type .mt-icon svg { width: 18px; height: 18px; }
.meeting-type .mt-info { flex: 1; }
.meeting-type .mt-title { font-size: 13.5px; font-weight: 700; color: var(--disc-navy); }
.meeting-type .mt-sub { font-size: 12px; color: var(--ink-500); margin-top: 2px; }

.book-right {
  background: var(--paper-soft);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-right .step-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--disc-blue);
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cal-head .month {
  font-size: 16px;
  font-weight: 700;
  color: var(--disc-navy);
}
.cal-head .cal-arrows { display: flex; gap: 6px; }
.cal-head .cal-arrows button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--disc-blue-deep);
  display: grid; place-items: center;
  border: 1px solid var(--ink-100);
}
.cal-head .cal-arrows button:hover { background: var(--disc-blue-deep); color: #fff; border-color: transparent; }
.cal-head .cal-arrows svg { width: 12px; height: 12px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-grid .day-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-400);
  padding: 6px 0;
  letter-spacing: .06em;
}
.cal-grid .cal-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  background: #fff;
  transition: all .18s var(--ease-out);
  cursor: pointer;
  position: relative;
}
.cal-grid .cal-cell.empty { background: transparent; cursor: default; }
.cal-grid .cal-cell.disabled {
  color: var(--ink-300);
  cursor: not-allowed;
  background: transparent;
}
.cal-grid .cal-cell.available:hover {
  background: rgba(37,150,234,.1);
  color: var(--disc-blue-deep);
}
.cal-grid .cal-cell.available::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--disc-blue-mid);
}
.cal-grid .cal-cell.selected {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
  box-shadow: 0 6px 14px rgba(11,61,145,.24);
}
.cal-grid .cal-cell.selected::after { background: #fff; }

.slot-picker { display: flex; flex-direction: column; gap: 10px; }
.slot-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.slot {
  padding: 10px 6px;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--disc-navy);
  transition: all .18s var(--ease-out);
}
.slot:hover { border-color: var(--disc-blue-mid); color: var(--disc-blue-deep); }
.slot.selected {
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  color: #fff;
  border-color: transparent;
}
.slot-empty {
  padding: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  background: #fff;
  border: 1px dashed var(--ink-200);
  border-radius: 12px;
}

.book-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--ink-100);
  margin-top: 4px;
}

/* Booking confirmation overlay (within drawer) */
.book-confirm {
  display: none;
  background: linear-gradient(135deg, #ffffff, #f6f8fb);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  grid-column: 1 / -1;
  border: 1px solid rgba(21,104,199,.12);
}
.book-confirm.on { display: block; }
.book-confirm .tick {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3fbcf0, #0b3d91);
  color: #fff;
  display: grid;
  place-items: center;
}
.book-confirm .tick svg { width: 30px; height: 30px; }
.book-confirm h4 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--disc-navy); }
.book-confirm p { margin: 0 0 16px; color: var(--ink-500); }
.book-confirm .details {
  display: inline-flex;
  gap: 30px;
  padding: 14px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--ink-100);
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.book-confirm .details .d { text-align: left; }
.book-confirm .details .d .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); font-weight: 600; }
.book-confirm .details .d .v { font-size: 14px; font-weight: 700; color: var(--disc-navy); margin-top: 2px; }
.book-confirm .after {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Floating callback button
   ============================================================ */
.callback-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(90deg, var(--disc-blue-deep), var(--disc-navy));
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 34px rgba(11,61,145,.34), 0 4px 12px rgba(0,0,0,.1);
  transition: all .3s var(--ease-out);
}
.callback-fab:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(11,61,145,.44); }
.callback-fab .pulse-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center;
  position: relative;
}
.callback-fab .pulse-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  animation: pulse 2.2s var(--ease-inout) infinite;
}
.callback-fab .pulse-icon svg { width: 14px; height: 14px; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Callback modal */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(10,26,47,.55);
  backdrop-filter: blur(6px);
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fade .25s var(--ease-out);
}
.modal-mask.on { display: flex; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: pop .32s var(--ease-out);
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.modal .close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--ink-500);
  display: grid; place-items: center;
}
.modal .close:hover { background: var(--ink-100); color: var(--disc-navy); }
.modal .close svg { width: 14px; height: 14px; }
.modal h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--disc-navy); }
.modal .sub { margin: 0 0 20px; color: var(--ink-500); font-size: 14px; }

.modal .field label { color: var(--ink-500); }
.modal .field input, .modal .field select {
  border-radius: 10px;
  border: 1px solid var(--ink-200);
  background: #fff;
  color: var(--ink-900);
  padding: 11px 13px;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  outline: none;
}
.modal .field input:focus, .modal .field select:focus {
  border-color: var(--disc-blue);
  box-shadow: 0 0 0 3px rgba(37,150,234,.16);
}
.modal .field + .field { margin-top: 10px; }
.modal .submit-row { margin-top: 16px; display: flex; gap: 10px; }
.modal .submit-row button {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.modal .submit-row .go { background: linear-gradient(90deg, var(--disc-blue), var(--disc-blue-deep)); color: #fff; }
.modal .submit-row .go:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(11,61,145,.28); }
.modal .submit-row .cancel { background: var(--paper-soft); color: var(--ink-700); }

/* ============================================================
   Footer & trust signals
   ============================================================ */
.trust-strip {
  margin-top: 22px;
  padding: 22px 30px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-strip .item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-700);
}
.trust-strip .item .ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(37,150,234,.1);
  color: var(--disc-blue-deep);
  display: grid; place-items: center;
}
.trust-strip .item .ic svg { width: 15px; height: 15px; }

.site-footer {
  margin-top: 40px;
  padding: 36px 40px 30px;
  background: var(--disc-navy);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  border-radius: 22px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 24px;
}
.site-footer h6 {
  margin: 0 0 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-footer a { display: block; padding: 3px 0; color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #fff; }
.site-footer .legal {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .legal .brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.site-footer .legal .brand-block svg { width: 22px; height: 22px; }

/* ============================================================
   Variation-specific overrides
   ============================================================ */
/* ---------- Variation B: Interlock — big semi-circular tab bulging up ---------- */
body[data-variant="interlock"] .drawer-stack { gap: 0; }
body[data-variant="interlock"] .drawer {
  border-radius: 32px;
  margin-top: -22px;
}
body[data-variant="interlock"] .drawer:first-child { margin-top: 0; }
body[data-variant="interlock"] .drawer .notch {
  width: 240px;
  height: 44px;
  top: 0;
  border-radius: 0 0 120px 120px;
  padding-top: 6px;
  background: var(--paper-soft);
}
body[data-variant="interlock"] .drawer .notch .dot {
  width: 26px; height: 26px;
  transform: translateY(3px);
}
body[data-variant="interlock"] .drawer .drawer-head { padding-top: 46px; }
body[data-variant="interlock"] .hero-connector {
  width: 82px; height: 82px;
  border-radius: 24px;
  transform: translate(-50%, -50%) rotate(45deg);
}
body[data-variant="interlock"] .hero-connector .tree { transform: rotate(-45deg); }
body[data-variant="interlock"] .hero-adviser::after,
body[data-variant="interlock"] .hero-form-cutout {
  width: 50px; height: 100px;
}

/* ---------- Variation C: Beaded — floating bead between separated drawers ---------- */
body[data-variant="beaded"] .drawer-stack { gap: 36px; }
body[data-variant="beaded"] .drawer {
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(10,37,64,.06), 0 8px 30px rgba(10,37,64,.05);
}
body[data-variant="beaded"] .drawer .notch {
  width: 44px;
  height: 44px;
  top: -40px;
  background: transparent;
  border-radius: 50%;
  overflow: visible;
  padding: 0;
}
body[data-variant="beaded"] .drawer .notch::before {
  /* Vertical connecting line */
  content: '';
  position: absolute;
  top: -10px; bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(21,104,199,.25), transparent);
}
body[data-variant="beaded"] .drawer .notch .dot {
  transform: none;
  width: 44px; height: 44px;
  background: #fff;
  border: 1.5px solid rgba(21,104,199,.16);
  box-shadow: 0 8px 20px rgba(11,61,145,.14);
  position: relative;
  z-index: 1;
}
body[data-variant="beaded"] .drawer .notch .dot::after {
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
}
body[data-variant="beaded"] .drawer.open .notch .dot {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--disc-blue-mid), var(--disc-blue-deep));
  border-color: transparent;
}
body[data-variant="beaded"] .drawer.open .notch .dot::after { background: #fff; }
body[data-variant="beaded"] .hero-connector {
  width: 64px; height: 64px;
}
body[data-variant="beaded"] .hero-adviser::after,
body[data-variant="beaded"] .hero-form-cutout {
  width: 34px; height: 78px;
}
body[data-variant="beaded"] .hero-adviser,
body[data-variant="beaded"] .hero-form { border-radius: 26px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-adviser, .hero-form { min-height: auto; }
  .hero-adviser::after, .hero-form-cutout, .hero-connector { display: none; }
  .hero-adviser { border-radius: var(--radius-xl) var(--radius-xl) 24px 24px; }
  .hero-form { border-radius: 24px var(--radius-xl) var(--radius-xl) var(--radius-xl); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .book-layout { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo { height: 220px; }
  .bio-facts { grid-template-columns: repeat(2, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .page { padding: 20px 16px 100px; }
  .header-inner { padding: 12px 16px; gap: 10px; }
  .adviser-lock { display: none; }
  .header-cta .btn { display: none; }
  h1.hero-title { font-size: 36px; }
  .hero-adviser, .hero-form { padding: 30px 26px; }
  .hero-form h2 { font-size: 24px; }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .drawer-head { padding: 24px 22px; gap: 14px; }
  .drawer-title-group h3 { font-size: 20px; }
  .drawer-title-group .preview { font-size: 13px; }
  .drawer-body { padding: 20px 22px 28px; }
  .expect-grid { grid-template-columns: 1fr; }
  .bio-facts { grid-template-columns: 1fr 1fr; }
  .site-footer { border-radius: 0; padding: 30px 20px; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 20px; }
  .callback-fab { display: none; }
  .mobile-bar {
    display: flex !important;
  }
  .adviser-card-inner { grid-template-columns: 1fr; gap: 14px; }
  .photo-slot { width: 100%; height: 160px; }
  .trust-strip { padding: 18px; gap: 14px 22px; }
  .variation-switch { top: auto; bottom: 96px; left: 16px; transform: none; }
  .variation-switch button { padding: 6px 12px; font-size: 11px; }
}

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-100);
  padding: 10px 12px;
  gap: 8px;
}
.mobile-bar button {
  flex: 1;
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-bar button svg { width: 14px; height: 14px; }
.mobile-bar .call { background: var(--paper-soft); color: var(--disc-blue-deep); }
.mobile-bar .cb { background: var(--paper-soft); color: var(--disc-blue-deep); }
.mobile-bar .book { background: linear-gradient(90deg, var(--disc-blue), var(--disc-blue-deep)); color: #fff; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
