/* ═══════════════════════════════════════════
   ClinicPilot — Shared Styles
   Light theme, dark hero, gold accents
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light theme base */
  --bg-page: #fafafa;
  --bg-white: #ffffff;
  --bg-light: #f3f1ee;
  --bg-alt: #f7f5f2;

  /* Dark sections */
  --bg-dark: #0f1729;
  --bg-dark-card: #141d2f;
  --bg-dark-elevated: #1a2540;

  /* Gold accent system */
  --accent: #c9a96e;
  --accent-hover: #d4b87a;
  --accent-light: rgba(201, 169, 110, 0.1);
  --accent-border: rgba(201, 169, 110, 0.25);
  --accent-glow: 0 0 40px rgba(201, 169, 110, 0.12);
  --gradient-accent: linear-gradient(135deg, #c9a96e 0%, #d4a853 50%, #e8b4b8 100%);

  /* Text */
  --text-dark: #1a1a2e;
  --text-body: #3d3d50;
  --text-muted: #7a7a8e;
  --text-light: #f5f0eb;
  --text-light-muted: #a8a09a;

  /* Borders & shadows */
  --border: #e8e6e3;
  --border-light: #f0eeeb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  /* Fonts */
  --font-display: "Rubik", sans-serif;
  --font-body: "Heebo", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 6rem 2rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* ─── BUTTONS ─── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-body);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Dark variant */
.dark-section .btn-secondary {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-section .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── NAV ─── */

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* When nav is over dark hero */
.nav.on-dark {
  background: transparent;
}

.nav.on-dark.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* On dark hero, nav links should be light */
.nav.on-dark:not(.scrolled) .nav-links a {
  color: var(--text-light-muted);
}

.nav.on-dark:not(.scrolled) .nav-links a:hover {
  color: var(--text-light);
}

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--bg-dark) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* Active nav link */
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.on-dark:not(.scrolled) .mobile-toggle span {
  background: var(--text-light);
}

.mobile-toggle span:nth-child(1) { top: 13px; }
.mobile-toggle span:nth-child(2) { top: 21px; }
.mobile-toggle span:nth-child(3) { top: 29px; }

.mobile-toggle.open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ─── DARK SECTION BASE ─── */

.dark-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: var(--text-light);
}

.dark-section .section-subtitle {
  color: var(--text-light-muted);
}

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 60%);
  animation: hero-pulse 8s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 60%);
  animation: hero-pulse 10s ease-in-out infinite reverse;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual — activity feed */
.activity-feed {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.activity-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-feed-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.activity-feed-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.activity-feed-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.activity-feed-status-text {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 500;
}

.activity-feed-body {
  padding: 0.75rem 1.25rem 1.25rem;
}

.activity-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg-dark-elevated);
  border-radius: var(--radius-sm);
  animation: slide-in 0.4s ease-out;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.activity-icon.booking { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.activity-icon.lead { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.activity-icon.reminder { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.activity-icon.review { background: rgba(244, 114, 182, 0.15); color: #f472b6; }
.activity-icon.payment { background: rgba(34, 211, 238, 0.15); color: #22d3ee; }

.activity-text {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.activity-text strong {
  color: var(--text-light);
}

.activity-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

/* ─── LIGHT SECTIONS ─── */

.light-section {
  padding: var(--section-padding);
}

.alt-section {
  background: var(--bg-alt);
}

/* ─── PAIN POINTS ─── */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.pain-hebrew {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pain-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.pain-solution {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

/* ─── HOW IT WORKS (4 LAYERS) ─── */

.layers-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.layer-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.layer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.layer-number {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.layer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.layer-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.layer-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.layer-items li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-right: 1rem;
  position: relative;
}

.layer-items li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.layer-result {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.75rem;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ─── PRODUCTS PREVIEW ─── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-link:hover {
  gap: 0.6rem;
}

/* ─── CALCULATOR ─── */

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.calc-value-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  direction: ltr;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-result-block {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.calc-result-current {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.calc-result-projected {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--accent-border);
}

.calc-result-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.calc-result-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
}

.calc-result-projected-rev {
  color: var(--accent) !important;
  font-size: 1.1rem;
}

.calc-info-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-info-trigger {
  position: relative;
  cursor: help;
}

.calc-info-trigger svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.calc-info-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  font-size: 0.8rem;
  color: var(--text-body);
}

.calc-info-trigger:hover .calc-info-tooltip {
  display: block;
}

.calc-info-tooltip h4 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.calc-info-tooltip ul {
  padding-right: 1rem;
  margin-top: 0.5rem;
}

.calc-info-tooltip li {
  margin-bottom: 0.25rem;
}

.calc-arrow {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}

.calc-gap {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.calc-gap-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 0.3rem;
}

.calc-gap-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-gap-annual {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-top: 0.15rem;
}

.calc-gap-annual span {
  font-weight: 700;
  color: var(--text-light);
}

.calc-roi-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-roi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.calc-roi-label {
  font-size: 0.7rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
}

.calc-roi-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
}

.calc-roi-highlight {
  color: #4ade80 !important;
  font-size: 1.1rem;
}

.calc-roi-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.calc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

/* ─── WHO THIS IS FOR ─── */

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.clinic-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clinic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.clinic-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.clinic-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.clinic-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ─── INTEGRATIONS ─── */

.integrations-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.integration-logo {
  height: 28px;
  opacity: 0.45;
  transition: opacity 0.2s;
  filter: grayscale(100%);
}

.integration-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ─── PROCESS ─── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin: 0 auto 1rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.process-step-time {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FOUNDER ─── */

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 3px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.founder-stats {
  display: flex;
  gap: 2rem;
}

.founder-stat {
  display: flex;
  flex-direction: column;
}

.founder-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}

.founder-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── PRICING ─── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.pricing-price {
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--text-dark);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-anchor {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  font-size: 0.87rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-role-header {
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-top: 0.5rem;
  font-size: 0.85rem !important;
}

.pricing-guarantee-inline {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  padding: 0.75rem;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 1.25rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-cta.primary {
  background: var(--gradient-accent);
  color: var(--bg-dark);
}

.pricing-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.pricing-cta.secondary {
  background: var(--bg-alt);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.pricing-cta.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-adspend {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.pricing-credential {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 0.25rem;
}

.pricing-upgrade-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.pricing-guarantee {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.pricing-spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-spots .dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: status-blink 2s ease-in-out infinite;
}

/* ─── SCHEDULER ─── */

.scheduler-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.scheduler-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.scheduler-benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.scheduler-benefit-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.scheduler-benefit p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.scheduler-benefit strong {
  color: var(--text-dark);
}

.scheduler-embed {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ─── FAQ ─── */

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ─── FINAL CTA ─── */

.final-cta-section {
  padding: 5rem 2rem;
  background: var(--bg-dark);
  text-align: center;
}

.final-cta-section h2 {
  color: var(--text-light);
}

.final-cta-section .section-subtitle {
  color: var(--text-light-muted);
  margin: 0.75rem auto 2rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-buttons .btn-secondary {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta-buttons .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.final-urgency {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-top: 1.25rem;
}

.final-urgency span {
  color: var(--accent);
  font-weight: 600;
}

/* ─── FOOTER ─── */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 2rem 2rem;
  color: var(--text-light-muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ─── WHATSAPP WIDGET ─── */

.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
}

.wa-widget-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--text-body);
  box-shadow: var(--shadow-lg);
  width: 220px;
  line-height: 1.5;
  animation: tooltip-bounce 0.4s ease-out;
}

@keyframes tooltip-bounce {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-widget-tooltip.hidden {
  display: none;
}

.wa-widget-close {
  position: absolute;
  top: 4px;
  left: 8px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
}

.wa-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-widget-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ─── SCROLL PROGRESS ─── */

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 1001;
  width: 0;
  transition: width 0.1s;
}

/* ─── REVEAL ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── BONUSES ─── */

.pricing-bonuses {
  margin-top: 3rem;
  text-align: center;
}

.pricing-bonuses-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.pricing-bonuses-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pricing-bonus-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.pricing-bonus-icon {
  margin-bottom: 0.75rem;
}

.pricing-bonus-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.pricing-bonus-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-bonus-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pricing-bonus-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .layers-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .calc-container {
    grid-template-columns: 1fr;
  }

  .scheduler-content {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .founder-photo {
    margin: 0 auto;
  }

  .founder-stats {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .clinics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-bonuses-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.25rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-body);
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--bg-alt);
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 7rem 1.25rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .layers-container {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .clinics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .calc-container {
    padding: 1.5rem;
  }

  .founder-card {
    padding: 2rem 1.5rem;
  }
}
