:root {
  --sky: #4BB8E8;
  --sky-light: #D6F0FC;
  --sky-pale: #EEF9FF;
  --mint: #5CC8B0;
  --mint-light: #D4F3EC;
  --sun: #FFD166;
  --coral: #FF8C69;
  --coral-light: #FFE5DC;
  --purple: #A78BFA;
  --purple-light: #EDE9FE;
  --navy: #1E3A5F;
  --body: #3D4A5C;
  --soft-bg: #F7FBFF;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-lg: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--soft-bg);
  color: var(--body);
  overflow-x: hidden;
}

/* ── GLOBAL LINK RESET ── */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

a:active {
  color: inherit;
}

a:focus {
  outline: none;
  color: inherit;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(75,184,232,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 2px 10px rgba(30,58,95,0.12);
}
.nav-logo span {
  font-weight: 900; font-size: 1.05rem; color: var(--navy);
  line-height: 1.2;
}
.nav-logo span small {
  display: block; font-weight: 600; font-size: 0.72rem;
  color: var(--sky); letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--body);
  font-weight: 700; font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky); }
.nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--mint));
  color: white !important;
  padding: 9px 20px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 14px rgba(75,184,232,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(75,184,232,0.45) !important; color: white !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hero-blob {
  position: fixed; top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(75,184,232,0.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  animation: blobPulse 6s ease-in-out infinite;
}
.hero-blob2 {
  position: fixed; bottom: -150px; left: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,200,176,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-light);
  color: var(--sky); border-radius: 50px;
  padding: 8px 18px; font-size: 0.82rem; font-weight: 800;
  margin-bottom: 22px; letter-spacing: 0.3px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span { font-size: 1rem; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy); line-height: 1.15;
  animation: fadeUp 0.7s 0.1s ease both;
}
h1 em { font-style: normal; color: var(--sky); }
.hero-sub {
  margin-top: 18px; font-size: 1.05rem; line-height: 1.75;
  color: var(--body); max-width: 500px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--mint));
  color: white; border: none; padding: 15px 32px;
  border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  box-shadow: 0 6px 20px rgba(75,184,232,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(75,184,232,0.5); }
.btn-secondary {
  background: white; color: var(--navy);
  border: 2.5px solid var(--sky-light);
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1rem; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--sky); transform: translateY(-2px); }

.hero-trust {
  margin-top: 36px; display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid white; margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; background: var(--sky-light);
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 0.84rem; font-weight: 700; color: var(--body); }
.trust-text strong { color: var(--navy); }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 2;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-card-main {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(30,58,95,0.1);
  position: relative;
}
.hc-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.hc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-light), var(--mint-light));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.hc-title { font-weight: 900; font-size: 1.1rem; color: var(--navy); }
.hc-sub { font-size: 0.82rem; color: var(--sky); font-weight: 700; }
.hc-steps { display: flex; flex-direction: column; gap: 12px; }
.hc-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--soft-bg); border-radius: 14px; padding: 12px 16px;
}
.hc-step-dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.82rem; color: white;
}
.dot-sky { background: var(--sky); }
.dot-mint { background: var(--mint); }
.dot-sun { background: var(--coral); }
.hc-step-text { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.hc-step-text span { display: block; font-weight: 600; font-size: 0.78rem; color: var(--body); }

.float-badge {
  position: absolute;
  background: white; border-radius: 14px;
  padding: 10px 16px; box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 0.82rem; color: var(--navy);
  white-space: nowrap;
}
.float-badge-1 { top: -18px; right: -10px; }
.float-badge-2 { bottom: -18px; left: -14px; }
.fb-dot { width: 10px; height: 10px; border-radius: 50%; }

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

/* ── SECTION WRAPPER ── */
section { padding: 80px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
  color: var(--sky);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy); line-height: 1.2;
  margin-bottom: 14px;
}
.section-intro {
  font-size: 1.05rem; line-height: 1.75; color: var(--body);
  max-width: 620px; margin-bottom: 50px;
}

/* ── ABOUT ── */
.about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.about-card {
  background: var(--soft-bg); border-radius: var(--radius);
  padding: 22px 20px; text-align: center;
  transition: transform 0.25s;
}
.about-card:hover { transform: translateY(-4px); }
.about-card:nth-child(2) { margin-top: 28px; }
.about-card:nth-child(4) { margin-top: 28px; }
.ac-emoji { font-size: 2.2rem; margin-bottom: 8px; }
.ac-title { font-weight: 900; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.ac-desc { font-size: 0.8rem; font-weight: 600; color: var(--body); line-height: 1.4; }
.ac-1 { border-top: 4px solid var(--sky); }
.ac-2 { border-top: 4px solid var(--mint); }
.ac-3 { border-top: 4px solid var(--sun); }
.ac-4 { border-top: 4px solid var(--purple); }

.about-text blockquote {
  background: var(--sky-pale); border-left: 4px solid var(--sky);
  border-radius: 0 14px 14px 0; padding: 16px 20px;
  font-style: italic; font-size: 0.95rem; line-height: 1.6;
  color: var(--navy); font-weight: 600; margin: 28px 0;
}
.dr-info {
  display: flex; align-items: center; gap: 12px;
  background: var(--mint-light); border-radius: 14px; padding: 14px 18px;
}
/* ── DR. PHOTO ── */
.dr-av-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.dr-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(30,58,95,0.15);
}

.dr-photo-badge {
  position: absolute;
  bottom: 0px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(30,58,95,0.15);
}
.dr-name { font-weight: 900; font-size: 0.92rem; color: var(--navy); }
.dr-title { font-size: 0.78rem; font-weight: 600; color: var(--body); }

/* ── SERVICES ── */
.services { background: var(--soft-bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  background: white; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(30,58,95,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
}
.svc-card:nth-child(1)::before { background: var(--sky); }
.svc-card:nth-child(2)::before { background: var(--mint); }
.svc-card:nth-child(3)::before { background: var(--coral); }
.svc-card:nth-child(4)::before { background: var(--sun); }
.svc-card:nth-child(5)::before { background: var(--purple); }
.svc-card:nth-child(6)::before { background: linear-gradient(90deg, var(--sky), var(--mint)); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(30,58,95,0.12); }
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.svc-icon-sky { background: var(--sky-light); }
.svc-icon-mint { background: var(--mint-light); }
.svc-icon-coral { background: var(--coral-light); }
.svc-icon-sun { background: #FFF3D1; }
.svc-icon-purple { background: var(--purple-light); }
.svc-icon-grad { background: var(--sky-light); }
.svc-title { font-weight: 900; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.svc-desc { font-size: 0.86rem; line-height: 1.65; color: var(--body); }

/* ── WHY US ── */
.whyus { background: var(--navy); color: white; }
.whyus h2 { color: white; }
.whyus .section-label { color: var(--sky); }
.whyus .section-intro { color: rgba(255,255,255,0.75); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 26px 22px;
  transition: background 0.25s;
}
.why-card:hover { background: rgba(75,184,232,0.15); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--sky); font-weight: 700;
  margin-bottom: 8px;
}
.why-title { font-weight: 900; font-size: 0.95rem; margin-bottom: 8px; }
.why-desc { font-size: 0.83rem; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* ── PROCESS ── */
.process { background: white; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 20px;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--mint));
  z-index: 0;
}
.ps-item { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.ps-circle {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 32px;
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(30,58,95,0.12);
}
.ps-c1 { background: var(--sky-light); }
.ps-c2 { background: var(--mint-light); }
.ps-c3 { background: var(--coral-light); }
.ps-c4 { background: var(--purple-light); }
.ps-num {
  position: absolute; top: -8px; right: calc(50% - 50px);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: white;
  font-size: 0.72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.ps-title { font-weight: 900; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.ps-desc { font-size: 0.82rem; line-height: 1.55; color: var(--body); }

/* ── INSURANCE ── */
.insurance { background: var(--sky-pale); }
.ins-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.ins-cards { display: flex; flex-direction: column; gap: 14px; }
.ins-card {
  background: white; border-radius: 16px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 4px 16px rgba(30,58,95,0.06);
}
.ins-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ins-name { font-weight: 900; font-size: 0.92rem; color: var(--navy); }
.ins-desc { font-size: 0.78rem; color: var(--body); font-weight: 600; }
.ins-note {
  background: white; border-radius: var(--radius); padding: 22px 24px;
  border-left: 5px solid var(--sky);
  box-shadow: 0 4px 16px rgba(30,58,95,0.06);
  font-size: 0.9rem; line-height: 1.65; color: var(--body);
  margin-top: 10px;
}
.ins-note strong { color: var(--navy); }

/* ── WAITLIST FORM ── */
.waitlist {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75,184,232,0.82) 0%, rgba(92,200,176,0.82) 100%);
  z-index: 0;
}
.waitlist::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
}
.waitlist-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.waitlist-text h2 { color: white; }
.waitlist-text p { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.7; margin-top: 14px; }
.waitlist-perks { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: center; gap: 10px; color: white; font-weight: 700; font-size: 0.9rem; }
.perk-dot { width: 24px; height: 24px; background: rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }

.wl-form {
  background: white; border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(30,58,95,0.2);
}
.wl-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 22px; }
.success-msg:not([style*="display: none"]) ~ h3,
.wl-form:has(#successMsg[style*="display: block"]) h3 { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-weight: 800; font-size: 0.78rem; color: var(--navy); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #E5EFF7; border-radius: 12px;
  padding: 11px 14px; font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; color: var(--body); outline: none;
  transition: border-color 0.2s;
  background: var(--soft-bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  color: white; border: none; border-radius: 50px;
  padding: 15px; font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1rem; cursor: pointer;
  box-shadow: 0 6px 20px rgba(75,184,232,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(75,184,232,0.5); }
.form-privacy { text-align: center; font-size: 0.75rem; color: #9BAFC4; margin-top: 10px; font-weight: 600; }

/* ── FAQ ── */
.faq { background: var(--soft-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: white; border-radius: 16px; padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(30,58,95,0.05);
  border-left: 4px solid transparent;
  transition: border-color 0.2s;
  cursor: pointer;
}
.faq-item:hover { border-color: var(--sky); }
.faq-q { font-weight: 900; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: flex-start; }
.faq-a { font-size: 0.86rem; line-height: 1.65; color: var(--body); }

/* ── CONTACT ── */
.contact { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--soft-bg); border-radius: 16px; padding: 18px 20px;
}
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sky-light); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ci-label { font-weight: 900; font-size: 0.8rem; color: var(--sky); margin-bottom: 3px; letter-spacing: 0.5px; text-transform: uppercase; }
.ci-value { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.ci-sub { font-size: 0.8rem; color: var(--body); margin-top: 2px; }

.contact-map {
  background: var(--sky-pale); border-radius: var(--radius);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--sky);
  border: 2px dashed var(--sky-light);
  font-weight: 700; font-size: 0.9rem; padding: 30px;
  text-align: center;
}
.map-pin { font-size: 3rem; }
.map-address { color: var(--navy); font-size: 1rem; font-weight: 800; }
.map-sub { color: var(--body); font-size: 0.85rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.8);
  padding: 50px 40px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.logo-img-footer {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 2px 10px rgba(255,255,255,0.15);
}
.footer-logo span { font-weight: 900; font-size: 0.95rem; color: white; line-height: 1.2; }
.footer-logo span small { display: block; font-size: 0.7rem; color: var(--sky); font-weight: 600; }
.footer-col h4 { color: white; font-weight: 900; font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col a, .footer-col p {
  display: block; color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.85rem;
  margin-bottom: 8px; font-weight: 600;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.dba-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none; text-align: center; padding: 20px;
}
.success-msg .check { font-size: 3rem; margin-bottom: 10px; }
.success-msg h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.3rem; margin-bottom: 6px; }
.success-msg p { font-size: 0.88rem; color: var(--body); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .hero-visual { display: none; }
  section { padding: 60px 20px; }
  .about-grid, .ins-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .waitlist-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
/* ── TURNSTILE CAPTCHA ── */
.cf-turnstile {
  margin: 12px 0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 65px;
  width: 100%;
  display: block;
}

.cf-turnstile iframe {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 8px;
}