/* =========================
   Doctor Direct — style.css
   (matches your HTML exactly)
========================= */

/* ---------- Variables ---------- */
:root {
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);

  --primary: #db0e03;
  --primaryText: #ffffff;

  --cta: #0b6bd6;
  --ctaText: #ffffff;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0; /* removes white gap at top */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   Topbar (you have it, but empty)
========================= */
.topbar {
  background: #fff;
  border-bottom: 0;
}

.topbar__inner {
  height: 0; /* since it's empty, collapse it */
}

/* =========================
   Announcement bar
========================= */
.announce {
  background: #fff59a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

.announce__inner {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announce__text {
  margin: 0;
  font-size: 13px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.announce__link {
  font-weight: 800;
  border-bottom: 1px solid rgba(15,23,42,0.35);
}

.announce__link:hover {
  border-bottom-color: rgba(15,23,42,0.7);
}
/* Offset anchor jumps so section titles don't hide behind banner + sticky header */
:root{
  --banner-h: 52px;     /* desktop banner height */
  --header-h: 74px;     /* your header height */
  --anchor-offset: calc(var(--banner-h) + var(--header-h) + 12px);
}

@media (max-width: 480px){
  :root{ --banner-h: 64px; } /* your mobile banner height */
}

/* Apply to any section that is navigated via #id */
section[id]{
  scroll-margin-top: var(--anchor-offset);
}
/* =========================
   Header / Nav
========================= */
/* .header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff !important;    */
  /* backdrop-filter: blur(12px); */
  /* backdrop-filter: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
} */
/* Header always visible */
.header{
  position: fixed;
  left: 0;
  right: 0;
  top: 51px;              /* below the banner */
  z-index: 99999;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__img {
  height: 43px;
  width: auto;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
}

.nav__link:hover {
  color: #0f172a;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.nav__phone {
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.65);
}

.nav__phone--logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__phone-logo {
  height: 30px;
  width: auto;
  display: block;
}

.nav__phone-number {
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
  white-space: nowrap;
}

.nav__phone-mobile {
  display: none;
}

.mobile-callbar {
  display: none;
}

.mobile-header-call {
  display: none;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  margin: 4px auto;
  border-radius: 999px;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary,
.btn--accent {
  background: var(--primary);
  color: var(--primaryText);
  box-shadow: 0 10px 22px rgba(225, 6, 0, 0.18);
}

.btn--primary:hover,
.btn--accent:hover {
  box-shadow: 0 14px 30px rgba(225, 6, 0, 0.28);
}

.btn--ghost {
  background: transparent;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.18);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn--black {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.btn--black:hover {
  background: #1e293b;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

/* =========================
   HERO (animated gradient)
========================= */
.hero {
  position: relative;
  overflow: visible;
  padding: 40px 0 40px;

  background: linear-gradient(
    -45deg,
    #20bcff,
    hsl(185, 82%, 54%),
    #2c5364,
    #6781b1,
    #ff3d3d
  );
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding-top: 60px;
} */
.hero__grid{
  display: grid;
  grid-template-columns: 2.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  min-height: 90vh;           /* slightly taller than your 75-> you can tune */
}


.hero__copy h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  margin: 0 0 12px;
}

/* This is your tagline paragraph */
.hero__subtitle {
  margin: 26px 0 22px;
  max-width: 560px;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.7;
}

/* CTA + trust row */
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
}

.hero__phone {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #86f9b0;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

/* Right hero visual */
.hero__visual {
  position: relative;
  min-height: 520px;
}
.hero__grid{
  grid-template-columns: 1.3fr 1fr;
}

.mock{
  width: 100%;
  max-width: 600px;
  height: 560px;
}
/* mock panel */
.mock{
  position: relative;
  width: 150%;            /* allow full column width */
  max-width: 500px;       /* 🔥 this makes it wider */
  height: 560px;          /* increase height slightly to match width */

  background: linear-gradient(
    135deg,
    rgba(11,107,214,0.10),
    rgba(255,255,255,0.55)
  );

  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}

.mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* badge + wave you already use in HTML */
.mock__badge{
  position:absolute;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.10);
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.mock__wave{
  position:absolute;
  left: 16px;
  right: 16px;
  top: 58px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(90deg,
      rgba(219,14,3,0.18),
      rgba(11,107,214,0.18),
      rgba(219,14,3,0.18)
    );
  opacity: 0.55;
  z-index: 2;
}
.mock__wave {
  display: none;
}

/* floating bits */
.mock__floating {
  position: absolute;
  z-index: 2;
}

.mock__floating--1 {
  left: 22px;
  top: 220px;
  width: 260px;
}

.bubble {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 14px;
  font-size: 13px;
  color: #334155;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.bubble__title {
  font-weight: 900;
  margin-bottom: 6px;
  color: #0f172a;
}

.mock__floating--2 {
  right: 24px;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(11, 107, 214, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.chip {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

/* Support widget */
.widget {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: min(360px, 92%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 5;
}

.widget__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.widget__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.widget__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.widget__title {
  font-weight: 900;
}

.widget__sub {
  font-size: 13px;
  color: #64748b;
}

.widget__btn {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--cta);
  color: var(--ctaText);
  font-weight: 900;
  cursor: pointer;
  margin-top: 10px;
}

.widget__btn--secondary {
  background: #0b6bd6;
  opacity: 0.92;
}

.widget__fine {
  margin: 12px 0 0;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

/* =========================
   Sections (generic)
========================= */
.section {
  padding: 70px 0;
}

.section--alt {
  background: #f8fafc;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.8px;
}

.section__lead {
  margin: 10px 0 24px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.solutions__intro {
  position: relative;
  padding: 30px 32px;
  border-radius: 26px;
  border: 1px solid rgba(11, 107, 214, 0.24);
  background:
    radial-gradient(125% 170% at 100% 0%, rgba(11, 107, 214, 0.18), rgba(11, 107, 214, 0) 58%),
    linear-gradient(138deg, #f7fbff 0%, #ffffff 70%);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.solutions__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b6bd6;
}

#solutions h2 {
  margin: 0 0 8px;
  max-width: 18ch;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.solutions__highlight {
  display: inline-flex;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0b6bd6;
  border: 1px solid rgba(11, 107, 214, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

#solutions .section__lead {
  margin: 16px 0 0;
  max-width: 62ch;
  color: #334155;
  font-size: 16px;
}

.solutions__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.solutions__chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
}

/* =========================
   About section
========================= */
.section--about {
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 107, 214, 0.08), transparent 42%),
    radial-gradient(circle at 86% 70%, rgba(219, 14, 3, 0.06), transparent 40%),
    #f8fbff;
}

.about__head {
  max-width: 880px;
  margin: 0 auto 22px;
  text-align: center;
}

#about h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

#about .section__lead {
  margin: 0 auto;
  max-width: 66ch;
  color: #334155;
}

.about__audiences {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 22px;
  padding: 8px 0;
}

.about__audiences::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(11, 107, 214, 0),
    rgba(11, 107, 214, 0.34) 20%,
    rgba(11, 107, 214, 0.34) 80%,
    rgba(11, 107, 214, 0)
  );
  transform: translateX(-50%);
}

.about__card {
  padding: 0 0 2px;
}

.about__tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 107, 214, 0.24);
  background: rgba(11, 107, 214, 0.1);
  color: #0b6bd6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.about__lines {
  display: grid;
  gap: 8px;
}

.about__line {
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid rgba(11, 107, 214, 0.32);
  color: #334155;
  line-height: 1.62;
  font-size: 17px;
}

.about__strategy {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 14px;
}

.about__point {
  padding: 0 8px 0 0;
}

.about__point h4 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.about__point p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.55;
}

/* =========================
   Voice flow (your section id="solution")
========================= */
.voice-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.voice-step {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  border: 1px solid rgba(15,23,42,0.1);
  box-shadow: 0 12px 28px rgba(15,23,42,0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.voice-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0b6bd6 0%, #18a0fb 100%);
  opacity: 0.95;
}

.voice-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15,23,42,0.1);
  border-color: rgba(11,107,214,0.24);
}

.voice-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.voice-step__num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(11, 107, 214, 0.12);
  border: 1px solid rgba(11, 107, 214, 0.24);
  color: #0b6bd6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.voice-step__tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.voice-step p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}

.voice-step__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.voice-step__list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
}

.voice-step__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #7cc6ff, #0b6bd6 70%);
  box-shadow: 0 0 0 3px rgba(11, 107, 214, 0.13);
}

.voice-cta {
  margin-top: 40px;
}

.voice-visual {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(11, 107, 214, 0.18);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(24, 160, 251, 0.12), rgba(24, 160, 251, 0) 55%),
    linear-gradient(140deg, #f7fbff 0%, #ffffff 72%);
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 8px;
}

.voice-visual__step {
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 14px 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.voice-visual__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(11, 107, 214, 0.12);
  border: 1px solid rgba(11, 107, 214, 0.22);
}

.voice-visual__step h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.voice-visual__step p {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

.voice-visual__connector {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 107, 214, 0.25), rgba(11, 107, 214, 0.7));
}

.voice-visual__connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(11, 107, 214, 0.7);
}

.voice-visual-image {
  margin: 16px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.voice-visual-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Launch section
========================= */
.section--launch {
  background: #ffffff;
}

.launch__head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 28px;
}

.launch__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.launch__panel {
  position: relative;
  border-radius: 26px;
  min-height: 420px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 55px rgba(15,23,42,0.08);
  overflow: hidden;
}

/* full background image */
.launch__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay for readability */
.launch__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.14) 50%,
    rgba(0,0,0,0.06) 100%
  );
  z-index: 1;
}

.launch__card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.10);
  padding: 16px;
  max-width: 360px;
}

.launch__card--top {
  left: 22px;
  top: 22px;
}

.launch__card--bottom {
  left: 22px;
  bottom: 22px;
}

.launch__card-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.launch__card-title {
  font-weight: 900;
  color: #0f172a;
  font-size: 13px;
}

.launch__icons {
  display: inline-flex;
  gap: 6px;
}

.launch__icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.18);
}

.launch__row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(15,23,42,0.06);
}

.launch__row:first-of-type {
  border-top: none;
}

.launch__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11,107,214,0.55);
  margin-top: 4px;
}

.launch__label {
  font-size: 11px;
  font-weight: 900;
  color: #64748b;
  margin-bottom: 3px;
}

.launch__text {
  font-size: 13px;
  color: #334155;
  font-weight: 800;
}

.launch__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.launch__field {
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(15,23,42,0.06);
  font-weight: 900;
  color: #64748b;
  font-size: 12px;
}

.launch__user {
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(15,23,42,0.06);
}

.launch__avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(11,107,214,0.14);
  border: 1px solid rgba(11,107,214,0.18);
}

.launch__user-name {
  font-weight: 900;
  color: #0f172a;
  font-size: 13px;
}

.launch__user-sub {
  color: #64748b;
  font-weight: 800;
  font-size: 12px;
}

.launch__flag {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(219,14,3,0.9), rgba(11,107,214,0.9));
  opacity: 0.85;
}

.launch__glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(11,107,214,0.22);
  filter: blur(40px);
  z-index: 2;
}

.launch__steps {
  padding: 10px 0;
}

.launch__step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(15,23,42,0.10);
}

.launch__step:first-of-type {
  border-top: none;
}

.launch__num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(11,107,214,0.10);
  border: 1px solid rgba(11,107,214,0.18);
  color: #0b6bd6;
}

.launch__head h2 {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.launch__content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #0f172a;
}

.launch__content ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.7;
  font-weight: 600;
  font-size: 12px;
}

.launch__content li + li {
  margin-top: 2px;
}

.launch__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Pricing
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  min-height: 420px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  border-color: rgba(219, 14, 3, 0.22);
}

.price-card__title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.price-card__desc {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.22);

  /* IMPORTANT: keep this clean if you want (optional)
     If you pasted this and see a cut here, delete this comment and the stray "color:  " lines above.
  */
}

/* Price row */
.price-card__price {
  margin: 10px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-card__amount {
  font-size: 24px;
  font-weight: 900;
  color: #334155;
}

.price-card__per {
  font-weight: 800;
  color: #64748b;
}

/* Details dropdown */
.price-details {
  margin-top: 18px;
  position: relative;
}

.price-details__summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ed2419;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(219, 14, 3, 0.18);
}

.price-details__summary::-webkit-details-marker {
  display: none;
}

.price-details .chev {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}

/* overlay list (no layout shift) */
.price-details__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 14px 18px 14px 34px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity .18s ease, transform .18s ease, max-height .2s ease;
  z-index: 5;
  color: #64748b;
  line-height: 1.8;
  font-weight: 800;
}

.price-card:hover .price-details__list,
.price-details[open] .price-details__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 340px;
}

.price-card__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.price-card__label {
  font-weight: 900;
  color: #64748b;
  margin-bottom: 10px;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.02);
  font-weight: 900;
  color: #334155;
}

/* =========================
   Demo form
========================= */
.demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: #334155;
  margin-bottom: 12px;
}

.form input {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 0 14px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form input:focus {
  border-color: rgba(11, 107, 214, 0.65);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(11, 107, 214, 0.14),
    0 8px 20px rgba(11, 107, 214, 0.08);
}

.phone-field {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px;
}

.phone-field__country,
.phone-field__number {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-field__country {
  min-width: 102px;
  width: auto;
  padding: 0 34px 0 14px;
  font-weight: 700;
  color: #1e293b;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #475569 50%),
    linear-gradient(135deg, #475569 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 18px,
    calc(100% - 11px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.phone-field__number {
  padding: 0 14px;
}

.phone-field__country:focus,
.phone-field__number:focus {
  border-color: rgba(11, 107, 214, 0.65);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(11, 107, 214, 0.14),
    0 8px 20px rgba(11, 107, 214, 0.08);
}

.form input.is-invalid,
.phone-field__number.is-invalid {
  border-color: rgba(185, 28, 28, 0.72);
  background: #fff6f6;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.12);
}

.form__fine {
  margin: 10px 0 0;
  font-size: 12px;
  color: #94a3b8;
}

.form__status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

.form__status--success {
  color: #15803d;
}

.form__status--error {
  color: #b91c1c;
}

.form .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* =========================
   Footer
========================= */
.footer {
  position: relative;
  margin-top: 30px;
  padding: 24px 0 18px;
  color: #dbe7ff;
  background: linear-gradient(
    90deg,

    #ff7402be 0%,
    #1463a5 60%,
    #003f88 110%
  );
  border-top: none;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  background: linear-gradient(
    180deg,
    rgba(191, 219, 254, 0.35),
    rgba(191, 219, 254, 0.12) 45%,
    rgba(191, 219, 254, 0)
  );
  pointer-events: none;
}

.footer__inner {
  padding: 0;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer__brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer__tagline {
  margin: 0;
  max-width: 58ch;
  line-height: 1.6;
  color: #c7d7f6;
  font-size: 14px;
}

.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #dbeafe;
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(14, 116, 144, 0.2);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  column-gap: 34px;
  row-gap: 12px;
  align-items: start;
  align-self: center;
  justify-self: center;
  width: min(100%, 620px);
}

.footer__col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__heading {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93c5fd;
}

.footer__col a,
.footer__location {
  font-size: 14px;
  font-weight: 600;
  color: #dbe7ff;
  opacity: 0.92;
}

.footer__col a:hover {
  color: #ffffff;
  opacity: 1;
}
/* height of footer */

.brand__img--footer {
  height: 44px;
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: #a5b8de;
}

.footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 12px;
  color: #b5c7e7;
}

.footer__legal a:hover {
  color: #ffffff;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
  }

  .hero__visual {
    min-height: 420px;
  }

 

  .launch__grid {
    grid-template-columns: 1fr;
  }

  .about__audiences {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .about__audiences::before {
    display: none;
  }

  .about__card {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  }

  .about__card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about__strategy {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .voice-flow {
    grid-template-columns: 1fr;
  }

  .voice-visual {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .voice-visual__connector {
    width: 2px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(11, 107, 214, 0.25), rgba(11, 107, 214, 0.7));
  }

  .voice-visual__connector::after {
    right: -4px;
    top: auto;
    bottom: -1px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(11, 107, 214, 0.7);
    border-bottom: none;
  }

  .solutions__intro {
    padding: 24px 22px;
  }

  .launch__panel {
    min-height: 460px;
  }

  .launch__card--top,
  .launch__card--bottom {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .demo {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 0;
  }

  .header {
    position: relative;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  }

  .header__inner {
    display: flex;
    height: auto;
    min-height: 72px;
    padding: 10px 0;
    gap: 10px;
  }

  .brand {
    max-width: calc(100% - 126px);
  }

  .brand__img {
    height: 34px;
    width: auto;
  }

  .mobile-header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #f8fafc;
  }

  .mobile-header-call__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 40;
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.14);
    margin-left: 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 18px;
    gap: 12px;
    z-index: 35;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .nav__phone {
    display: none;
  }

  .mobile-callbar {
    display: none;
  }

  .hero__phone {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer {
    background: radial-gradient(circle at 12% 18%, rgba(15, 23, 42, 0.95) 0%, rgba(10, 44, 88, 0.92) 34%, rgba(20, 99, 165, 0.9) 66%, rgba(255, 122, 24, 0.55) 100%);
  }

  .footer::before {
    height: 12px;
    background: linear-gradient(
      180deg,
      rgba(191, 219, 254, 0.22),
      rgba(191, 219, 254, 0.08) 48%,
      rgba(191, 219, 254, 0)
    );
  }

  #solutions h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .solutions__highlight {
    font-size: 14px;
    padding: 7px 12px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: max-content 1fr;
  }

  .phone-field__country,
  .phone-field__number {
    min-width: 0;
  }

  .phone-field__country {
    width: auto;
    min-width: 92px;
  }

  .phone-field__country {
    font-size: 13px;
    padding-right: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form {
    overflow: hidden;
    padding: 14px;
  }

  .footer__inner {
    padding: 16px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .widget {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}
.price-card__desc {
  margin: 10px 0 18px;
  color: var(--muted);
}
/* =========================
   Live Chat overlay inside hero mock
========================= */

.mock {
  position: relative; /* required for absolute overlay */
}

/* Chat overlay panel */
.mock__chat {
  position: absolute;
  width: 320px;
  height: 640px;
  inset: 70px 18px 18px 18px; /* leaves space for badge/wave */
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.15);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  z-index: 2;
}
.mock__chat {
  width: 320px;
  height: 500px;
  border-radius: 42px;
}

/* top mini header */
.chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.chat__pill {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.10);
}

.chat__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff3b30;
  box-shadow: 0 0 0 6px rgba(255, 59, 48, 0.22);
  animation: chatPulse 1.2s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.7; }
}

/* message stream */
.chat__stream {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

/* bubble base */
.chat__msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  animation: chatIn 0.35s ease forwards;
}

@keyframes chatIn {
  to { opacity: 1; transform: translateY(0); }
}

/* AI/clinic (dark bubble like your reference) */
.chat__msg--ai {
  align-self: flex-start;
  background: rgba(0,0,0,0.78);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

/* Patient (light bubble) */
.chat__msg--user {
  align-self: flex-end;
  background: rgba(255,255,255,0.55);
  color: rgba(15,23,42,0.90);
  border: 1px solid rgba(255,255,255,0.22);
}

/* typing indicator */
.chat__typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 0;
  transform: translateY(8px);
  animation: chatIn 0.35s ease forwards;
}

.chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  animation: dotBounce 0.9s ease-in-out infinite;
}

.chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.chat__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* fake message input row */
.chat__composer {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}

.chat__placeholder {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

.chat__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.22);
  color: rgba(15,23,42,0.85);
  font-weight: 900;
  cursor: default;
}
/* =========================
   MOBILE FIX: stop phone mock overlapping
========================= */
@media (max-width: 980px) {
  /* Stack hero into 1 column */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    min-height: auto;          /* don't force tall centering */
    padding-top: 24px;         /* reduce top gap */
    padding-bottom: 24px;
  }

  /* Make sure the right side is a normal block (not absolute) */
  .hero__visual {
    min-height: auto;
    position: relative;
  }

  /* Your chat/phone container — IMPORTANT: remove any absolute offsets */
  .mock__chat,
  .mock {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;

    margin: 16px auto 0;       /* center it */
    width: min(360px, 92vw);   /* responsive phone width */
    height: 520px;             /* adjust as you like */
    max-height: 70vh;          /* prevents it from covering next section */
  }
}

/* Even smaller phones */
@media (max-width: 480px) {
  .mock__chat,
  .mock {
    width: 92vw;
    height: 500px;
    max-height: 68vh;
  }
}
/* ==============================
   Temporary Site Update Banner
============================== */

.site-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20000;
  background: linear-gradient(
    90deg,
    #0f4c81 0%,
    #1463a5 60%,
    #ff7a18 140%
  );
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 2.2;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.site-banner__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-banner__text {
  flex: 1;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.site-banner__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.site-banner__close:hover {
  background: rgba(255,255,255,0.35);
}

/* Push page down so nothing hides under banner */
/* body {
  padding-top: 60px;
} */

@media (max-width: 768px) {
  body { padding-top: 0; }

  .site-banner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 25;
    padding: 10px 12px;
  }

  .site-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 10px;
  }

  .site-banner__text {
    text-align: left;
    font-size: 13px;
    line-height: 1.35;
  }

  .site-banner__close {
    position: static;
    transform: none;
    align-self: start;
    margin-top: 1px;
    padding: 4px 10px;
  }

  .header {
    position: relative;
    top: 0;
  }

  .mobile-callbar {
    display: none;
  }

  .mobile-header-call,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 480px) {
  .header { top: 0; }
}

.hero__visual{
  position: relative;
  min-height: 520px;
}
.mock{
  position: relative;
  background: linear-gradient(135deg, rgba(11,107,214,0.10), rgba(255,255,255,0.55));
  border-radius: 28px;
  height: 520px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}
.mock img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating bits */
.mock__floating{
  position: absolute;
}
.mock__floating--1{
  left: 22px;
  top: 220px;
  width: 260px;
}
.bubble{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  padding: 14px 14px;
  font-size: 13px;
  color: #334155;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}
.bubble__title{
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.mock__floating--2{
  right: 24px;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(11,107,214,0.18);
  border: 1px solid rgba(15,23,42,0.10);
}
.chip{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.10);
}

/* =========================
   Hero Journey Visual
========================= */
.hero-journey {
  min-height: 520px;
}

.journey-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 14px;
  align-content: start;
  width: min(560px, 100%);
  min-height: 650px;
  margin-left: auto;
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(130% 90% at 12% 10%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%),
    linear-gradient(145deg, rgba(7, 76, 154, 0.68), rgba(41, 115, 193, 0.54) 45%, rgba(231, 243, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.journey-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(219, 14, 3, 0.36), rgba(219, 14, 3, 0));
  pointer-events: none;
}

.journey-card,
.journey-node,
.journey-reminder,
.journey-metric {
  position: relative;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  padding: 0;
}

.journey-card--call {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  padding: 16px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
}

.journey-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.journey-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(219, 14, 3, 0.28);
  color: #fee2e2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-status {
  font-size: 12px;
  font-weight: 700;
  color: #bfdbfe;
}

.journey-card__title {
  margin: 0 0 12px;
  line-height: 1.45;
  font-size: 14px;
  font-weight: 600;
}

.journey-transcript {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(30, 41, 59, 0.48));
}

.journey-transcript__label {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.2);
}

.journey-transcript p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #dbeafe;
}

.journey-transcript p + p {
  margin-top: 5px;
}

.journey-transcript__speaker {
  font-weight: 800;
  color: #93c5fd;
}

.journey-transcript__speaker--ai {
  color: #86efac;
}

.journey-wave {
  height: 32px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.journey-wave span {
  width: 6px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd3fc, #3b82f6);
  animation: journeyWave 1.1s ease-in-out infinite;
}

.journey-wave span:nth-child(2n) {
  animation-delay: 0.15s;
}

.journey-wave span:nth-child(3n) {
  animation-delay: 0.3s;
}

@keyframes journeyWave {
  0%, 100% { height: 8px; opacity: 0.7; }
  50% { height: 26px; opacity: 1; }
}

.journey-node--ai {
  grid-column: 1 / 6;
  grid-row: 3;
  min-height: 120px;
  padding: 14px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.journey-node__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 5px;
}

.journey-node__title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.journey-node__text {
  margin: 3px 0 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
}

.journey-card--booking {
  grid-column: 1 / -1;
  grid-row: 3;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.journey-booking-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.journey-card__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2563eb;
}

.journey-card--booking h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.15;
  color: #0f172a;
}

.journey-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
  color: #334155;
  font-size: 12px;
}

.journey-transcript--booking {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.74));
}

.journey-transcript__player {
  margin-top: 2px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

.journey-transcript__wave {
  height: 8px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(226, 232, 240, 0.9) 0 2px,
      transparent 2px 4px
    );
  opacity: 0.92;
}

.journey-transcript__time {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.journey-transcript__rec {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.journey-transcript__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.journey-icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #4f6cf5;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 8px 18px rgba(79, 108, 245, 0.34);
}

.journey-icon-btn__svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-risk-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(146, 64, 14, 0.26);
  color: #ffedd5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.journey-risk-chip__icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.journey-risk-chip__svg {
  width: 11px;
  height: 11px;
}

.journey-risk-chip__svg path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-risk-chip__svg circle {
  fill: #ffffff;
}

.journey-reminder {
  grid-column: 1 / 11;
  grid-row: 4;
  margin-top: 2px;
  padding: 12px;
  background: rgba(219, 234, 254, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.24);
  font-size: 12px;
  line-height: 1.45;
  color: #1e3a8a;
}

.journey-reminder strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  color: #1d4ed8;
}

.journey-metric {
  grid-column: 6 / -1;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
}

.journey-metric__value {
  font-size: 20px;
  font-weight: 900;
  color: #93c5fd;
}

.journey-metric__text {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

@media (max-width: 1100px) {
  .journey-panel {
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .hero-journey {
    min-height: auto;
  }

  .journey-panel {
    min-height: 760px;
    gap: 12px;
  }

  .journey-card--call,
  .journey-card--booking,
  .journey-reminder {
    grid-column: 1 / -1;
  }

  .journey-card--call { grid-row: 2; }
  .journey-card--booking { grid-row: 3; }
  .journey-reminder { grid-row: 4; }

  .journey-metric {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: start;
  }

  .journey-booking-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .journey-panel {
    padding: 14px;
    min-height: 760px;
  }

  .journey-metric {
    justify-self: stretch;
    width: 100%;
  }

  .journey-card--call,
  .journey-card--booking,
  .journey-reminder {
    grid-column: 1 / -1;
  }
}

/* =========================
  Timeline
========================= */

.solution-timeline {
  background: radial-gradient(
    circle at 20% 20%,
    rgba(11, 107, 214, 0.06),
    transparent 40%
  ),
  radial-gradient(
    circle at 80% 60%,
    rgba(219, 14, 3, 0.06),
    transparent 40%
  ),
  #f8fbff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.solution-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

#solutions .solution-head h2 {
  margin-left: auto;
  margin-right: auto;
}

#solutions .solution-head .section__lead {
  margin-left: auto;
  margin-right: auto;
}


/* Timeline wrapper */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px; /* reduced spacing */
  padding-left: 70px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    #db0e03,
    #0b6bd6
  );
  border-radius: 999px;
  opacity: 0.35;
}

/* Step container */
.timeline-item {
  position: relative;
}

/* Number circle */
.timeline-marker {
  position: absolute;
  left: -70px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #db0e03,
    #ff5e57
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(219, 14, 3, 0.35);
}

/* Card */
.timeline-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

/* Left accent bar */
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;

  top: 28px;               /* starts at center of first circle */
  bottom: 28px;            /* ends at center of last circle */

  width: 3px;
  background: linear-gradient(
    180deg,
    #db0e03,
    #0b6bd6
  );
  border-radius: 999px;
  opacity: 0.35;
}

/* Hover pop */
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

/* Tag */
.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(11,107,214,0.15),
    rgba(11,107,214,0.05)
  );
  color: #0b6bd6;
  margin-bottom: 10px;
}

/* Headline */
.timeline-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

/* Paragraph */
.timeline-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Bullet list compact */
.timeline-card ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

.timeline-card li {
  font-size: 13px;
  color: #334155;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-marker {
  height: 56px;
}
