
:root {
  --navy: #0b2d5c;
  --blue: #145da0;
  --sky: #eaf4ff;
  --teal: #0b8f8a;
  --ink: #152238;
  --muted: #5f6f82;
  --line: #dce6f0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(12, 45, 92, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: 88px 0; }
.section-alt { background: #f7faff; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 9999; background: white; padding: 10px 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,230,240,.9);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  color: white; font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.brand strong, .brand small { display: block; }
.brand strong { color: var(--navy); line-height: 1.2; }
.brand small { color: var(--muted); font-size: .75rem; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; font-weight: 650; }
.main-nav a:hover { color: var(--blue); }
.nav-cta { background: var(--navy); color: white !important; padding: 11px 17px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--navy); display: block; margin: 5px 0; }

.hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(20,93,160,.12), transparent 35%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
  overflow: hidden;
}
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; padding: 68px 0; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; color: var(--teal);
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem;
}
.hero h1, .section h2 { margin: 0; color: var(--navy); letter-spacing: -.03em; line-height: 1.08; }
.hero h1 { font-size: clamp(2.75rem, 5vw, 5.2rem); max-width: 760px; }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 710px; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; cursor: pointer;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: #071f41; }
.btn-secondary { border-color: var(--navy); color: var(--navy); background: white; }
.btn-light { background: white; color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.trust-row span { background: rgba(255,255,255,.8); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; color: var(--navy); font-size: .86rem; font-weight: 700; }

.hero-visual { position: relative; align-self: end; }
.hero-visual img { width: 100%; max-height: 610px; object-fit: cover; object-position: center top; border-radius: 34px 34px 0 0; box-shadow: var(--shadow); }
.hero-card {
  position: absolute; left: -28px; bottom: 30px; background: rgba(255,255,255,.96);
  padding: 18px 22px; border-radius: 18px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-card strong, .hero-card span { display: block; }
.hero-card strong { color: var(--navy); }
.hero-card span { color: var(--muted); font-size: .86rem; margin-top: 3px; }

.quick-contact { background: var(--navy); color: white; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-contact a { padding: 22px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.15); }
.quick-contact a:last-child { border-right: 0; }
.quick-contact small, .quick-contact strong { display: block; }
.quick-contact small { opacity: .72; }
.quick-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.12); font-weight: 900; }

.intro { text-align: center; }
.intro h2, .section-heading h2, .clinic-section h2, .about-panel h2, .contact-section h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); }
.intro p { font-size: 1.12rem; color: var(--muted); }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-heading p { max-width: 420px; color: var(--muted); }
.section-heading.centered { justify-content: center; text-align: center; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 8px 24px rgba(12,45,92,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  min-width: 48px; width: fit-content; height: 48px; padding: 0 12px;
  display: grid; place-items: center; border-radius: 15px;
  background: var(--sky); color: var(--blue); font-weight: 900; margin-bottom: 18px;
}
.service-card h3 { color: var(--navy); line-height: 1.25; margin: 0 0 10px; font-size: 1.15rem; }
.service-card > p { color: var(--muted); margin: 0 0 18px; }
.details-toggle { border: 0; background: transparent; color: var(--blue); padding: 0; font-weight: 800; cursor: pointer; }
.service-details { display: none; padding-top: 16px; }
.service-details.open { display: block; }
.service-details ul { padding-left: 20px; color: #3f5066; }
.carrier-note, .legal-note { font-size: .88rem; padding: 13px; border-radius: 12px; }
.carrier-note { background: #eef7ff; }
.legal-note { background: #fff7e8; color: #6b4b12; }

.clinic-section { background: linear-gradient(135deg, var(--navy), #145da0); color: white; }
.clinic-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.clinic-section h2 { color: white; }
.clinic-section p { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.eyebrow.light { color: #9fe6df; }
.clinic-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.clinic-list div { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); padding: 16px; border-radius: 15px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-panel p { color: var(--muted); font-size: 1.06rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.values-grid div { border: 1px solid var(--line); padding: 22px; border-radius: 18px; background: white; }
.values-grid strong, .values-grid span { display: block; }
.values-grid strong { color: var(--navy); margin-bottom: 7px; }
.values-grid span { color: var(--muted); font-size: .94rem; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--navy); }
.faq-list p { color: var(--muted); }

.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.contact-section p { color: var(--muted); }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-cards a { border: 1px solid var(--line); border-radius: 16px; padding: 17px 18px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: var(--muted); }
.contact-cards strong { color: var(--navy); }

.contact-form { background: #f7faff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 750; color: var(--navy); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid #cbd8e6; border-radius: 12px; padding: 12px 13px; background: white; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 3px solid rgba(20,93,160,.15); border-color: var(--blue);
}
.form-note { font-size: .82rem; margin: 0; }

.disclaimer { background: #f1f5f9; border-top: 1px solid var(--line); padding: 22px 0; }
.disclaimer p { margin: 0; color: #59687a; font-size: .85rem; }

.site-footer { background: #081f3f; color: white; padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-grid strong { display: block; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { display: block; color: rgba(255,255,255,.72); margin: 6px 0; }
.copyright { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .82rem; }

.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: white; font-weight: 900;
  background: #1fa855; box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: white; padding: 20px; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .clinic-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 46px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .hero-card { left: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact-grid { grid-template-columns: 1fr; }
  .quick-contact a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .quick-contact a:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .section { padding: 64px 0; }
  .brand small { display: none; }
  .brand strong { font-size: .92rem; }
  .hero-grid { min-height: auto; gap: 34px; }
  .hero h1 { font-size: 2.65rem; }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-visual img { border-radius: 26px 26px 0 0; }
  .hero-card { position: static; border-radius: 0 0 20px 20px; }
  .service-grid, .clinic-list, .values-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; }
}
