:root {
  --blue: #24519b;
  --blue-dark: #123b7c;
  --orange: #f5a13a;
  --orange-dark: #dd8520;
  --ink: #172033;
  --muted: #5d6b80;
  --soft-blue: #eaf3fb;
  --soft-mint: #e8f5f1;
  --soft-warm: #fff6ea;
  --line: #dde6ef;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 59, 124, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 32px));
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--white);
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-weight: 500;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 230, 239, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand img {
  width: 104px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: #2e3d55;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--orange);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: min(780px, 78svh);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 35, 74, 0.88), rgba(36, 81, 155, 0.66) 48%, rgba(36, 81, 155, 0.2)),
    url("assets/smile-family.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding-block: 64px 94px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.35rem);
  font-weight: 750;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(18, 59, 124, 0.18);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--blue);
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 790px;
  margin: 38px 0 0;
  padding: 0;
}

.hero-facts div {
  padding-left: 16px;
  border-left: 4px solid var(--orange);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--white);
  font-weight: 800;
}

.intro-band {
  padding-block: 28px;
  background: linear-gradient(90deg, var(--soft-blue), var(--soft-warm));
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  gap: 18px;
}

.intro-grid h2 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 720;
  line-height: 1.12;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.section {
  padding-block: 76px;
}

.two-column,
.contact-layout,
.trust-layout {
  display: grid;
  gap: 34px;
}

.section-copy h2,
.section-heading h2,
.contact-info h2,
.final-cta h2,
.trust-layout h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 3.2rem);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.service-card,
.benefit-grid article,
.process-steps article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.06);
}

.feature-list article {
  padding: 20px;
}

.feature-list h3,
.service-card h3,
.benefit-grid h3,
.process-steps h3 {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-list p,
.service-card p,
.benefit-grid p,
.process-steps p {
  margin-bottom: 0;
}

.services-section {
  background: #f7fbff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.service-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.image-break {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--blue-dark);
}

.image-break img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 59, 124, 0.78), rgba(18, 59, 124, 0.18));
}

.image-break-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-items: end;
  width: var(--container);
  margin-inline: auto;
  padding-bottom: 30px;
}

.image-break-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 760;
  line-height: 1;
}

.benefit-grid article {
  padding: 20px;
  border-top: 5px solid var(--orange);
}

.process-section {
  background: linear-gradient(180deg, var(--soft-mint), var(--white));
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.contact-section {
  background: #fbfcfe;
}

.contact-info address {
  margin-bottom: 18px;
  color: var(--muted);
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.contact-list a,
.site-footer a,
.faq-list a {
  color: var(--blue-dark);
  font-weight: 800;
}

.hours {
  padding: 18px;
  margin-bottom: 22px;
  background: var(--soft-warm);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
}

.hours h3 {
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.hours p {
  margin-bottom: 3px;
}

.map-panel {
  display: grid;
  gap: 18px;
}

.map-panel iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 18px;
}

.final-cta {
  padding-block: 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 59, 124, 0.92), rgba(36, 81, 155, 0.72)),
    url("assets/smile-family.jpg") center / cover no-repeat;
}

.final-cta-inner {
  max-width: 790px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  font-size: 1.08rem;
}

.site-footer {
  padding-block: 44px 24px;
  color: #304057;
  background: #f4f7fb;
}

.footer-inner {
  display: grid;
  gap: 26px;
  padding-bottom: 28px;
}

.footer-inner h2 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.footer-inner p {
  max-width: 360px;
  margin-bottom: 6px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(28, 144, 80, 0.34);
}

.floating-whatsapp svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

@media (min-width: 620px) {
  .hero-facts,
  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions .button {
    min-width: 214px;
  }
}

@media (min-width: 840px) {
  .main-nav {
    display: flex;
  }

  .hero {
    background-position: center;
  }

  .hero-content {
    padding-block: 78px 110px;
  }

  .intro-grid,
  .two-column,
  .contact-layout,
  .trust-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .intro-grid {
    grid-template-columns: 0.8fr 1fr;
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.3fr 0.8fr 1fr;
  }
}

@media (max-width: 839px) {
  .reverse-on-mobile .section-copy {
    order: -1;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1120px);
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 92px;
    height: 48px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 82svh;
    background-position: 43% center;
  }

  .hero-content {
    padding-block: 52px 82px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .button {
    width: 100%;
  }

  .contact-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .section {
    padding-block: 58px;
  }

  .map-panel iframe {
    min-height: 260px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
