/* =========================================
   KlinikMatch — Main Stylesheet
   ========================================= */

:root {
  --navy: #1E2D4F;
  --coral: #E8643A;
  --coral-light: #F07850;
  --navy-light: #2B3F6B;
  --bg: #FAFAF9;
  --white: #FFFFFF;
  --text: #374151;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --success: #10B981;
  --shadow: 0 4px 24px rgba(30, 45, 79, 0.08);
  --shadow-lg: 0 12px 48px rgba(30, 45, 79, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: inline; } }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

section[id] { scroll-margin-top: 72px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 115, 90, 0.35);
}
.btn-primary:hover {
  background: var(--coral-light);
  box-shadow: 0 6px 24px rgba(232, 115, 90, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--bg);
  box-shadow: var(--shadow-lg);
}

/* ---- Nav ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
  overflow: hidden;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo { margin-left: -42px; margin-right: -44px; }
.nav-logo img { height: 320px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: #0D1B2A;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,80,26,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 0% 100%, rgba(232,80,26,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,80,26,0.12);
  border: 1px solid rgba(232,80,26,0.3);
  color: #FF6B3D;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8501A;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.hero h1 em {
  font-style: normal;
  color: #E8501A;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #E8501A, transparent);
  border-radius: 2px;
}

.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: #8A9BB0;
  max-width: 480px;
  margin: 0;
}

.hero-body strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8501A;
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hero-btn-primary:hover {
  background: #FF6B3D;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232,80,26,0.35);
}

.hero-btn-primary svg { transition: transform 0.2s; }
.hero-btn-primary:hover svg { transform: translateX(3px); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8A9BB0;
}

.hero-trust-item svg { color: #E8501A; flex-shrink: 0; }

.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.08);
}

.hero-stars-row { display: flex; gap: 2px; }
.hero-star { color: #F5A623; font-size: 13px; }

/* ---- Dashboard card (hero right) ---- */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #E8501A, #C23E10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.card-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; color: #FFFFFF; }
.card-subtitle { font-size: 12px; color: #8A9BB0; margin-top: 2px; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ADE80;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 100px;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 1.5s ease infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.stat-box:hover {
  border-color: rgba(232,80,26,0.25);
  background: rgba(232,80,26,0.04);
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #E8501A;
  line-height: 1;
}

.stat-value.white { color: #FFFFFF; }

.stat-box .stat-label {
  font-size: 12px;
  color: #8A9BB0;
  margin-top: 6px;
}

.progress-section { margin-bottom: 16px; }

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label { font-size: 12px; color: #8A9BB0; }
.progress-value { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; color: #FFFFFF; }

.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #E8501A, #FF6B3D);
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-footer-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
}

.check-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.card-footer-text { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

.float-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: #1A3045;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--coral); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- Benefits ---- */
.benefits { padding: 40px 0 100px; background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.benefit-chevron {
  position: absolute;
  bottom: 18px;
  right: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232,100,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.35s ease;
  pointer-events: none;
}
.benefit-chevron svg {
  transition: transform 0.35s ease;
}

.benefit-card.is-active .benefit-chevron {
  background: rgba(232,100,58,0.18);
}
.benefit-card.is-active .benefit-chevron svg {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .benefit-card:hover .benefit-chevron {
    background: rgba(232,100,58,0.18);
  }
  .benefit-card:hover .benefit-chevron svg {
    transform: rotate(180deg);
  }
  .benefit-card:hover {
    border-color: transparent;
    border-left-color: var(--coral);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
}

.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,115,90,0.12), rgba(232,115,90,0.06));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.benefit-icon svg {
  display: block;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.benefit-teaser {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 40px;
  overflow: hidden;
}

.benefit-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.3s ease;
}

.benefit-card.is-active .benefit-teaser {
  opacity: 0;
  max-height: 0;
}

.benefit-card.is-active .benefit-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

@media (hover: hover) {
  .benefit-card:hover .benefit-teaser {
    opacity: 0;
    max-height: 0;
  }
  .benefit-card:hover .benefit-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
  }
}

.benefit-card.is-active {
  border-color: transparent;
  border-left-color: var(--coral);
  box-shadow: var(--shadow-lg);
}

/* ---- Why us ---- */
.why-us { padding: 40px 0 100px; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.why-item:hover { background: var(--bg); }

.why-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ---- CTA Section ---- */
.cta-section { padding: 40px 0 100px; background: var(--white); }

/* ---- Form ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; padding: 15px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ---- FAQ ---- */
.faq { padding: 40px 0 48px; background: var(--white); }
.faq-list { max-width: 720px; margin: 56px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 32px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: stretch;
}

.footer-brand { padding-top: 0; margin-top: 0; }
.footer-brand .footer-logo { display: block; filter: brightness(0) invert(1); }
.footer-logo-wrap { overflow: hidden; height: 24px; width: 144px; margin-bottom: 16px; }
.footer-logo-wrap .footer-logo { height: 178px; width: auto; margin: -78px 0 0 -16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 260px; margin-top: 0; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--coral); }

/* Push phone+LinkedIn to bottom of Legal column to align with last nav item */
.footer-col-legal {
  display: flex;
  flex-direction: column;
}
.footer-col-legal ul {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.footer-li-linkedin {
  margin-top: auto;
}

@media (max-width: 480px) {
  .footer-li-linkedin { margin-top: 0; }
}

.footer-li-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.footer-li-btn:hover {
  background: rgba(232,100,58,0.15);
  color: var(--coral);
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--coral); }

.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}


.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.brand-tag-logo {
  height: 120px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}


.brand-coming {
  opacity: 1;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coming-soon {
  background: rgba(255,255,255,0.15);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 4px;
  font-style: normal;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 20px; }
  .hero-body { text-align: left; }
  .hero-grid, .why-grid, .worldwide-grid, .cs-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .benefits-grid { grid-template-columns: 1fr; margin-top: 16px; }
  .lq-steps { flex-direction: column; align-items: center; }
  .lq-connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--coral), rgba(232,100,58,0.2)); margin: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo { margin-left: 0; margin-right: 0; }
  .nav-logo img { height: 270px; margin-left: -32px; }
  .navbar .container { padding: 0 8px; }
  .nav-inner { height: 52px; overflow: hidden; }

  .card-footer-pill { justify-content: center; }
  .card-footer-text { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .benefits      { padding: 20px 0 40px; }
  .our-model     { padding: 20px 0; }
  .case-studies  { padding: 20px 0; }
  .lead-qual     { padding: 20px 0; }
  .why-us        { padding: 20px 0; }
  .why-grid      { margin-top: 0; gap: 16px; }
  .cs-grid       { margin-top: 16px; }
  .cta-section   { padding: 20px 0; }
  .faq           { padding: 20px 0; }
  .faq-list      { margin-top: 16px !important; }
  .footer        { padding-top: 20px; }
  .footer .container { padding: 0 10px; }
  .footer-brand  { margin: 0 !important; padding: 0 !important; }
  .footer-logo-wrap { overflow: hidden; height: 22px; width: 136px; margin-top: 10px; margin-bottom: 10px; margin-left: -8px; }
  .footer-logo-wrap .footer-logo { height: 165px !important; width: auto !important; margin: -74px 0 0 -15px !important; filter: brightness(0) invert(1); }
  .footer-brand p { margin: 0 !important; padding: 0 !important; margin-top: 4px !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Mobile menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 768px) { .mobile-menu { top: 53px; } }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 0; justify-content: center; color: var(--white); padding: 14px 28px; border-bottom: none; }

/* ---- Brand strip colors ---- */
.brand-dental { border-color: rgba(41,171,226,0.35) !important; }
.brand-dental:hover { border-color: #29ABE2 !important; }
.brand-hair { border-color: rgba(196,129,58,0.35) !important; }
.brand-hair:hover { border-color: #C4813A !important; }
.brand-health { border-color: rgba(141,198,63,0.35) !important; }
.brand-health:hover { border-color: #8DC63F !important; }

.brand-dental .coming-soon { background: rgba(41,171,226,0.25); color: #29ABE2; }
.brand-hair .coming-soon { background: rgba(196,129,58,0.25); color: #C4813A; }
.brand-health .coming-soon { background: rgba(141,198,63,0.25); color: #8DC63F; }

/* ---- What We Are ---- */
/* ---- Our Model ---- */
.our-model {
  padding: 40px 0 100px;
  background: var(--bg);
}

/* ---- Lead Qualification ---- */
.lead-qual {
  padding: 40px 0 100px;
  background: var(--white);
}

.lq-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.lq-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.lq-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #d4532a);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(232,100,58,0.3);
  position: relative;
  z-index: 1;
}

.lq-step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.lq-step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.lq-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), rgba(232,100,58,0.2));
  margin-top: 25px;
  border-radius: 2px;
}

.lq-footer {
  margin-top: 56px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(232,115,90,0.06), rgba(30,45,79,0.04));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,100,58,0.15);
}
.lq-footer-diamond { color: var(--coral); }

/* ---- Case Studies ---- */
.case-studies { padding: 40px 0 100px; background: var(--white); }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.cs-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.cs-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  background: rgba(232,115,90,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.cs-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 4px; }
.cs-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }

.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.cs-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  border: 1px solid var(--border);
}
.cs-stat-highlight { background: linear-gradient(135deg, var(--coral), var(--coral-light)); border-color: transparent; }
.cs-stat-highlight .cs-num { color: var(--white); }
.cs-stat-highlight .cs-label-s { color: rgba(255,255,255,0.85); }

.cs-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.cs-label-s { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }
.cs-label-s em { font-style: normal; color: var(--coral); font-weight: 600; }

.cs-metrics {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}
.cs-metric {
  flex: 1;
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-metric:last-child { border-right: none; }
.cs-metric span { font-size: 0.7rem; color: var(--text-muted); }
.cs-metric strong { font-size: 1rem; color: var(--navy); font-weight: 700; }

.cs-roi {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 14px;
  background: rgba(43,61,107,0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
}
.cs-roi strong { color: var(--navy); }
.cs-roi em { font-style: normal; color: var(--coral); font-weight: 600; }

/* ---- Worldwide ---- */
.worldwide {
  padding: 46px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.worldwide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.worldwide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.worldwide-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.worldwide-list li::before {
  content: '→';
  color: var(--coral);
  font-weight: 700;
}

/* ---- CTA phone links ---- */
.cta-direct {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.cta-phone-link:hover { color: var(--coral); }

/* ---- Success message ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }



/* ========================================= */
/*       EXTRACTED INLINE STYLES             */
/* ========================================= */

    /* ── HERO — tighter bottom ── */
    .hero {
      padding-bottom: 20px !important;
    }

    /* ── BRANDS SECTION ── */
    .brands-section {
      background: #fff;
      border-top: 1px solid #E5E7EB;
      border-bottom: 1px solid #E5E7EB;
      padding: 40px 0;
      box-shadow: 0 -8px 32px rgba(13,27,42,0.12);
    }
    .brands-eyebrow {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #9CA3AF;
      margin: 0 0 40px;
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .brand-card {
      background: #FAFAF9;
      border: 1px solid #E5E7EB;
      border-radius: 16px;
      padding: 10px 4px;
      border-top: 3px solid var(--brand-color, #E5E7EB);
    }
    .brand-card img {
      width: 100%;
      height: auto;
      display: block;
    }
    .brand-card--fertility { --brand-color: #E8569A; }
    .brand-card--dental    { --brand-color: #29ABE2; }
    .brand-card--hair      { --brand-color: #C4813A; }
    .brand-card--health    { --brand-color: #8DC63F; }
    @media (max-width: 768px) {
      .brands-section {
        padding: 16px 0;
      }

      .brands-section .container {
        padding: 0 24px;
      }
      .brands-eyebrow {
        margin: 0 0 10px;
      }
      .brands-grid {
        grid-template-columns: 1fr;
        gap: 6px;
      }
      .brand-card {
        padding: 4px 4px;
      }
    }

    .dashboard-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }
    .dashboard-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    }
    .card-header {
      display: flex; align-items: center;
      justify-content: space-between; margin-bottom: 20px;
    }
    .card-title-group { display: flex; align-items: center; gap: 12px; }
    .card-icon {
      width: 42px; height: 42px;
      background: rgba(74,222,128,0.12);
      border: 1px solid rgba(74,222,128,0.3);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .card-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; color: #fff; }
    .clinic-name-block { display: block; }
    .clinic-region { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-top: 1px; }
    .card-subtitle { font-size: 12px; color: #8A9BB0; margin-top: 2px; }
    .live-badge {
      display: flex; align-items: center; gap: 6px;
      background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
      color: #4ADE80; font-size: 11px; font-weight: 600;
      font-family: 'Sora', sans-serif; letter-spacing: 0.06em;
      padding: 5px 10px; border-radius: 100px; white-space: nowrap;
    }
    .live-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #4ADE80; animation: pulse 1.5s ease infinite;
    }
    .clinic-identity {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
    }
    .clinic-left { display: flex; align-items: center; gap: 12px; }
    .clinic-icon {
      width: 36px; height: 36px; background: #1A3045;
      border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; font-size: 16px;
    }
    .clinic-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
    .clinic-meta { font-size: 11px; color: #8A9BB0; margin-top: 2px; }
    .phase-badge {
      font-size: 10px; font-weight: 700; font-family: 'Sora', sans-serif;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px;
    }
    .phase-testing   { background: rgba(251,191,36,0.12); color: #FBBF24; border: 1px solid rgba(251,191,36,0.25); }
    .phase-optimising { background: rgba(99,179,237,0.12); color: #63B3ED; border: 1px solid rgba(99,179,237,0.25); }
    .phase-scaling   { background: rgba(74,222,128,0.12); color: #4ADE80; border: 1px solid rgba(74,222,128,0.25); }
    .angle-row {
      background: rgba(232,80,26,0.07); border: 1px solid rgba(232,80,26,0.18);
      border-radius: 10px; padding: 12px 16px; margin-bottom: 16px;
    }
    .angle-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: #E8501A; margin-bottom: 4px;
    }
    .angle-text { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
    .campaign-stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
    .campaign-stat-box {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 14px;
    }
    .campaign-stat-value { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: #E8501A; line-height: 1; }
    .campaign-stat-value.white { color: rgba(255,255,255,0.85); }
    .campaign-stat-label { font-size: 13px; color: #8A9BB0; margin-top: 6px; line-height: 1.4; }
    .campaign-progress-section { margin-bottom: 16px; }
    .campaign-progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .campaign-progress-label { font-size: 13px; color: #8A9BB0; }
    .campaign-progress-value { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
    .campaign-progress-track { height: 7px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }
    .campaign-progress-fill {
      height: 100%; border-radius: 100px;
      background: linear-gradient(90deg, #E8501A, #FF6B3D);
      transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    }
    .card-footer-pill {
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 14px 16px;
    }
    .card-footer-text { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 500; text-align: center; }
    /* ── OUR MODEL — border-grid layout ── */
    .om-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 56px;
      border-top: 1px solid #E5E7EB;
      border-left: 1px solid #E5E7EB;
    }
    .om-item {
      position: relative;
      padding: 44px 40px;
      border-right: 1px solid #E5E7EB;
      border-bottom: 1px solid #E5E7EB;
      overflow: hidden;
      transition: background 0.3s ease;
    }
    .om-item:hover {
      background: #fafaf9;
    }
    .om-border-accent {
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 100%;
      background: #E8501A;
      transform: scaleY(0);
      transform-origin: top center;
      transition: transform 0.3s ease;
    }
    .om-item:hover .om-border-accent {
      transform: scaleY(1);
    }
    .om-num {
      display: block;
      font-family: 'Sora', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(232,80,26,0.4);
      margin-bottom: 14px;
      transition: color 0.3s ease;
    }
    .om-item:hover .om-num {
      color: #E8501A;
    }
    .om-title {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #1E2D4F;
      line-height: 1.4;
      margin-bottom: 14px;
    }
    .om-body {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: #6B7280;
      line-height: 1.75;
      margin: 0;
    }
    @media (max-width: 640px) {
      .om-grid {
        grid-template-columns: 1fr;
        border-left: none;
        margin-top: 16px;
      }
      .om-item {
        border-right: none;
        border-left: 3px solid #E5E7EB;
        padding: 32px 24px;
        transition: border-left-color 0.3s ease, background 0.3s ease;
      }
      .om-item:hover,
      .om-item.is-active {
        border-left-color: #E8501A;
        background: #fafaf9;
      }
      .om-item.is-active .om-num {
        color: #E8501A;
      }
      .om-border-accent { display: none; }
    }

    /* ── WORLDWIDE — typographic visual ── */
    .worldwide-grid {
      grid-template-columns: 1fr 1fr !important;
      align-items: center !important;
    }
    .worldwide-typo {
      position: relative;
      height: 420px;
      width: 100%;
    }
    .wt-word {
      position: absolute;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      line-height: 1;
      cursor: default;
      transition: color 0.25s ease, transform 0.25s ease;
      white-space: nowrap;
    }
    .wt-word:hover {
      color: #E8501A !important;
      transform: translateY(-2px) !important;
    }
    .wt-dominant {
      font-size: 80px;
      color: rgba(255,255,255,0.92);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .wt-dominant:hover {
      transform: translate(-50%, calc(-50% - 2px)) !important;
    }
    .wt-orange {
      font-size: 42px;
      color: #E8501A;
    }
    .wt-receding {
      color: rgba(255,255,255,0.12);
    }
    @media (max-width: 768px) {
      .worldwide-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
      .worldwide-left {
        width: 100% !important;
        margin-top: 0 !important;
        text-align: center !important;
      }
      .worldwide-typo {
        height: 320px !important;
        overflow: hidden !important;
        order: -1;
      }
      .wt-dominant {
        font-size: 56px !important;
      }
      .wt-orange {
        font-size: 32px !important;
      }
      .wt-vto {
        font-size: 28px !important;
      }
    }

    /* ── WHY KLINIK MATCH — rebuilt ── */
    .why-us {
      background: var(--bg, #FAFAF9) !important;
    }
    .why-grid {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 64px !important;
      align-items: center !important;
      margin-top: 0 !important;
    }

    /* item list */
    .wku-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid #E5E7EB;
    }
    .wku-item {
      position: relative;
      padding: 28px 0;
      border-bottom: 1px solid #E5E7EB;
      transition: transform 0.3s ease, background 0.3s ease;
      overflow: hidden;
    }
    .wku-item:hover {
      transform: translateX(16px);
      padding-left: 0;
    }
    .wku-accent {
      display: none !important;
    }
    .wku-title {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #1E2D4F;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .wku-body {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: #6B7280;
      line-height: 1.75;
      margin: 0;
    }

    /* conviction card */
    .wku-card {
      position: relative;
      background: #0D1B2A;
      border-radius: 20px;
      padding: 52px 48px;
      overflow: hidden;
      border-top: 3px solid #E8501A;
      align-self: center;
      margin-top: auto;
      margin-bottom: auto;
    }
    .wku-card-glow {
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(232,80,26,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .wku-card-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 24px;
    }
    .wku-card-statement {
      font-family: 'Sora', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.45;
      margin: 0 0 32px 0;
    }
    .wku-card-statement em {
      font-style: normal;
      color: #E8501A;
    }
    .wku-card-divider {
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin-bottom: 24px;
    }
    .wku-card-support {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 768px) {
      .wku-card {
        padding: 32px 28px;
      }
      .wku-card-statement {
        font-size: 20px;
        text-align: center;
      }
    }

    /* ── WHY US — fixes (overrides style.css) ── */
    .wku-item::before,
    .wku-item::after {
      display: none !important;
    }
    .wku-item {
      border-left: none !important;
    }
    .wku-item:hover {
      transform: translateX(16px) !important;
      padding-left: 0 !important;
      border-left: none !important;
      box-shadow: none !important;
    }
    .conviction-card,
    .wku-card {
      background: linear-gradient(135deg, #0D1B2A 0%, #1A3045 100%) !important;
      border: 1px solid rgba(255,255,255,0.08) !important;
    }
.nav-logo img,
.logo img {
  background: transparent !important;
  mix-blend-mode: normal;
}

@media (max-width: 768px) {

  /* Stack hero vertically */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Show the campaign card on mobile — stretch edge to edge with breathing room */
  .hero-right {
    display: block !important;
    width: calc(100vw - 16px) !important;
    margin-left: calc(-24px + 8px) !important;
    margin-right: calc(-24px + 8px) !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  /* Hide the float badge on mobile — too cluttered */
  .float-badge {
    display: none !important;
  }

  /* Stack clinic name + region on mobile */
  .clinic-name-block {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }
  .clinic-region::before { display: none !important; }

  /* Scale down card padding */
  .dashboard-card {
    padding: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  /* Allow card header to wrap on mobile so badge doesn't overflow */
  .card-header {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* Scale down stats grid to 3 columns still but smaller */
  .campaign-stats-row {
    gap: 8px !important;
  }

  /* Increase dashboard text sizes (except clinic name, angle, badge) */
  .campaign-stat-value {
    font-size: 22px !important;
  }

  .campaign-stat-label {
    font-size: 12px !important;
  }

  .campaign-progress-label,
  .campaign-progress-value {
    font-size: 13px !important;
  }

  .card-footer-text {
    font-size: 14px !important;
  }

  .clinic-meta {
    font-size: 12px !important;
  }

  .phase-badge {
    font-size: 11px !important;
  }

  /* Hero text sizing */
  .hero-left h1 {
    font-size: 36px !important;
  }

  /* Buttons full width on mobile */
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Trust bar wraps cleanly */
  .hero-trust-bar {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .hero-trust-sep {
    display: none !important;
  }

  .benefits-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .benefit-card,
  .feature-card {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  .cs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow: visible !important;
    margin-top: 16px !important;
  }

  .cs-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
  }

  .case-studies .container {
    overflow: hidden !important;
  }

  .benefits {
    padding: 20px 0 40px !important;
  }

  .benefits .text-center {
    padding-top: 20px !important;
    padding-bottom: 0px !important;
  }

  .benefits .section-sub {
    margin-bottom: 0px !important;
  }

  .om-body {
    font-size: 16px !important;
  }

  .benefit-card h3 {
    font-size: 1.15rem !important;
  }

  .benefit-teaser {
    font-size: 0.95rem !important;
  }

  .wku-body {
    font-size: 15px !important;
  }

  .our-model,
  .model-section,
  [class*="model"] {
    padding: 20px 0 !important;
  }

  .lead-qual {
    padding: 20px 0 !important;
  }

  .case-studies {
    padding: 20px 0 !important;
  }

  .worldwide,
  [class*="worldwide"],
  .global-reach {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .worldwide-grid,
  [class*="worldwide-grid"] {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .w-sup-2 {
    bottom: 25% !important;
    right: 0% !important;
  }

  .wku-card-glow {
    display: none !important;
  }

  .wku-card::before,
  .wku-card::after {
    display: none !important;
  }

  .wku-card,
  .why-conviction-card {
    margin-top: -24px !important;
    margin-bottom: 0 !important;
  }

  .why-us {
    padding-top: 0 !important;
    padding-bottom: 20px !important;
  }

  .why-us .section-title {
    margin-top: 20px !important;
    margin-bottom: 12px !important;
  }


  .wku-item {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .why-us .wku-item {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-top: 0 !important;
  }

  .wku-list {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }


  .why-left {
    order: 1 !important;
  }

  .wku-card {
    order: 2 !important;
    margin-top: 24px !important;
  }

  .cta-section {
    padding: 20px 0 !important;
  }

  .cta-heading {
    margin-bottom: 16px !important;
  }

  .faq {
    padding: 20px 0 !important;
  }

  .faq .text-center {
    margin-bottom: 16px !important;
  }

  .footer {
    padding-top: 0px !important;
  }

  .footer-grid {
    margin-bottom: 16px !important;
  }

  .footer-bottom {
    padding-top: 12px !important;
  }

  .lq-footer {
    display: block !important;
    text-align: center !important;
  }
  .lq-footer-diamond {
    display: inline !important;
    margin-right: 4px !important;
  }
}

/* ── COOKIE CONSENT BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0D1B2A;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
#cookie-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.6;
  flex: 1 1 300px;
}
#cookie-banner p a {
  color: #E8501A;
  text-decoration: underline;
}
.cookie-btn-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-accept {
  background: #E8501A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
#cookie-accept:hover { background: #C23E10; }
#cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 9px 20px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
#cookie-decline:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
  #cookie-banner { padding: 12px 16px; gap: 12px; flex-wrap: nowrap; align-items: center; }
  #cookie-banner p { font-size: 11px; line-height: 1.4; flex: 1 1 auto; }
  .cookie-btn-group { flex-shrink: 0; gap: 8px; }
  #cookie-accept, #cookie-decline { padding: 7px 12px; font-size: 12px; }
}
.hero-trust-item {
  font-size: 14px;
}
#angleText {
  white-space: normal;
  overflow: visible;
  max-width: 100%;
  font-size: 14px;
  min-height: 46px;
  line-height: 1.6;
}


/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@media (max-width: 768px) {
  .wa-float {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 16px;
  }
  .wa-float svg { width: 22px; height: 22px; }
}
/* ── DASHBOARD CARD ENHANCEMENTS ── */
.card-main-info {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.card-info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  min-height: 52px;
}
.card-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.angle-text-highlight {
  font-size: 14px;
  color: #E8501A;
  font-style: italic;
  padding-left: 54px;
}

@media (max-width: 768px) {
  .angle-text-highlight {
    padding-left: 0;
    margin-top: 4px;
    font-size: 13px;
  }
}
