:root {
  --bg: #edf6fb;
  --surface: #ffffff;
  --surface-2: #e7f1f8;
  --text: #102338;
  --muted: #4e667d;
  --brand: #0f6ea8;
  --brand-dark: #0b4d75;
  --line: #c8dbe8;
  --ok: #178b7a;
  --shadow: 0 18px 45px rgba(15, 55, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #dff1fb 0%, transparent 42%),
    radial-gradient(circle at 100% 20%, #cde8f5 0%, transparent 38%),
    linear-gradient(135deg, #f3f9fd 0%, #e8f2f9 58%, #deedf8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.65;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  z-index: -1;
}

.orb-left {
  width: 270px;
  height: 270px;
  left: -70px;
  top: 80px;
  background: #89caeb;
}

.orb-right {
  width: 320px;
  height: 320px;
  right: -90px;
  top: 260px;
  background: #9cd7d8;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(130deg, var(--brand), #20a0ce);
  color: #fff;
  font-weight: 700;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-text span {
  color: var(--brand-dark);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.35rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.highlight {
  color: var(--brand);
}

.lead {
  color: var(--muted);
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(130deg, var(--brand), #13a4d4);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 85, 130, 0.3);
}

.btn-outline {
  border-color: var(--line);
  background: #f5fbff;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: #f4fbff;
}

.hero-badges {
  margin-top: 1.3rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-badges li {
  margin: 0.25rem 0;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 36, 60, 0.62), rgba(4, 36, 60, 0.08));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  border: 1px solid rgba(206, 231, 245, 0.45);
  background: rgba(13, 88, 131, 0.48);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
}

.stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stats article {
  background: linear-gradient(135deg, #f7fcff 0%, #edf6fc 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.stats strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ok);
  display: block;
}

.stats span {
  display: block;
  color: var(--muted);
}

.section {
  margin-top: 5.2rem;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  background: linear-gradient(130deg, #ffffff 0%, #f5fbff 100%);
  border-radius: 18px;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--muted);
}

.split-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  background: linear-gradient(130deg, #f8fdff 0%, #eaf4fa 100%);
}

.split-card p {
  color: #4a6178;
  margin-top: 0.8rem;
}

.patient {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.checklist {
  margin: 0;
  padding-left: 1.1rem;
  color: #2b4f69;
  display: grid;
  gap: 0.7rem;
}

.smile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.smile-card {
  margin: 0;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.smile-card img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
}

.smile-card figcaption {
  padding: 0.9rem;
  color: #294f68;
  font-weight: 600;
}

.contact-box {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(130deg, #f9fdff 0%, #ecf5fb 75%, #e0eef8 100%);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  margin-bottom: 3.5rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 500;
}

.contact-form input {
  border: 1px solid #b9d1e2;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fcfeff;
}

.contact-form input:focus {
  outline: 2px solid #8cd0ec;
  border-color: #278ab6;
}

.footer {
  margin-bottom: 5.5rem;
  color: #45617b;
  font-size: 0.95rem;
}

.whats {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  text-decoration: none;
  color: #fff;
  background: #0b9b8d;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(9, 85, 78, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .menu {
    display: none;
  }

  .hero,
  .split-card,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .stats,
  .cards-grid,
  .smile-grid {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 3.8rem;
  }

  .hero h1 {
    line-height: 1;
  }

  .hero-media {
    min-height: 360px;
  }
}
