/* ===== VARIABLES — GRO Brand ===== */
:root {
  --color-primary: #2E6A77;
  --color-primary-dark: #133034;
  --color-primary-light: #3A8A99;
  --color-mint: #ABE7E5;
  --color-mint-light: #D5F5F4;
  --color-purple: #6365B8;
  --color-purple-light: #8E99E8;
  --color-coral: #FFAB88;
  --color-salmon: #FDA7A7;

  --color-white: #FFFFFF;
  --color-bg: #F6FAFA;
  --color-bg-alt: #F0F8F8;
  --color-surface: #FFFFFF;
  --color-surface-hover: #F0F8F8;
  --color-border: #D5E8E8;
  --color-border-light: #E8F2F2;

  --color-text: #133034;
  --color-text-secondary: #4A6E74;
  --color-text-tertiary: #7A9A9F;

  --gradient-primary: linear-gradient(135deg, #133034 0%, #2E6A77 50%, #ABE7E5 100%);
  --gradient-accent: linear-gradient(135deg, #6365B8 0%, #8E99E8 50%, #ABE7E5 100%);
  --gradient-warm: linear-gradient(135deg, #FFAB88 0%, #FDA7A7 100%);
  --gradient-hero: linear-gradient(170deg, #0D2426 0%, #133034 30%, #1A4A52 60%, #2E6A77 100%);
  --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F6FAFA 100%);

  --shadow-sm: 0 1px 3px rgba(19, 48, 52, 0.06);
  --shadow-md: 0 4px 20px rgba(19, 48, 52, 0.08);
  --shadow-lg: 0 8px 40px rgba(19, 48, 52, 0.1);
  --shadow-xl: 0 16px 64px rgba(19, 48, 52, 0.12);
  --shadow-glow: 0 0 60px rgba(171, 231, 229, 0.2);
  --shadow-glow-purple: 0 0 60px rgba(99, 101, 184, 0.15);

  --font-sans: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Onest', 'Inter', -apple-system, sans-serif;

  --section-padding: 120px;
  --container-max: 1200px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* Animations handled via inline styles in script.js for reliability */

/* Stagger is applied via JS only for hero children */

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION DEFAULTS ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
  margin-bottom: 32px;
  padding: 10px 24px;
  background: var(--color-coral);
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(255, 171, 136, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(19, 48, 52, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(19, 48, 52, 0.35);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-hover);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 44px; font-size: 1.05rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease-out);
  background: #FFFFFF;
  border-bottom: 1px solid rgba(19, 48, 52, 0.06);
}
.nav.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(19, 48, 52, 0.08); }

.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center; gap: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.88rem; font-weight: 600; color: var(--color-text-secondary); transition: color 0.3s; }
.nav-links a:hover { color: var(--color-primary-dark); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(19, 48, 52, 0.2);
  transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--color-primary) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); transition: all 0.3s; border-radius: 2px; }

/* ===== HERO — LIGHT WITH HEX PATTERN ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #EEF6F6 0%, #F4FAFA 40%, #F8FCFC 100%);
  overflow: hidden;
  color: var(--color-text);
}

/* Hero background elements */
.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Hide old elements */
.hero-orb { display: none; }
.hero-particles { display: none; }
.hero-particle { display: none; }
.hero-circuit { display: none; }
.hero-bg-image { display: none; }

/* Hexagonal wireframe pattern — fills the hero */
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-grid {
  mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 85%);
}

.hero-grid svg {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--color-coral);
  border: none;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(255, 171, 136, 0.3);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-primary-dark);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(19, 48, 52, 0.3);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero .btn-primary { background: var(--color-purple); color: var(--color-white); box-shadow: 0 4px 20px rgba(99, 101, 184, 0.3); }
.hero .btn-primary:hover { background: var(--color-purple-light); box-shadow: 0 8px 30px rgba(99, 101, 184, 0.35); }
.hero .btn-secondary { background: var(--color-white); color: var(--color-text); border-color: var(--color-border); }
.hero .btn-secondary:hover { border-color: var(--color-primary); background: var(--color-surface-hover); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 28px 48px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin: 0 auto;
}

/* "5 AI Practice Staff" headline row */
.hero-stat-headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.hero-stat-big-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  line-height: 1;
}

.hero-stat-big-label {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Smaller stats row below */
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat-number {
  font-size: 1.3rem; font-weight: 800; color: var(--color-primary-dark);
}
.hero-stat-label {
  font-size: 0.65rem; color: var(--color-text-tertiary); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-stat-divider { width: 1px; height: 32px; background: var(--color-border); }

/* ===== HERO DOCTOR IMAGE ===== */
.hero-image-section {
  padding: 0;
  background: var(--color-white);
}

.hero-image-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ===== HERO PARTNERS (inside hero) ===== */
.hero-partners {
  text-align: center;
  margin-top: 80px;
}
.hero-partners-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero-partners-title strong {
  font-weight: 900;
  color: var(--color-text);
}
.hero-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: nowrap;
}
.hero-partners-logos img {
  height: 40px !important;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}
.hero-partners-logos img:hover {
  filter: grayscale(0%) opacity(1);
}
.hero-partner-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text);
  opacity: 0.45;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
  line-height: 40px;
}
.hero-partner-text:hover {
  opacity: 1;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 80px 0 40px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(171, 231, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }

.problem-card {
  padding: 32px 24px;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 1;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.problem-card:hover::after { opacity: 1; }

.problem-card-icon { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--color-primary); }
.problem-card-icon svg { width: 100%; height: 100%; }

.problem-stat {
  font-size: 2rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.problem-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.problem-card p { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.6; }

.problem-bottom { text-align: center; }
.problem-highlight {
  display: inline-block; padding: 20px 36px;
  background: linear-gradient(135deg, rgba(19, 48, 52, 0.03) 0%, rgba(171, 231, 229, 0.06) 100%);
  border: 1px solid rgba(46, 106, 119, 0.12);
  border-radius: var(--radius-md);
  font-size: 1.05rem;
}
.problem-highlight strong { color: var(--color-primary); }

/* ===== BOLD STATEMENT ===== */
.statement-section {
  padding: 80px 0 48px;
  background: var(--color-white);
  text-align: center;
}

.statement-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}

.solution .section-label {
  margin-bottom: 48px;
}

.solution .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.solution-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== AGENTS SECTION ===== */
.solution {
  padding: 40px 0 var(--section-padding);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 15%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99, 101, 184, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.agents-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 36px; }

.agent-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.agent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  opacity: 0; transition: opacity 0.3s;
}
.agent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.agent-card:hover::before { opacity: 1; }

.agent-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #F6FAFA 0%, #F0F4FF 100%);
  border-color: rgba(46, 106, 119, 0.15);
}
.agent-card-featured::before { opacity: 1; height: 4px; }

/* Agent card image banner — top of card, shorter height */
.agent-card-image {
  overflow: hidden;
  height: 180px;
  border-radius: 0;
  flex-shrink: 0;
  width: 100%;
}
.agent-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.agent-card .agent-name,
.agent-card .agent-tagline,
.agent-card .agent-features,
.agent-card .agent-highlight {
  padding-left: 24px;
  padding-right: 24px;
}

.agent-card .agent-tagline {
  text-align: center;
}

.agent-card .agent-features {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.agent-card .agent-name {
  padding-top: 36px;
}

.agent-card .agent-features {
  margin-bottom: 36px;
}

.agent-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.agent-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); padding: 10px;
}
.agent-icon svg { width: 100%; height: 100%; }

.agent-icon-receptionist { background: rgba(46, 106, 119, 0.08); color: var(--color-primary); }
.agent-icon-engagement { background: rgba(255, 171, 136, 0.12); color: var(--color-coral); }
.agent-icon-intake { background: rgba(142, 153, 232, 0.1); color: var(--color-purple-light); }
.agent-icon-aftercare { background: rgba(253, 167, 167, 0.12); color: var(--color-salmon); }
.agent-icon-emr { background: rgba(99, 101, 184, 0.08); color: var(--color-purple); }

.agent-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-tertiary); }

.agent-badge {
  margin-left: auto; padding: 4px 12px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
}

.agent-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; text-transform: uppercase; }
.agent-tagline { font-size: 0.92rem; color: var(--color-text-secondary); margin-bottom: 18px; font-style: italic; }

.agent-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex-grow: 1; }
.agent-features li {
  font-size: 0.88rem; color: var(--color-text-secondary); padding-left: 22px;
  position: relative; line-height: 1.5;
}
.agent-features li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-accent);
}

.agent-replaces { display: flex; align-items: center; gap: 8px; padding-top: 18px; border-top: 1px solid var(--color-border-light); font-size: 0.83rem; }
.agent-replaces-label { color: var(--color-text-tertiary); font-weight: 600; }
.agent-replaces span:last-child { font-weight: 700; color: var(--color-primary); }

.agent-highlight {
  margin-top: auto;
  width: 100%;
  padding: 22px 18px 22px;
  background: linear-gradient(135deg, rgba(171, 231, 229, 0.12) 0%, rgba(46, 106, 119, 0.08) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.agent-highlight-text {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  line-height: 1.3;
}

.agent-demo-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-purple);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 2px 12px rgba(99, 101, 184, 0.25);
  flex-shrink: 0;
}

.agent-demo-btn svg {
  width: 14px;
  height: 14px;
}

.agent-demo-btn:hover {
  background: var(--color-purple-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 101, 184, 0.35);
}

/* Subtle pulse on the play icon */
.agent-demo-btn svg {
  animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 48, 52, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-out);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  z-index: 2;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-modal-close svg {
  width: 18px;
  height: 18px;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.video-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.video-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.video-placeholder p {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== PERSONAL INTELLIGENCE ===== */
.personal-intelligence {
  padding: 100px 0;
  background: var(--color-bg);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.pi-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.pi-header .section-label {
  color: var(--color-primary-dark);
  background: rgba(46, 106, 119, 0.08);
  border-color: rgba(46, 106, 119, 0.15);
}

.pi-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.pi-subtitle {
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.pi-graphic {
  margin: 0 auto 60px;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pi-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

.pi-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pi-feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-top: 5px solid var(--color-purple);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pi-feature:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-purple);
  border-top-color: var(--color-purple);
  transform: translateY(-4px);
}

.pi-feature:nth-child(1) { border-top-color: var(--color-purple); }
.pi-feature:nth-child(2) { border-top-color: var(--color-coral); }
.pi-feature:nth-child(3) { border-top-color: var(--color-primary); }

.pi-feature:nth-child(1) .pi-feature-icon { color: var(--color-purple); background: rgba(99, 101, 184, 0.08); }
.pi-feature:nth-child(2) .pi-feature-icon { color: var(--color-coral); background: rgba(255, 171, 136, 0.1); }
.pi-feature:nth-child(3) .pi-feature-icon { color: var(--color-primary); background: rgba(46, 106, 119, 0.08); }

.pi-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--color-primary);
  background: rgba(46, 106, 119, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}

.pi-feature-icon svg {
  width: 100%;
  height: 100%;
}

.pi-feature h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-text);
  text-transform: uppercase;
}

.pi-feature p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pi-features { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== JOURNEY ===== */
.journey {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}
.journey .section-title { line-height: 1.5; }

/* New journey flow */
.journey-flow-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(19, 48, 52, 0.02) 0%, rgba(171, 231, 229, 0.06) 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
}

.journey-step-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 110px;
}

.journey-step-icon-new {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 106, 119, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  padding: 13px;
}

.journey-step-icon-new svg { width: 100%; height: 100%; }

.journey-step-desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  order: 1;
}

.journey-agent-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
  padding: 5px 14px;
  background: rgba(46, 106, 119, 0.08);
  border-radius: 100px;
  order: 2;
}

.journey-step-icon-new {
  order: 0;
}

/* Highlight the last step (AI Intelligence) */
.journey-step-highlight .journey-step-icon-new {
  background: rgba(99, 101, 184, 0.1);
  color: var(--color-purple);
}

.journey-step-highlight .journey-agent-name {
  background: var(--color-purple);
  color: var(--color-white);
}

.journey-arrow-new {
  width: 20px;
  height: 20px;
  color: var(--color-text-tertiary);
  flex-shrink: 0;
}

.journey-arrow-new svg { width: 100%; height: 100%; }

/* Old journey styles kept for reference */
.journey-flow { display: none; }
.journey-step { display: none; }
.journey-arrow { display: none; }

/* ===== ROI ===== */
.roi .section-subtitle {
  font-size: clamp(1.2rem, 2.3vw, 1.45rem);
  font-weight: 500;
}

.roi {
  padding: var(--section-padding) 0 80px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.roi::after {
  content: '';
  position: absolute; top: 50%; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 171, 136, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.roi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }

.roi-card {
  padding: 28px; background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}
.roi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.roi-card-header { margin-bottom: 18px; }
.roi-metric-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-tertiary); }

.roi-comparison { display: flex; align-items: center; gap: 20px; }
.roi-before, .roi-after { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.roi-before-label, .roi-after-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.roi-before-label { color: var(--color-text-tertiary); }
.roi-after-label { color: var(--color-primary); }
.roi-before-value { font-size: 1.8rem; font-weight: 800; color: var(--color-text-tertiary); line-height: 1.2; }
.roi-after-value { font-size: 1.8rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.roi-before-desc, .roi-after-desc { font-size: 0.8rem; color: var(--color-text-secondary); }

.roi-arrow-container { width: 28px; height: 28px; flex-shrink: 0; color: var(--color-primary); }
.roi-arrow-container svg { width: 100%; height: 100%; }

.roi-highlight { text-align: center; }
.roi-highlight-content {
  display: inline-block; padding: 28px 48px;
  background: var(--color-white);
  border: 2px solid rgba(46, 106, 119, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}
.roi-highlight-content p { font-size: 1.1rem; }
.roi-highlight-content strong { color: var(--color-primary); }

/* New ROI Cards */
.roi-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.roi-card-new {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roi-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.roi-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-number-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.roi-desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .roi-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .roi-grid-new { grid-template-columns: 1fr; }
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: var(--section-padding) 0; background: var(--color-white); }
.how-it-works .section-subtitle { font-size: clamp(1.2rem, 2.3vw, 1.45rem); font-weight: 500; }

.steps-grid { display: flex; align-items: flex-start; gap: 0; max-width: 960px; margin: 0 auto; }
.step-card { flex: 1; padding: 40px 28px; text-align: center; }

.step-number {
  font-size: 3.5rem; font-weight: 800; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.step-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; }
.step-card p { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.7; }
.step-connector { width: 60px; height: 2px; background: var(--color-border); margin-top: 65px; flex-shrink: 0; }

/* ===== VISION ===== */
.vision {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #E8F5F4 100%);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(46, 106, 119, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.vision-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.vision-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 32px; text-transform: uppercase; }
.vision-text { font-size: 1.05rem; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 20px; }
.vision-text-highlight { font-weight: 700; color: var(--color-text); font-size: 1.1rem; }

/* ===== TRUST ===== */
.trust { padding: var(--section-padding) 0; background: var(--color-white); }
.trust .section-subtitle { font-size: clamp(1.2rem, 2.3vw, 1.45rem); font-weight: 500; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); transition: all 0.3s var(--ease-out); }
.trust-item:hover { background: var(--color-surface-hover); }
.trust-icon {
  width: 52px; height: 52px; margin: 0 auto 14px; color: var(--color-primary);
  background: rgba(171, 231, 229, 0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 13px;
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-item h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.trust-item p { font-size: 0.85rem; color: var(--color-text-secondary); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { padding: var(--section-padding) 0; background: var(--color-bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--color-white); border: 1px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s var(--ease-out); }
.faq-item:hover { border-color: var(--color-primary); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; font-size: 0.95rem; font-weight: 700; color: var(--color-text); text-align: left; transition: color 0.3s; }
.faq-question:hover { color: var(--color-primary); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s var(--ease-out); color: var(--color-text-tertiary); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--color-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--color-text-secondary); line-height: 1.7; }

/* ===== CTA ===== */
.cta-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #F5D5C8 0%, #F0C4B8 15%, #E8C8D8 35%, #D8C4E0 55%, #C8C8E8 75%, #B8C0E8 100%);
  position: relative;
  overflow: hidden;
  color: var(--color-primary-dark);
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content { position: relative; text-align: center; max-width: 1000px; margin: 0 auto; }
.cta-content .section-label { color: var(--color-purple); background: rgba(99, 101, 184, 0.1); border-color: rgba(99, 101, 184, 0.2); }

.cta-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.4; margin-bottom: 20px; text-transform: uppercase;
  color: var(--color-primary-dark);
}
.cta-title .text-gradient {
  background: linear-gradient(135deg, #6365B8 0%, #8E99E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle { font-size: clamp(1.2rem, 2.3vw, 1.45rem); font-weight: 500; color: rgba(19, 48, 52, 0.6); margin-bottom: 40px; line-height: 1.5; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-section .btn-primary { background: var(--color-purple); color: var(--color-white); box-shadow: 0 4px 20px rgba(99, 101, 184, 0.3); }
.cta-section .btn-primary:hover { background: #5254a8; box-shadow: 0 8px 30px rgba(99, 101, 184, 0.4); }
.cta-section .btn-secondary { color: var(--color-primary-dark); border-color: rgba(19, 48, 52, 0.2); background: rgba(255, 255, 255, 0.4); }
.cta-section .btn-secondary:hover { border-color: var(--color-purple); background: rgba(255, 255, 255, 0.6); }
.cta-reassurance { font-size: 0.83rem; color: rgba(19, 48, 52, 0.4); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 32px; background: linear-gradient(135deg, #D4A0A0 0%, #B8A0C8 30%, #9898C8 60%, #8088B8 100%); color: rgba(255,255,255,0.85); }
.footer-top { display: flex; justify-content: space-between; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 28px; width: auto; }
.footer-tagline { margin-top: 12px; font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 { color: var(--color-white); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; transition: color 0.3s; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-compliance { display: flex; gap: 10px; }
.compliance-badge { padding: 5px 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== HERO BACKGROUND IMAGE ===== */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

/* ===== IMMERSIVE FULL-WIDTH IMAGE ===== */
.immersive-image {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 0;
}
.immersive-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.immersive-image-overlay {
  position: absolute;
  inset: 0 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, transparent 40%, rgba(19, 48, 52, 0.15) 100%);
  pointer-events: none;
}

/* ===== SHOWCASE SPLIT SECTIONS (Apple-style) ===== */
.showcase-section {
  padding: 100px 0;
  background: var(--color-white);
  overflow: hidden;
}
.showcase-section:nth-of-type(even) {
  background: var(--color-bg);
}

.showcase-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
}

.showcase-reverse .showcase-split {
  grid-template-columns: 3fr 2fr;
  direction: rtl;
}
.showcase-reverse .showcase-split > * {
  direction: ltr;
}

.showcase-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.showcase-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 8px;
}
.showcase-text .section-title {
  margin-bottom: 20px;
}
.showcase-text .section-subtitle {
  max-width: 440px;
}

.showcase-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}
.showcase-features li {
  font-size: 1rem;
  color: var(--color-text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.showcase-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.showcase-image {
  position: relative;
  overflow: hidden;
}
.showcase-image img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

/* ===== SHOWCASE FULLWIDTH (Aftercare hero image) ===== */
.happy-patients-section {
  padding: 0 0 40px;
  background: var(--color-bg);
  text-align: center;
}
.happy-patients-image {
  max-width: 1100px;
  margin: 0 auto 24px;
}
.happy-patients-image img {
  width: 100%;
  height: auto;
  display: block;
}
.happy-patients-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.1vw, 3.6rem);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.tagline-line1 {
  color: var(--color-primary-dark);
}
.tagline-line2 {
  background: linear-gradient(135deg, #6365B8 0%, #8E99E8 40%, #ABE7E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--color-white); flex-direction: column;
    padding: 80px 32px 32px; gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.3s var(--ease-out);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .agent-card-featured { grid-column: span 1; }
  .roi-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0; }
  .hero-stats { padding: 24px; gap: 24px; }
  .hero-stat-divider { display: none; }
  .journey-flow { flex-direction: column; gap: 16px; padding: 32px 20px; }
  .journey-arrow { transform: rotate(90deg); }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-compliance { flex-wrap: wrap; justify-content: center; }
  .roi-comparison { flex-direction: column; gap: 12px; }
  .roi-arrow-container { transform: rotate(90deg); }
  .showcase-split { grid-template-columns: 1fr !important; gap: 24px; }
  .showcase-reverse .showcase-split { direction: ltr; }
  .showcase-section { padding: 48px 0; }
  .showcase-text { text-align: center !important; }
  .showcase-text .section-title,
  .showcase-text .section-subtitle,
  .showcase-text .showcase-label { text-align: center !important; }
  .showcase-text .showcase-bullets { text-align: left; }
  .showcase-image img { max-height: none !important; }
  .immersive-image img { height: 220px; }
  .showcase-fullwidth-inner img { height: 280px; }
  .showcase-fullwidth-overlay { padding: 24px; }

  /* Hero badge */
  .hero-badge { font-size: 0.65rem; padding: 8px 16px; }

  /* Hero partners */
  .hero-partners { margin-top: 48px; }
  .hero-partners-title { font-size: 1.2rem; }
  .hero-partners-logos { gap: 20px; flex-wrap: wrap !important; justify-content: center; }
  .hero-partners-logos img { height: 22px !important; }
  .hero-partner-text { font-size: 1.1rem !important; }

  /* Statement section */
  .statement-section { padding: 24px 0 12px; }
  .statement-title { font-size: 1.15rem; }

  /* Agent cards */
  .agents-grid { gap: 24px 20px; }

  /* Journey flow */
  .journey-flow-new { flex-direction: column; gap: 16px; padding: 32px 20px; }
  .journey-arrow-new { transform: rotate(90deg); }

  /* ROI cards */
  .roi-grid-new { grid-template-columns: 1fr 1fr; gap: 16px; }
  .roi-number { font-size: 2.5rem; }

  /* Personal Intelligence */
  .pi-features { grid-template-columns: 1fr !important; gap: 16px; }
  .pi-graphic { margin: 0 auto 40px; }

  /* Happy patients image */
  .happy-patients-image { max-width: 100%; }
  .happy-patients-tagline { font-size: 1.4rem !important; padding: 40px 0 60px; }

  /* Trust grid on mobile */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 20px 12px; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-compliance { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .compliance-badge { font-size: 0.6rem; padding: 4px 10px; }

  /* Vision section */
  .vision-content { max-width: 100%; }
  .vision-title { font-size: 1.8rem; }

  /* CTA section */
  .cta-title { font-size: 1.6rem !important; line-height: 1.3 !important; }
  .cta-subtitle { font-size: 1rem !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; }
  .roi-grid-new { grid-template-columns: 1fr; }
  .agents-grid { gap: 20px; }
  .hero-subtitle { font-size: 1rem !important; }
  .solution-subtitle { font-size: 1rem !important; }
}
