/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ============ TOKENS ============ */
:root {
  --primary: #1AAEEA;        /* logo cyan */
  --primary-dark: #0E7FB8;
  --primary-darker: #0A5985;
  --navy: #1B3A6B;            /* logo navy */
  --navy-dark: #122849;
  --accent: #FFB627;
  --bg: #FFFFFF;
  --bg-alt: #F4F9FD;
  --bg-card: #FFFFFF;
  --text: #1A2536;
  --text-muted: #5A6B82;
  --text-light: #8395AC;
  --border: #E2EBF3;
  --success: #10B981;
  --shadow-sm: 0 2px 8px rgba(20, 50, 100, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 50, 100, 0.10);
  --shadow-lg: 0 20px 60px rgba(20, 50, 100, 0.15);
  --shadow-xl: 0 30px 80px rgba(20, 50, 100, 0.20);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --grad-primary: linear-gradient(135deg, #1AAEEA 0%, #0E7FB8 100%);
  --grad-hero: linear-gradient(180deg, #F4F9FD 0%, #FFFFFF 100%);
  --grad-closing: linear-gradient(135deg, #1B3A6B 0%, #0E7FB8 100%);
}

/* ============ BASE ============ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}
.container-narrow { max-width: 880px; }

.section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.text-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(26, 174, 234, 0.10);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 174, 234, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(26, 174, 234, 0.45);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.30);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 17px; border-radius: 100px; }
.btn-full { width: 100%; }
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s ease;
}
.btn-shine:hover::before { left: 100%; }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-left {
  display: flex;
  gap: 24px;
}
.top-bar-item { color: rgba(255,255,255,0.85); }
.top-bar-phone {
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--primary); }
@media (max-width: 700px) {
  .top-bar-hide-mobile { display: none; }
  .top-bar-left { gap: 12px; }
  .top-bar { font-size: 12px; }
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo { height: 44px; width: auto; }
.nav-desktop {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.nav-desktop a { transition: color 0.2s; }
.nav-desktop a:hover { color: var(--primary-dark); }
.btn-header { padding: 12px 22px; font-size: 14px; }
@media (max-width: 900px) {
  .nav-desktop { display: none; }
}
@media (max-width: 480px) {
  .btn-header { padding: 10px 16px; font-size: 13px; }
  .logo { height: 36px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-blob-1 {
  width: 500px; height: 500px;
  background: rgba(26, 174, 234, 0.25);
  top: -150px;
  right: -100px;
  animation: float 14s ease-in-out infinite;
}
.hero-bg-blob-2 {
  width: 400px; height: 400px;
  background: rgba(27, 58, 107, 0.15);
  bottom: -100px;
  left: -50px;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}
.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title-accent {
  display: block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-trust-list li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.hero-badge {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text-muted);
}
.hero-badge-text strong {
  color: var(--navy);
  font-size: 14px;
}

/* Hero card (right side) */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  position: relative;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-card-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.hero-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card-name strong {
  color: var(--navy);
  font-size: 15px;
}
.hero-card-name span {
  color: var(--text-muted);
  font-size: 12px;
}
.hero-card-stars {
  color: #FFB627;
  font-size: 13px;
  margin-top: 4px;
}
.hero-card-stars span { color: var(--text-muted); margin-left: 4px; }
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.hero-card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.hero-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-slot {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.hero-slot:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.hero-slot small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.hero-slot:hover small { color: rgba(255,255,255,0.85); }
.hero-card-foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 50px 0 70px; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.trust-num {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #B8E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 700px) {
  .trust-divider { display: none; }
}

/* ============ INSURANCE SLIDER ============ */
.insurance-slider-section {
  background: #fff;
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.insurance-slider-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.insurance-slider-count {
  background: rgba(26, 174, 234, 0.1);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.insurance-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.insurance-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: insScroll 50s linear infinite;
}
.insurance-marquee:hover .insurance-track {
  animation-play-state: paused;
}
.insurance-card {
  flex: 0 0 auto;
  width: 160px;
  height: 90px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.insurance-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.insurance-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s;
}
.insurance-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes insScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .insurance-card { width: 120px; height: 72px; padding: 10px 16px; }
  .insurance-track { gap: 16px; animation-duration: 40s; }
}

/* ============ SERVICES ============ */
.services-section { background: #fff; }
.services-subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '→';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 18px;
  color: var(--primary-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s;
  font-weight: 700;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { opacity: 1; transform: translateX(0); }
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 174, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 38px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--grad-primary);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ PROBLEM ============ */
.problem-section { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.problem-icon {
  font-size: 44px;
  margin-bottom: 12px;
}
.problem-card p {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
}
.problem-summary {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.problem-summary p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.problem-emphasis {
  font-size: 22px !important;
  color: var(--navy) !important;
  font-weight: 700;
  margin: 28px 0 !important;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ============ WHY US ============ */
.why-section { background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: inline-block;
}
.why-card h3 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============ HOW IT WORKS ============ */
.how-section { background: #fff; }
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 60px;
}
.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: 4px;
}
.timeline-step {
  position: relative;
  padding: 12px 0 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-bullet {
  position: absolute;
  left: -56px;
  top: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(26, 174, 234, 0.4);
  border: 4px solid #fff;
}
.timeline-content {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}
.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.timeline-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.timeline-content h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}
.timeline-tag {
  display: inline-block;
  background: rgba(26, 174, 234, 0.1);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.how-cta {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .timeline { padding-left: 50px; }
  .timeline-bullet {
    left: -50px; width: 40px; height: 40px; font-size: 16px;
  }
  .timeline-line { left: 18px; }
  .timeline-content { padding: 20px; }
}

/* ============ PRICING ============ */
.pricing-section { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card-highlight {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 50px rgba(26, 174, 234, 0.2);
}
.pricing-card-highlight::before {
  content: '★ MOST CHOSEN';
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--grad-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pricing-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pricing-tag-primary {
  background: rgba(26, 174, 234, 0.10);
  color: var(--primary-dark);
}
.pricing-card h3 {
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pricing-card > p {
  color: var(--text-muted);
  margin-bottom: 18px;
}
.insurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.insurance-pill {
  background: var(--bg-alt);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.pricing-list {
  margin-bottom: 24px;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-item-label {
  color: var(--text);
  font-weight: 500;
}
.pricing-item-value {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 18px;
}
.pricing-foot {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.pricing-help {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pricing-help p {
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============ DOCTOR ============ */
.doctor-section { background: #fff; }
.doctor-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.doctor-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.doctor-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}
.doctor-badge-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: auto;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.doctor-name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 12px 0 4px;
}
.doctor-title {
  font-size: 17px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.doctor-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.credential {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.doctor-bio {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .doctor-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 30px;
    text-align: center;
  }
  .doctor-image-wrap { max-width: 280px; margin: 0 auto; }
  .doctor-credentials { text-align: left; }
  .doctor-bio { text-align: left; }
}
@media (max-width: 480px) {
  .doctor-credentials { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg-alt); }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.google-stars {
  color: #FFB627;
  font-size: 22px;
  letter-spacing: 2px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #FFB627;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}
.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.trust-badge-img {
  height: 50px;
  width: auto;
}
.trust-badge-emoji { font-size: 28px; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============ LOCATIONS ============ */
.locations-section { background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.location-image {
  width: 100%;
  height: 240px;
  position: relative;
  background: var(--bg-alt);
}
.location-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-content {
  padding: 28px;
}
.location-content h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
.location-address {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15px;
}
.location-hours {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 13px;
  gap: 12px;
}
.hours-label {
  color: var(--navy);
  font-weight: 600;
  flex-shrink: 0;
}
.hours-row span:last-child { text-align: right; color: var(--text-muted); }
.location-actions {
  display: flex;
  gap: 10px;
}
.location-actions .btn { flex: 1; }
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-section { background: var(--bg-alt); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CLOSING ============ */
.closing-cta {
  background: var(--grad-closing);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.closing-bg-blob-1 {
  width: 500px; height: 500px;
  background: var(--primary);
  top: -200px; right: -100px;
}
.closing-bg-blob-2 {
  width: 400px; height: 400px;
  background: #fff;
  bottom: -150px; left: -100px;
  opacity: 0.1;
}
.closing-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.closing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.closing-title-accent {
  background: linear-gradient(135deg, #B8E5FF 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.6;
}
.closing-body strong { color: #fff; }
.closing-emphasis {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 32px;
}
.closing-reassurance {
  margin-top: 24px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: #0A1729;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin: 16px 0;
  line-height: 1.6;
}
.footer-logo {
  height: 40px;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  width: auto;
  display: inline-block;
}
.footer-badges img {
  height: 60px;
  width: auto;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col p { margin-bottom: 8px; line-height: 1.6; }
.footer-col a { color: var(--primary); font-weight: 600; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  text-align: center;
}
.footer-credit {
  font-size: 13px;
  color: rgba(233, 232, 232, 0.85);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-credit a {
  color: var(--primary);
  font-weight: 700;
  transition: color 0.2s;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
}
.footer-credit a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  gap: 10px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}
.mobile-cta-call {
  flex: 0 0 auto;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 100px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.mobile-cta-book {
  flex: 1;
  padding: 14px 22px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(26, 174, 234, 0.4);
}
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BOOKING SECTION (GHL EMBED) ============ */
.book-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.book-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.book-bg-blob-1 {
  width: 500px; height: 500px;
  background: rgba(26, 174, 234, 0.25);
  top: -100px; right: -150px;
}
.book-bg-blob-2 {
  width: 400px; height: 400px;
  background: rgba(27, 58, 107, 0.15);
  bottom: -100px; left: -100px;
}
.book-section .container { position: relative; z-index: 1; }

.book-subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.book-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

/* Centered single-column layout — calendar as focal hero */
.book-calendar-centered {
  max-width: 760px;
  margin: 0 auto;
}

/* Reassurance row below calendar */
.book-reassure-row {
  max-width: 1000px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.book-reassure-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.book-reassure-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.book-reassure-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 174, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.book-reassure-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}
.book-reassure-item span,
.book-reassure-item a {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.book-reassure-phone {
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}
.book-reassure-phone:hover { color: var(--navy) !important; }

@media (max-width: 900px) {
  .book-reassure-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .book-reassure-row { grid-template-columns: 1fr; }
}

.book-side-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.book-side-doctor {
  display: flex;
  gap: 14px;
  align-items: center;
}
.book-side-doctor img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.book-side-doctor strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}
.book-side-doctor span {
  font-size: 12px;
  color: var(--text-muted);
}
.book-side-doctor .hero-card-stars {
  font-size: 13px;
  margin-top: 4px;
}
.book-side-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.book-side-card h4 {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.book-side-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.book-side-steps li {
  position: relative;
  padding-left: 36px;
  counter-increment: step;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.book-side-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(26, 174, 234, 0.3);
}
.book-side-steps li strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 2px;
}
.book-side-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-side-bullets li {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.book-side-call {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.book-side-phone {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.book-side-phone:hover { color: var(--navy); }
.book-side-badge {
  height: 70px;
  width: auto;
  display: block;
  margin: 16px auto 0;
}

.book-calendar {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.book-calendar-head {
  text-align: center;
  margin-bottom: 18px;
}
.book-calendar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.10);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.book-calendar-head h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ghl-embed-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  min-height: 780px;
  position: relative;
}
.ghl-embed-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  background: #fff;
  border-radius: var(--radius-lg);
}
.book-cal-foot {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-side-card { position: static; }
}
@media (max-width: 600px) {
  .book-calendar { padding: 14px; }
  .ghl-embed-wrap { min-height: 720px; }
}

/* ============ LANGUAGE TOGGLE ============ */
.lang-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 95;
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(20, 50, 100, 0.18);
  transition: all 0.25s ease;
  cursor: pointer;
}
.lang-toggle:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 174, 234, 0.4);
}
.lang-flag { font-size: 18px; line-height: 1; }
.lang-current {
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .lang-toggle {
    bottom: 92px;
    left: 16px;
    padding: 8px 14px 8px 12px;
    font-size: 13px;
  }
}

