/* ============================================================
   Anadolu Check-Up — Premium International Landing
   Brand: Anadolu cyan #27AAE1 · Hopkins navy #15356E · deep navy #0B2A4A
   Headings: Poppins · Body: Inter
   ============================================================ */

:root {
  --brand: #27AAE1;
  --brand-deep: #1B8FC4;
  --brand-soft: #E7F6FD;
  --navy: #0B2A4A;
  --navy-2: #102F52;
  --hopkins: #15356E;
  --ink: #122033;
  --mut: #5A6B7E;
  --line: #E3EAF1;
  --bg: #FFFFFF;
  --tint: #F4F9FC;
  --gold: #C9A227;
  --ok: #1FA97C;
  --wa: #25D366;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11,42,74,.05), 0 4px 14px rgba(11,42,74,.06);
  --shadow-md: 0 4px 10px rgba(11,42,74,.07), 0 16px 40px rgba(11,42,74,.10);
  --shadow-lg: 0 8px 24px rgba(11,42,74,.12), 0 28px 70px rgba(11,42,74,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.22; color: var(--navy); font-weight: 700; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }
[hidden] { display: none !important; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15.5px; line-height: 1;
  border: none; border-radius: 999px; padding: 15px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-pri {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 6px 18px rgba(39,170,225,.35);
}
.btn-pri:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(39,170,225,.45); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-line {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-line:hover { border-color: var(--brand); color: var(--brand-deep); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset-inline: 0; top: 0; z-index: 900;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 14px 0;
}
.hdr-in { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; }
.hdr-logo img { height: 40px; width: auto; }
.hdr-logo-dark { display: none; }
.hdr.solid { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(11,42,74,.06); padding: 9px 0; }
.hdr.solid .hdr-logo-dark { display: block; }
.hdr.solid .hdr-logo-light { display: none; }
.hdr-nav { display: flex; gap: 4px; margin-inline-start: auto; }
.hdr-nav a {
  font-size: 14px; font-weight: 500; color: #fff; padding: 9px 13px; border-radius: 8px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.hdr-nav a:hover { background: rgba(255,255,255,.14); }
.hdr.solid .hdr-nav a { color: var(--ink); }
.hdr.solid .hdr-nav a:hover { background: var(--brand-soft); color: var(--brand-deep); }
.hdr-right { display: flex; align-items: center; gap: 12px; margin-inline-start: auto; }
.hdr-nav + .hdr-right { margin-inline-start: 0; }

/* language switcher */
.lang-sw { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  padding: 9px 14px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.22); }
.hdr.solid .lang-btn { background: #fff; color: var(--ink); border-color: var(--line); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); list-style: none; padding: 8px; min-width: 200px;
  max-height: 380px; overflow: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s, transform .22s, visibility .22s;
}
.lang-sw.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; color: var(--ink); transition: background .15s;
}
.lang-menu a:hover { background: var(--brand-soft); }
.lang-menu a.cur { background: var(--brand-soft); font-weight: 600; color: var(--brand-deep); }
.lang-menu .lm-code { font-size: 11px; font-weight: 700; color: var(--mut); width: 26px; text-transform: uppercase; }

.burger { display: none; background: none; border: none; width: 42px; height: 42px; border-radius: 10px; position: relative; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px auto; border-radius: 2px; transition: .3s; }
.hdr.solid .burger span { background: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(8,28,52,.93) 0%, rgba(10,38,68,.82) 38%, rgba(13,52,92,.45) 70%, rgba(15,60,105,.25) 100%);
}
[dir="rtl"] .hero-veil { background: linear-gradient(-112deg, rgba(8,28,52,.93) 0%, rgba(10,38,68,.82) 38%, rgba(13,52,92,.45) 70%, rgba(15,60,105,.25) 100%); }
.hero-in { position: relative; max-width: 1180px; margin: 0 auto; padding: 140px 24px 90px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px); border-radius: 999px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.hero-title {
  font-size: clamp(38px, 5.6vw, 64px); font-weight: 800; color: #fff;
  margin: 26px 0 20px; max-width: 760px; letter-spacing: -.015em;
}
.hero-sub { font-size: clamp(16.5px, 1.9vw, 19.5px); color: rgba(255,255,255,.88); max-width: 640px; font-weight: 400; }
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2);
}
.trust-img { height: 58px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.trust-txt { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.92); letter-spacing: .02em; }
.trust-sep { width: 1px; height: 26px; background: rgba(255,255,255,.25); }

/* ---------- Sections ---------- */
.sec { padding: 96px 0; }
.sec-tint { background: var(--tint); }
.sec-dark { background: radial-gradient(1100px 600px at 80% -10%, #14406E 0%, var(--navy) 55%) , var(--navy); color: #fff; position: relative; overflow: hidden; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.01em; }
.sec-head-dark h2 { color: #fff; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.sec-sub { color: var(--mut); margin-top: 16px; font-size: 17px; }
.sec-head-dark .sec-sub { color: rgba(255,255,255,.78); }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-deep);
  background: var(--brand-soft); border-radius: 999px; padding: 7px 16px; margin-bottom: 18px;
}
.kicker-cyan { background: rgba(39,170,225,.15); color: #6FD0F7; border: 1px solid rgba(39,170,225,.35); }

/* ---------- Accreditations band ---------- */
.accr { background: var(--tint); padding: 26px 0; border-bottom: 1px solid var(--line); }
.accr-band { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.accr-card {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; box-shadow: var(--shadow-sm);
  font-size: 11.5px; font-weight: 600; color: var(--navy); line-height: 1.35;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.accr-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.accr-card img { height: 42px; width: auto; max-width: 64px; object-fit: contain; flex: none; }
.accr-ic {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--brand-soft), #D4EFFC); color: var(--brand-deep);
  display: grid; place-items: center;
}

/* ---------- Promo video ---------- */
.video-wrap {
  max-width: 860px; margin: 0 auto 56px; position: relative;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9; background: var(--navy);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Instagram patient videos ---------- */
.ig-block { margin: 0 auto 52px; max-width: 1000px; }
.ig-sub { text-align: center; font-size: 14px; color: var(--mut); margin-bottom: 20px; }
.ig-sub a { color: var(--brand-deep); font-weight: 700; }
.ig-sub a:hover { text-decoration: underline; }
.ig-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ig-card {
  aspect-ratio: 9 / 16; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff;
}
.ig-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.ig-follow-card {
  display: flex; align-items: center; gap: 16px; max-width: 460px; margin: 0 auto;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 18px 22px; box-shadow: var(--shadow-sm); font-size: 14px; color: var(--mut);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.ig-follow-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(39,170,225,.5); }
.ig-follow-card strong { color: var(--navy); font-size: 15.5px; }
.ig-follow-ic {
  width: 50px; height: 50px; border-radius: 15px; flex: none; color: #fff;
  background: linear-gradient(135deg, #F58529, #DD2A7B 55%, #8134AF); display: grid; place-items: center;
}
.ig-follow-arrow { margin-inline-start: auto; font-size: 20px; color: var(--brand-deep); }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(39,170,225,.4); }
.why-ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), #D4EFFC); color: var(--brand-deep); margin-bottom: 20px;
}
.why-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--mut); }

.stats-band {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(120deg, var(--navy), #133B66 60%, #15486E);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.stat { padding: 36px 20px; text-align: center; color: #fff; position: relative; }
.stat + .stat::before { content: ""; position: absolute; inset-inline-start: 0; top: 22%; height: 56%; width: 1px; background: rgba(255,255,255,.16); }
.stat-v { font-family: 'Poppins'; font-size: 40px; font-weight: 800; line-height: 1; }
.stat-v small { font-size: 17px; font-weight: 600; color: var(--brand); margin-inline-start: 4px; }
.stat-l { font-size: 13.5px; color: rgba(255,255,255,.75); margin-top: 10px; }

/* ---------- AI Health Match ---------- */
.ai-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; pointer-events: none; }
.ai-glow-1 { width: 480px; height: 480px; background: #1E6FB8; top: -160px; inset-inline-start: -120px; }
.ai-glow-2 { width: 420px; height: 420px; background: #27AAE1; bottom: -180px; inset-inline-end: -100px; opacity: .22; }
.ai-glow-3 { width: 420px; height: 420px; background: #1E6FB8; top: -160px; inset-inline-end: -120px; opacity: .28; }
.ai-spark { color: var(--brand); display: inline-grid; place-items: center; }

.ai-shell {
  max-width: 720px; margin: 0 auto; position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px; backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow: hidden;
}
.ai-progress { height: 4px; background: rgba(255,255,255,.12); }
.ai-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand), #6FD0F7); border-radius: 999px; transition: width .45s var(--ease); }
.ai-body { padding: 40px 44px 44px; }

.ai-intro { text-align: center; padding: 26px 10px 10px; }
.ai-intro-ic {
  width: 86px; height: 86px; margin: 0 auto 24px; border-radius: 26px;
  background: linear-gradient(135deg, var(--brand), #1565A8);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 38px rgba(39,170,225,.4);
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY { 50% { transform: translateY(-8px); } }
.ai-intro h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.ai-intro p { color: rgba(255,255,255,.75); font-size: 15.5px; max-width: 440px; margin: 0 auto 30px; }
.ai-chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.ai-chip {
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px; border-radius: 999px;
}

.ai-step-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.ai-step-count { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6FD0F7; }
.ai-q-title { color: #fff; font-size: 23px; font-weight: 700; font-family: 'Poppins'; margin-bottom: 8px; }
.ai-q-sub { color: rgba(255,255,255,.65); font-size: 14.5px; margin-bottom: 26px; }
.ai-opts { display: grid; gap: 11px; }
.ai-opts.cols2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ai-opt {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 16px 18px; color: #fff;
  font-size: 15px; font-weight: 500; text-align: start; width: 100%;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.ai-opt:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.ai-opt.sel { background: rgba(39,170,225,.22); border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39,170,225,.18); }
.ai-opt .ck {
  width: 22px; height: 22px; border-radius: 7px; border: 2px solid rgba(255,255,255,.4);
  display: grid; place-items: center; flex: none; transition: .2s;
}
.ai-opt.sel .ck { background: var(--brand); border-color: var(--brand); }
.ai-opt.sel .ck::after { content: "✓"; color: #fff; font-size: 13px; font-weight: 800; }
.ai-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 12px; }
.ai-back { background: none; border: none; color: rgba(255,255,255,.6); font-size: 14.5px; font-weight: 600; padding: 10px 6px; display: inline-flex; align-items: center; gap: 6px; }
.ai-back:hover { color: #fff; }

/* analyzing */
.ai-an { text-align: center; padding: 30px 0 16px; }
.ai-ring { width: 92px; height: 92px; margin: 0 auto 28px; position: relative; }
.ai-ring svg { transform: rotate(-90deg); }
.ai-ring .tr { stroke: rgba(255,255,255,.12); }
.ai-ring .pr { stroke: var(--brand); stroke-linecap: round; transition: stroke-dashoffset .3s linear; }
.ai-an h3 { color: #fff; font-size: 21px; margin-bottom: 22px; }
.ai-an-step { color: rgba(255,255,255,.7); font-size: 14.5px; min-height: 22px; transition: opacity .3s; }

/* result */
.ai-res-head { text-align: center; margin-bottom: 26px; }
.ai-res-kicker { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #6FD0F7; margin-bottom: 8px; }
.ai-res-head h3 { color: #fff; font-size: 24px; }
.ai-res-card {
  background: linear-gradient(135deg, rgba(39,170,225,.16), rgba(255,255,255,.05));
  border: 1.5px solid rgba(39,170,225,.5); border-radius: var(--r-lg);
  padding: 26px 28px; margin-bottom: 18px; position: relative; overflow: hidden;
}
.ai-res-card::after {
  content: ""; position: absolute; top: 0; inset-inline-start: -60%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10), transparent);
  animation: shine 3.2s 1s infinite;
}
@keyframes shine { 40%, 100% { inset-inline-start: 120%; } }
.ai-res-name { color: #fff; font-family: 'Poppins'; font-size: 23px; font-weight: 700; }
.ai-res-tagline { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; }
.ai-res-price { color: #6FD0F7; font-family: 'Poppins'; font-weight: 800; font-size: 28px; margin-top: 12px; }
.ai-res-price small { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; font-family: 'Inter'; }
.ai-match-pill {
  position: absolute; top: 18px; inset-inline-end: 18px;
  background: rgba(31,169,124,.2); border: 1px solid rgba(31,169,124,.55); color: #5EEAB8;
  font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 6px 13px;
}
.ai-res-sec { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 20px 22px; margin-bottom: 14px; }
.ai-res-sec h4 { color: #fff; font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ai-res-sec h4 svg { color: var(--brand); flex: none; }
.ai-why-li { display: flex; gap: 10px; color: rgba(255,255,255,.82); font-size: 14px; padding: 5px 0; }
.ai-why-li::before { content: "•"; color: var(--brand); font-weight: 800; }
.ai-addon { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ai-addon:last-child { border-bottom: none; }
.ai-addon-n { color: #fff; font-size: 14.5px; font-weight: 600; }
.ai-addon-d { color: rgba(255,255,255,.6); font-size: 12.5px; }
.ai-addon-p { color: #6FD0F7; font-weight: 700; font-size: 14.5px; white-space: nowrap; }
.ai-sum-text { color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.75; }
.ai-total { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: rgba(39,170,225,.12); border: 1px solid rgba(39,170,225,.4); border-radius: var(--r-md); margin-bottom: 8px; }
.ai-total-l { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; }
.ai-total-v { color: #fff; font-family: 'Poppins'; font-size: 24px; font-weight: 800; }
.ai-est-note { color: rgba(255,255,255,.5); font-size: 12.5px; margin-bottom: 20px; }
.ai-res-ctas { display: grid; gap: 11px; }
.ai-res-ctas .btn { width: 100%; }
.ai-contents { margin-bottom: 14px; }
.ai-contents summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md); padding: 14px 18px;
  color: #fff; font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.ai-contents summary:hover { background: rgba(255,255,255,.11); }
.ai-contents summary::-webkit-details-marker { display: none; }
.ai-contents summary svg { color: var(--brand); flex: none; transition: transform .3s var(--ease); }
.ai-contents[open] summary svg:last-child { transform: rotate(180deg); }
.ai-contents summary .chev { margin-inline-start: auto; }
.ai-contents-body {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md); padding: 16px 20px; max-height: 300px; overflow: auto;
}
.ai-contents-body h5 {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6FD0F7;
  margin: 12px 0 5px; font-family: 'Poppins';
}
.ai-contents-body h5:first-child { margin-top: 0; }
.ai-contents-body li {
  list-style: none; font-size: 13px; color: rgba(255,255,255,.8); padding: 2px 0;
  display: flex; gap: 8px; overflow-wrap: anywhere; min-width: 0;
}
.ai-contents-body li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: none; }
.ai-restart { background: none; border: none; color: rgba(255,255,255,.55); font-size: 13.5px; font-weight: 600; margin: 18px auto 0; display: block; }
.ai-restart:hover { color: #fff; }
.ai-disclaimer { max-width: 720px; margin: 22px auto 0; text-align: center; font-size: 12.5px; color: rgba(255,255,255,.45); }

/* fade between steps */
.ai-fade { animation: aiFade .4s var(--ease); }
@keyframes aiFade { from { opacity: 0; transform: translateY(14px); } }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.pkg-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 24px;
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card.popular { border-color: var(--brand); box-shadow: 0 12px 44px rgba(39,170,225,.18); }
.pkg-pop {
  position: absolute; top: -15px; inset-inline-start: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 18px; white-space: nowrap; box-shadow: 0 6px 18px rgba(39,170,225,.4);
}
[dir="rtl"] .pkg-pop { transform: translateX(50%); }
.pkg-tier { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 10px; }
.pkg-name { font-size: 22px; margin-bottom: 6px; }
.pkg-tagline { font-size: 13.5px; color: var(--mut); margin-bottom: 18px; min-height: 40px; }
.pkg-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.pkg-from { font-size: 12.5px; color: var(--mut); font-weight: 500; }
.pkg-price { font-family: 'Poppins'; font-size: 38px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.pkg-tests { font-size: 13px; color: var(--brand-deep); font-weight: 600; margin-bottom: 18px; }
.pkg-desc { font-size: 14px; color: var(--mut); margin-bottom: 16px; }
.pkg-aud {
  font-size: 13px; color: var(--hopkins); background: var(--tint);
  border-inline-start: 3px solid var(--brand); padding: 10px 14px; border-radius: 8px; margin-bottom: 22px;
}
.pkg-toggle {
  background: none; border: none; color: var(--brand-deep); font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; margin-bottom: 14px;
}
.pkg-toggle svg { transition: transform .25s; }
.pkg-toggle.open svg { transform: rotate(180deg); }
.pkg-list { display: none; margin-bottom: 18px; max-height: 290px; overflow: auto; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.pkg-list.show { display: block; }
.pkg-list h5 { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); margin: 10px 0 5px; }
.pkg-list h5:first-child { margin-top: 0; }
.pkg-list li { font-size: 13px; color: var(--ink); list-style: none; padding: 2.5px 0; display: flex; gap: 8px; overflow-wrap: anywhere; min-width: 0; }
.pkg-list li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: none; }
.pkg-card .btn { margin-top: auto; }

.minis-head { text-align: center; margin: 76px auto 36px; max-width: 680px; }
.minis-head h3 { font-size: clamp(22px, 2.6vw, 30px); }
.minis-head p { color: var(--mut); margin-top: 12px; font-size: 15.5px; }
.mini-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.mini-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 18px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
  min-width: 0; /* never let long test names widen the column */
}
.mini-card > * { min-width: 0; }
.mini-name, .mini-desc { overflow-wrap: break-word; }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(39,170,225,.45); }
.mini-ic { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 13px; background: var(--brand-soft); color: var(--brand-deep); display: grid; place-items: center; }
.mini-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Poppins'; }
.mini-desc { font-size: 12px; color: var(--mut); margin-top: 5px; line-height: 1.5; }
/* bottom block (requirement note + price) pinned to the card base so siblings align */
.mini-bottom { margin-top: auto; padding-top: 10px; }
.mini-price { font-size: 13px; font-weight: 700; color: var(--brand-deep); }
.mini-req { font-size: 10.5px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.mini-tests {
  list-style: none; margin: 10px 0 0; padding: 9px 10px 7px;
  background: var(--tint); border-radius: 9px; text-align: start;
  flex: 1 1 auto; max-height: 132px; overflow: auto;
}
/* card without a test list (e.g. Diabetes): keep the description vertically centered */
.mini-card > .mini-desc:last-child { margin-block: auto; }
.mini-tests li {
  font-size: 10.5px; color: var(--mut); line-height: 1.45; padding: 1.5px 0;
  display: flex; gap: 6px; align-items: flex-start;
  overflow-wrap: anywhere; min-width: 0; /* break long tokens like (EEG+EOG+EMG+ECG+Respiratory) */
}
.mini-tests li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: none; font-size: 10px; margin-top: 1px; }

/* ---------- Configurator ---------- */
.cfg { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cfg-left { min-width: 0; }
.cfg-step-h { display: flex; align-items: center; gap: 13px; margin: 0 0 18px; }
.cfg-step-n {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 15px; font-family: 'Poppins';
}
.cfg-step-h h3 { font-size: 19px; }
.cfg-step-h small { display: block; font-size: 12.5px; color: var(--mut); font-weight: 400; margin-top: 1px; }
.cfg-gender { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; font-size: 13.5px; color: var(--mut); flex-wrap: wrap; }
.cfg-gender .gbtns { display: inline-flex; background: var(--tint); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.cfg-gender button {
  border: none; background: none; border-radius: 999px; padding: 8px 20px;
  font-size: 13.5px; font-weight: 600; color: var(--mut); transition: .2s;
}
.cfg-gender button.sel { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.cfg-panels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 38px; }
.cfg-panel {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 20px 18px; text-align: start; transition: .25s var(--ease); position: relative;
}
.cfg-panel:hover { border-color: rgba(39,170,225,.5); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cfg-panel.sel { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 3px rgba(39,170,225,.15); }
.cfg-panel .nm { font-family: 'Poppins'; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.cfg-panel .pr { font-size: 18px; font-weight: 800; font-family: 'Poppins'; color: var(--brand-deep); }
.cfg-panel .tc { font-size: 12px; color: var(--mut); margin-top: 3px; }
.cfg-panel .ck {
  position: absolute; top: 12px; inset-inline-end: 12px; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--line); display: grid; place-items: center; transition: .2s; background: #fff;
}
.cfg-panel.sel .ck { background: var(--brand); border-color: var(--brand); }
.cfg-panel.sel .ck::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 800; }
.cfg-minis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.cfg-mini {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: 13.5px; font-weight: 600; color: var(--ink); text-align: start;
  transition: .22s var(--ease); position: relative;
}
.cfg-mini:hover:not(:disabled) { border-color: rgba(39,170,225,.5); transform: translateY(-2px); }
.cfg-mini.sel { border-color: var(--brand); background: var(--brand-soft); }
.cfg-mini:disabled { opacity: .45; cursor: not-allowed; }
.cfg-mini .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--brand-soft); color: var(--brand-deep); display: grid; place-items: center; flex: none; }
.cfg-mini.sel .ic { background: var(--brand); color: #fff; }
.cfg-mini .mp { margin-inline-start: auto; font-size: 12.5px; color: var(--brand-deep); font-weight: 700; white-space: nowrap; }
.cfg-mini .cov { font-size: 10.5px; color: var(--ok); font-weight: 600; display: block; }

.cfg-sum {
  background: #fff; border: 1.5px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow-md); padding: 28px 26px; position: sticky; top: 96px;
}
.cfg-sum h3 { font-size: 17px; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.cfg-sum h3 svg { color: var(--brand-deep); }
.cfg-sum-rows { margin-bottom: 6px; }
.cfg-row { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.cfg-row .l { color: var(--mut); }
.cfg-row .v { font-weight: 600; color: var(--ink); white-space: nowrap; }
.cfg-row.emph .l, .cfg-row.emph .v { color: var(--ok); font-weight: 600; }
.cfg-dup-info { display: inline-flex; align-items: center; gap: 5px; cursor: help; position: relative; }
.cfg-dup-info .tip {
  position: absolute; bottom: calc(100% + 8px); inset-inline-start: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-size: 12px; line-height: 1.5; font-weight: 400;
  border-radius: 10px; padding: 10px 13px; width: 230px; text-align: start;
  opacity: 0; visibility: hidden; transition: .2s; z-index: 5; box-shadow: var(--shadow-lg);
}
[dir="rtl"] .cfg-dup-info .tip { transform: translateX(50%); }
.cfg-dup-info:hover .tip { opacity: 1; visibility: visible; }
.cfg-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 4px; }
.cfg-total .l { font-size: 14px; font-weight: 600; color: var(--mut); }
.cfg-total .v { font-family: 'Poppins'; font-size: 32px; font-weight: 800; color: var(--navy); }
.cfg-tests-n { font-size: 12.5px; color: var(--mut); margin-bottom: 18px; }
.cfg-sum .btn { width: 100%; }

/* examination list expander inside the summary */
.cfg-contents { margin: 2px 0 12px; }
.cfg-contents summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--mut); padding: 7px 0;
}
.cfg-contents summary::-webkit-details-marker { display: none; }
.cfg-contents summary strong { color: var(--ink); }
.cfg-contents summary .chev { margin-inline-start: auto; color: var(--brand-deep); transition: transform .25s var(--ease); }
.cfg-contents[open] summary .chev { transform: rotate(180deg); }
.cfg-contents-body { max-height: 240px; overflow: auto; background: var(--tint); border-radius: 9px; padding: 10px 12px; }
.cfg-contents-body h5 { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); margin: 9px 0 4px; }
.cfg-contents-body h5:first-child { margin-top: 0; }
.cfg-contents-body li { list-style: none; font-size: 11.5px; color: var(--ink); padding: 1.5px 0; display: flex; gap: 6px; overflow-wrap: anywhere; min-width: 0; }
.cfg-contents-body li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: none; }
.cfg-contents-body li > span { flex: 1; min-width: 0; }
.cfg-contents-body li.is-new { color: var(--ink); font-weight: 600; }
.new-pill { display: inline-block; white-space: nowrap; font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--ok); border-radius: 999px; padding: 1px 6px; margin-inline-start: 4px; }
.cfg-newvs { font-size: 11.5px; font-weight: 700; color: var(--ok); margin-bottom: 9px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }

/* one-tap upgrade nudge (cumulative packages only add) */
.cfg-upsell {
  display: block; width: 100%; text-align: center; margin: 0 0 14px; padding: 11px 12px;
  border: 1px dashed var(--brand); background: var(--brand-soft); color: var(--brand-deep);
  border-radius: 10px; font-size: 12.5px; font-weight: 700; transition: background .2s, transform .2s var(--ease);
}
.cfg-upsell:hover { background: #D4EFFC; transform: translateY(-1px); }
.cfg-empty { color: var(--mut); font-size: 13.5px; text-align: center; padding: 18px 0; }

/* summary modal */
.smodal {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px;
  background: rgba(11,42,74,.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: .3s;
}
.smodal.show { opacity: 1; visibility: visible; }
.smodal-card {
  background: #fff; border-radius: 24px; max-width: 560px; width: 100%; max-height: 86vh;
  overflow: auto; padding: 34px 32px; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); transition: .3s var(--ease);
}
.smodal.show .smodal-card { transform: none; }
.smodal-card h3 { font-size: 21px; margin-bottom: 20px; }
.smodal-x { position: absolute; top: 18px; inset-inline-end: 18px; background: none; border: none; color: #fff; font-size: 26px; line-height: 1; }
.sm-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.sm-row .v { font-weight: 700; white-space: nowrap; }
.sm-actions { display: grid; gap: 10px; margin-top: 24px; }
.sm-actions .btn { width: 100%; }

/* ---------- Why Us ---------- */
.wu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.wu-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.wu-ic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), #1A4A7A); color: #fff; margin-bottom: 18px; }
.wu-card:nth-child(4n+2) .wu-ic { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.wu-card h3 { font-size: 16px; margin-bottom: 8px; }
.wu-card p { font-size: 13.5px; color: var(--mut); }

/* ---------- Journey ---------- */
.jr { list-style: none; position: relative; max-width: 880px; margin: 0 auto; }
.jr::before {
  content: ""; position: absolute; inset-block: 8px; inset-inline-start: 27px; width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--line));
}
.jr-step { position: relative; padding: 0 0 36px 78px; }
[dir="rtl"] .jr-step { padding: 0 78px 36px 0; }
.jr-step:last-child { padding-bottom: 0; }
.jr-n {
  position: absolute; inset-inline-start: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand); color: var(--brand-deep);
  font-family: 'Poppins'; font-weight: 700; font-size: 19px;
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(39,170,225,.2); z-index: 1;
}
.jr-step h3 { font-size: 17.5px; margin: 8px 0 6px; }
.jr-step p { font-size: 14.5px; color: var(--mut); max-width: 560px; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.tst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tst-stars { color: #F5B50A; font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.tst-text { font-size: 14.5px; color: var(--ink); flex: 1; }
.tst-text::before { content: "“"; color: var(--brand); font-size: 34px; line-height: 0; vertical-align: -12px; margin-inline-end: 4px; font-family: Georgia, serif; }
.tst-who { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.tst-av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--hopkins)); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 15px; font-family: 'Poppins';
}
.tst-name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.tst-cty { font-size: 12.5px; color: var(--mut); }
.tst-note { text-align: center; font-size: 12px; color: var(--mut); margin-top: 26px; opacity: .8; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: rgba(39,170,225,.5); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 19px 22px; font-weight: 600; font-size: 15.5px; color: var(--navy); font-family: 'Poppins';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-pl {
  margin-inline-start: auto; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-deep); display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq-item[open] .faq-pl { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--mut); line-height: 1.7; }

/* ---------- Contact ---------- */
.sec-contact .sec-head { margin-bottom: 44px; }
.ct-grid { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.ct-form {
  background: #fff; border-radius: 24px; padding: 34px 32px; box-shadow: var(--shadow-lg);
}
.f-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.f-field { margin-bottom: 16px; min-width: 0; }
.f-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px;
  background: #fff; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(39,170,225,.15);
}
.f-field textarea { resize: vertical; }
.f-privacy { font-size: 12px; color: var(--mut); margin: 6px 0 18px; }
.f-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.f-actions .btn { flex: 1; min-width: 200px; }
.f-note { margin-top: 14px; font-size: 13px; color: var(--ok); font-weight: 600; }
.f-recaptcha { margin-top: 12px; font-size: 11px; color: var(--mut); opacity: .8; }
.f-recaptcha a { color: var(--brand-deep); text-decoration: underline; }
/* badge hidden — attribution shown in .f-recaptcha instead (Google-compliant) */
.grecaptcha-badge { visibility: hidden; }
.f-err { border-color: #E5484D !important; }

.ct-direct {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px; padding: 28px 26px; backdrop-filter: blur(10px);
}
.ct-direct h3 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.ct-card {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  padding: 15px 16px; margin-bottom: 11px; color: #fff; font-size: 13.5px;
  transition: background .2s, transform .2s var(--ease);
}
.ct-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.ct-card strong { font-size: 14.5px; }
.ct-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(39,170,225,.2); color: #6FD0F7; display: grid; place-items: center; flex: none; }
.ct-ic-wa { background: rgba(37,211,102,.18); color: #5EEAB8; }
.ct-hours { color: rgba(255,255,255,.6); font-size: 12.5px; margin: 16px 0 20px; }
.ct-badge { height: 64px; width: auto; margin: 0 auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }

/* ---------- Footer ---------- */
.ftr { background: #081D33; color: rgba(255,255,255,.75); padding: 64px 0 28px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ftr-logo { height: 44px; width: auto; margin-bottom: 18px; }
.ftr-brand p { font-size: 14px; max-width: 360px; }
.ftr-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.ftr-col a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,.7); transition: color .2s; }
.ftr-col a:hover { color: var(--brand); }
.ftr-langs { display: flex; flex-wrap: wrap; gap: 6px; }
.ftr-langs a { display: inline-block; font-size: 12px; font-weight: 600; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 5px 12px; }
.ftr-langs a:hover { border-color: var(--brand); color: var(--brand); }
.ftr-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.ftr-disc { font-size: 12px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; line-height: 1.7; }
.ftr-bottom { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 18px; }
.ftr-credit { font-size: 11.5px; color: rgba(255,255,255,.35); margin-top: 8px; line-height: 1.7; }
.ftr-credit a { color: rgba(255,255,255,.5); }
.ftr-credit a:hover { color: var(--brand); }

/* ---------- Form consent checkbox ---------- */
.f-consent { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 18px; font-size: 12.5px; color: var(--mut); cursor: pointer; }
.f-consent input { width: 18px; height: 18px; flex: none; margin-top: 1px; accent-color: var(--brand); cursor: pointer; }
.f-consent.f-err { color: #E5484D; }
.f-consent.f-err input { outline: 2px solid #E5484D; outline-offset: 2px; border-radius: 4px; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 980;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(11,42,74,.10);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.cookie-banner.show { transform: none; }
.cookie-banner-in {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner-txt { font-size: 13.5px; color: var(--ink); flex: 1; min-width: 240px; margin: 0; }
.cookie-link { background: none; border: none; color: var(--brand-deep); font-weight: 600; text-decoration: underline; font-size: 13.5px; cursor: pointer; padding: 0; }
.cookie-acts { display: flex; gap: 10px; flex: none; }
.cookie-acts .btn { white-space: nowrap; }

/* ---------- Cookie policy modal ---------- */
.cmodal {
  position: fixed; inset: 0; z-index: 1010; display: grid; place-items: center; padding: 20px;
  background: rgba(11,42,74,.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: .3s;
}
.cmodal.show { opacity: 1; visibility: visible; }
.cmodal-card {
  position: relative; background: #fff; border-radius: 22px; max-width: 580px; width: 100%;
  max-height: 86vh; overflow: auto; padding: 34px 32px; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); transition: .3s var(--ease);
}
.cmodal.show .cmodal-card { transform: none; }
.cmodal-x { position: absolute; top: 16px; inset-inline-end: 18px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--mut); cursor: pointer; }
.cmodal-card h3 { font-size: 21px; margin-bottom: 16px; }
.cmodal-card h4 { font-size: 14.5px; color: var(--navy); margin: 16px 0 4px; }
.cmodal-card p { font-size: 13.5px; color: var(--mut); line-height: 1.65; }
.cmodal-manage { margin-top: 14px; font-size: 12.5px; }
.cmodal-acts { display: flex; gap: 10px; margin-top: 24px; }
.cmodal-acts .btn { flex: 1; }

.ftr-cookie-link { background: none; border: none; color: rgba(255,255,255,.55); font-size: 12.5px; text-decoration: underline; cursor: pointer; padding: 0; font-family: inherit; }
.ftr-cookie-link:hover { color: var(--brand); }
/* lift the floating WhatsApp above the consent banner while it is visible */
.has-cookie-banner .wa-float { bottom: 122px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
  animation: waIn 1s 2s var(--ease) backwards;
}
@keyframes waIn { from { transform: scale(0); } }
.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hdr-nav { display: none; }
  .burger { display: block; }
  .hdr-nav.open {
    display: flex; position: fixed; top: 64px; inset-inline: 12px;
    flex-direction: column; background: #fff; border-radius: var(--r-md);
    box-shadow: var(--shadow-lg); padding: 14px; gap: 2px; z-index: 800;
  }
  .hdr-nav.open a { color: var(--ink); padding: 13px 16px; font-size: 15px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3)::before { display: none; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cfg { grid-template-columns: 1fr; }
  .cfg-sum { position: static; }
  .wu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tst-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) and (min-width: 681px) {
  .accr-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .sec { padding: 64px 0; }
  .accr-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .accr-card { font-size: 10.5px; padding: 10px 11px; }
  .accr-card img { height: 34px; }
  .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-wrap { margin-bottom: 40px; border-radius: var(--r-md); }
  .ftr-actions .btn { width: 100%; }
  .hero-in { padding: 120px 20px 70px; }
  .hero-trust { gap: 14px; }
  .trust-sep { display: none; }
  .trust-img { height: 46px; }
  .hdr-cta { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 26px 12px; }
  .stat-v { font-size: 30px; }
  .ai-body { padding: 28px 20px 30px; }
  .ai-opts.cols2 { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cfg-panels { grid-template-columns: 1fr; }
  .cfg-minis { grid-template-columns: 1fr; }
  .wu-grid { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .jr::before { inset-inline-start: 23px; }
  .jr-n { width: 48px; height: 48px; font-size: 16px; }
  .jr-step { padding: 0 0 30px 66px; }
  [dir="rtl"] .jr-step { padding: 0 66px 30px 0; }
  .wa-float { width: 54px; height: 54px; bottom: 18px; inset-inline-end: 18px; }
}
