/* ============================================
   DACTTER.COM — Design Tokens
   Display: Lexend (clinical, geometric, confident)
   Body: Manrope (warm, readable)
   Palette:
     --blue-deep:   #0B2A6B  (trust / header text)
     --blue-mid:    #2F6FED  (primary action)
     --blue-soft:   #EAF1FF  (tints)
     --teal-pulse:  #16A37A  (vitals / success — "alive" accent)
     --ink:         #0E1B2F
     --paper:       #FFFFFF
   Signature element: the ECG "pulse line" motif echoing the brand's
   heartbeat-lid logo — used in hero bg, dividers and hover states.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2.5px solid #2F6FED; outline-offset: 3px; border-radius: 4px; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #0E1B2F;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Lexend', sans-serif;
  color: #0B2A6B;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p { line-height: 1.65; color: #4A5670; margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

.btn-primary {
  background: linear-gradient(135deg, #2F6FED, #1748C2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47,111,237,.32);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(47,111,237,.42); }

.btn-light { background: #fff; color: #1748C2; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; color: #1748C2; border: 1.5px solid #C9DAFB; }
.btn-outline:hover { background: #EAF1FF; }

/* ---------- Glassmorphism ---------- */
.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px rgba(11,42,107,0.12);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,42,107,0.07);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(11,42,107,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo-icon { color: #2F6FED; display: flex; }
.logo-icon .logo-pulse { color: #16A37A; }
.logo-text {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 22px;
  color: #0B2A6B; letter-spacing: -0.02em;
}
.logo-dot { color: #2F6FED; font-weight: 600; }

.nav { display: flex; gap: 32px; }
.nav a {
  font-family: 'Lexend', sans-serif; font-size: 14.5px; font-weight: 500;
  color: #344266; position: relative; padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: #2F6FED; transition: width .25s ease;
}
.nav a:hover { color: #1748C2; }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2.4px; background: #0B2A6B; border-radius: 2px; transition: .3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; background: #fff;
  border-top: 1px solid rgba(11,42,107,0.08);
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav a { padding: 16px 24px; font-family:'Lexend',sans-serif; font-weight: 500; color: #344266; border-bottom: 1px solid rgba(11,42,107,0.06); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0B2A6B 0%, #1748C2 55%, #2F6FED 100%);
  padding: 90px 0 130px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35;
}
.blob-1 { width: 480px; height: 480px; background: #5B9BFF; top: -180px; right: -120px; }
.blob-2 { width: 360px; height: 360px; background: #16A37A; bottom: -160px; left: -100px; opacity: .25; }
.hero-pulse-line { position: absolute; bottom: 60px; left: 0; width: 100%; height: 110px; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.eyebrow {
  display: inline-block; font-family: 'Lexend', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: #BFD6FF; background: rgba(255,255,255,0.12);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow-dark { color: #1748C2; background: #EAF1FF; }

.hero-content h1 {
  color: #fff; font-size: clamp(34px, 4.2vw, 54px); font-weight: 700; margin-bottom: 18px;
}
.text-grad {
  background: linear-gradient(120deg, #7FE3C0, #BFD6FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 520px; margin-bottom: 32px; }

.search-card {
  display: flex; gap: 10px; padding: 12px; border-radius: 20px; margin-bottom: 26px;
  flex-wrap: wrap;
}
.search-field {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 180px;
  padding: 10px 16px; color: #0B2A6B;
}
.search-field svg { color: #6E83AD; flex-shrink: 0; }
.search-field input {
  border: none; background: none; outline: none; font-family: 'Manrope', sans-serif;
  font-size: 14.5px; width: 100%; color: #0E1B2F;
}
.search-loc { border-left: 1px solid rgba(11,42,107,0.12); }
.search-card .btn { flex-shrink: 0; }

.hero-cta-row { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid #1748C2;
  background: linear-gradient(135deg,#BFD6FF,#7FE3C0); margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.hero-trust p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }
.hero-trust strong { color: #fff; }

/* hero visual */
.hero-visual { position: relative; height: 440px; }
.visual-card {
  position: absolute; border-radius: 22px; padding: 22px;
}
.main-card { width: 290px; top: 10px; left: 30px; }
.vc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.vc-avatar {
  width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg,#2F6FED,#16A37A);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Lexend',sans-serif; font-weight: 700; font-size: 14px;
}
.vc-name { font-family: 'Lexend',sans-serif; font-weight: 600; color: #0B2A6B; margin: 0; font-size: 15px; }
.vc-role { color: #6E83AD; font-size: 12.5px; margin: 0; }
.vc-vitals { background: #F3F7FF; border-radius: 14px; padding: 14px; margin-bottom: 14px; }
.vital { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.vital-label { font-size: 12px; color: #6E83AD; font-family:'Lexend',sans-serif; }
.vital-value { font-family: 'Lexend',sans-serif; font-weight: 700; color: #16A37A; font-size: 18px; }
.vital-value small { font-size: 11px; color: #6E83AD; font-weight: 500; }
.vital-graph { width: 100%; height: 36px; }
.vc-slot { font-size: 12.5px; color: #1748C2; font-family:'Lexend',sans-serif; font-weight: 600; }

.float-card-1 {
  width: 220px; top: 270px; left: -10px; display: flex; align-items: center; gap: 10px;
  font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 13px; color: #0B2A6B;
  animation: floatY 5s ease-in-out infinite;
}
.float-card-2 {
  width: 200px; top: 30px; right: -10px; display: flex; flex-direction: column; gap: 3px;
  animation: floatY 6s ease-in-out infinite 1s;
}
.fc2-label { font-family: 'Lexend',sans-serif; font-weight: 700; color: #0B2A6B; font-size: 13.5px; }
.fc2-sub { color: #16A37A; font-size: 12px; font-weight: 600; }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ============ STATS ============ */
.stats { background: #0B2A6B; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: 'Lexend',sans-serif; font-weight: 800; font-size: clamp(28px,3.4vw,40px); color: #fff; }
.stat-label { font-size: 13.5px; color: #BFD6FF; font-family:'Lexend',sans-serif; font-weight: 500; }

/* ============ SECTION GENERIC ============ */
.section { padding: 96px 0; }
.section-tint { background: #F6F9FF; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(26px,3vw,36px); }
.section-sub { font-size: 16px; }

/* ============ SPECIALITIES ============ */
.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.spec-card {
  background: #fff; border: 1px solid #E7EEFB; border-radius: 18px; padding: 26px 20px;
  display: flex; flex-direction: column; gap: 10px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(11,42,107,0.1); border-color: #C9DAFB; }
.spec-icon {
  width: 50px; height: 50px; border-radius: 14px; background: #EAF1FF; color: #2F6FED;
  display: flex; align-items: center; justify-content: center;
}
.spec-name { font-family: 'Lexend',sans-serif; font-weight: 600; color: #0B2A6B; font-size: 15.5px; }
.spec-count { font-size: 13px; color: #6E83AD; }

/* ============ DISEASES ============ */
.disease-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.disease-card {
  position: relative; background: linear-gradient(160deg,#fff,#F3F7FF);
  border: 1px solid #E7EEFB; border-radius: 16px; padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.disease-card:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(11,42,107,0.09); }
.disease-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.disease-card p { font-size: 13px; margin: 0; color: #6E83AD; }
.d-tag {
  position: absolute; top: 14px; right: 14px; font-size: 10.5px; font-weight: 700;
  font-family: 'Lexend',sans-serif; color: #16A37A; background: #E6F7F1; padding: 3px 9px; border-radius: 100px;
}

/* ============ DOCTORS ============ */
.doctor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.doctor-card {
  background: #fff; border: 1px solid #E7EEFB; border-radius: 20px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(11,42,107,0.12); }
.doc-photo { height: 170px; background-size: cover; background-position: center; }
.dp-1 { background: linear-gradient(135deg,#BFD6FF,#7FA8F2); }
.dp-2 { background: linear-gradient(135deg,#FFD9B8,#F2A66E); }
.dp-3 { background: linear-gradient(135deg,#C9F2E2,#7FE3C0); }
.dp-4 { background: linear-gradient(135deg,#F2C9E0,#E27FB8); }
.doc-body { padding: 18px; }
.doc-rating { color: #E0A100; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.doc-rating span { color: #9AA8C7; font-weight: 500; }
.doc-body h3 { font-size: 16.5px; margin-bottom: 2px; }
.doc-spec { font-size: 13px; color: #344266; margin-bottom: 2px; }
.doc-meta { font-size: 12.5px; color: #9AA8C7; margin-bottom: 14px; }
.doc-foot { display: flex; align-items: center; justify-content: space-between; }
.doc-fee { font-family: 'Lexend',sans-serif; font-weight: 700; font-size: 14px; color: #0B2A6B; }

.center-cta { text-align: center; margin-top: 40px; }

/* ============ HOSPITALS ============ */
.hospital-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hospital-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #E7EEFB; transition: transform .25s ease, box-shadow .25s ease; }
.hospital-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(11,42,107,0.1); }
.hosp-img { height: 160px; }
.hi-1 { background: linear-gradient(135deg,#0B2A6B,#2F6FED); }
.hi-2 { background: linear-gradient(135deg,#16A37A,#7FE3C0); }
.hi-3 { background: linear-gradient(135deg,#1748C2,#5B9BFF); }
.hosp-body { padding: 20px; }
.hosp-body h3 { font-size: 16.5px; margin-bottom: 4px; }
.hosp-body p { font-size: 13px; margin-bottom: 12px; }
.hosp-badge { font-size: 12px; font-weight: 600; font-family:'Lexend',sans-serif; color: #1748C2; background: #EAF1FF; padding: 5px 12px; border-radius: 100px; }

/* ============ HOW IT WORKS ============ */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.how-card {
  position: relative; background: #fff; border: 1px solid #E7EEFB; border-radius: 20px;
  padding: 32px 26px; overflow: hidden;
}
.how-num {
  position: absolute; top: 14px; right: 20px; font-family:'Lexend',sans-serif; font-weight: 800;
  font-size: 40px; color: #EAF1FF;
}
.how-icon {
  width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#2F6FED,#16A37A);
  color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.how-card h3 { font-size: 18px; }
.how-card p { font-size: 14.5px; margin: 0; }

/* ============ WHY CHOOSE ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-content h2 { font-size: clamp(26px,3vw,34px); }
.why-list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #344266; font-weight: 500; }
.why-check {
  width: 22px; height: 22px; border-radius: 50%; background: #16A37A; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0;
}
.why-visual { position: relative; height: 280px; }
.why-card {
  position: absolute; border-radius: 20px; padding: 26px; width: 200px;
  display: flex; flex-direction: column; gap: 10px;
}
.why-card p { font-family: 'Lexend',sans-serif; font-weight: 600; color: #0B2A6B; font-size: 15px; margin: 0; }
.why-card:first-child { top: 0; left: 30px; }
.why-card-2 { bottom: 0; right: 10px; }

/* ============ VIDEOS ============ */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.video-card { cursor: pointer; }
.video-thumb {
  height: 190px; border-radius: 18px; position: relative; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.vt-1 { background: linear-gradient(135deg,#0B2A6B,#2F6FED); }
.vt-2 { background: linear-gradient(135deg,#16A37A,#0B2A6B); }
.vt-3 { background: linear-gradient(135deg,#1748C2,#16A37A); }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.22);
  border: 1.5px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: transform .25s ease;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-card h3 { font-size: 16px; margin-bottom: 2px; }
.video-card p { font-size: 13px; margin: 0; color: #9AA8C7; }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #E7EEFB; }
.testi-stars { color: #E0A100; font-size: 15px; margin-bottom: 10px; }
.testi-card p { font-size: 14.5px; color: #344266; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.ta-1 { background: linear-gradient(135deg,#BFD6FF,#7FA8F2); }
.ta-2 { background: linear-gradient(135deg,#FFD9B8,#F2A66E); }
.ta-3 { background: linear-gradient(135deg,#C9F2E2,#7FE3C0); }
.testi-author strong { display: block; font-size: 14px; color: #0B2A6B; }
.testi-author small { color: #9AA8C7; font-size: 12px; }

/* ============ APP SECTION ============ */
.app-section { background: linear-gradient(160deg,#0B2A6B,#1748C2); padding: 100px 0; }
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.app-content .eyebrow { margin-bottom: 16px; }
.app-content h2 { color: #fff; font-size: clamp(26px,3.2vw,36px); }
.app-content p { color: rgba(255,255,255,0.82); max-width: 440px; }
.store-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25); padding: 11px 20px; border-radius: 14px; color: #fff;
  transition: background .25s ease;
}
.store-btn:hover { background: rgba(255,255,255,0.18); }
.store-btn span { display: flex; flex-direction: column; font-family:'Lexend',sans-serif; font-size: 14px; font-weight: 600; line-height: 1.3; }
.store-btn small { font-size: 10.5px; font-weight: 400; opacity: .8; }

.app-visual { display: flex; justify-content: center; }
.phone-mock { width: 230px; height: 320px; border-radius: 30px; padding: 18px; position: relative; }
.pm-notch { width: 60px; height: 6px; background: rgba(11,42,107,0.2); border-radius: 100px; margin: 0 auto 18px; }
.pm-title { font-family: 'Lexend',sans-serif; font-weight: 700; font-size: 13px; color: #0B2A6B; margin-bottom: 14px; }
.pm-card { display: flex; align-items: center; gap: 10px; background: #F3F7FF; border-radius: 14px; padding: 12px; margin-bottom: 16px; }
.pm-dot { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,#2F6FED,#16A37A); flex-shrink: 0; }
.pm-card strong { display: block; font-size: 12.5px; color: #0B2A6B; }
.pm-card small { font-size: 11px; color: #6E83AD; }
.pm-bar { height: 10px; background: #EAF1FF; border-radius: 100px; margin-bottom: 10px; }
.pm-bar.short { width: 60%; }

/* ============ CONTACT ============ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-info div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #344266; font-weight: 500; }
.contact-info svg { color: #2F6FED; flex-shrink: 0; }
.contact-form { border-radius: 22px; padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid #DCE6F8;
  font-family: 'Manrope',sans-serif; font-size: 14.5px; outline: none; background: #fff;
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: #2F6FED; }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 13px; color: #16A37A; font-weight: 600; min-height: 18px; margin: 0; }

/* ============ FOOTER ============ */
.footer { background: #07193F; padding: 70px 0 0; color: #BFD6FF; }
.footer .logo-text { color: #fff; }
.footer .logo-icon { color: #7FA8F2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 50px; }
.footer-brand p { color: #8FA3CE; font-size: 14px; max-width: 280px; margin: 16px 0 20px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: #BFD6FF;
  transition: background .2s ease;
}
.social-row a:hover { background: rgba(255,255,255,0.14); }
.footer-col h4 { font-family: 'Lexend',sans-serif; color: #fff; font-size: 14.5px; margin-bottom: 18px; }
.footer-col a { display: block; color: #8FA3CE; font-size: 13.5px; margin-bottom: 12px; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: #6E83AD; font-size: 13px; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .spec-grid, .doctor-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .app-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-visual { height: 220px; margin-top: 20px; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-actions .btn-primary { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .disease-grid, .hospital-grid, .how-grid, .video-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 56px 0 90px; }
  .search-card { flex-direction: column; }
  .search-loc { border-left: none; border-top: 1px solid rgba(11,42,107,0.1); }
  .spec-grid, .doctor-grid, .disease-grid, .hospital-grid, .how-grid, .video-grid, .testi-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
