:root {
  --navy: #073c5f;
  --navy-dark: #042d48;
  --teal: #0ca9ac;
  --teal-dark: #078d93;
  --aqua: #53d2d0;
  --mist: #e9f8f7;
  --mist-2: #f5fbfb;
  --white: #ffffff;
  --ink: #153e51;
  --muted: #607b87;
  --line: rgba(7, 60, 95, 0.12);
  --shadow: 0 24px 70px rgba(7, 60, 95, 0.11);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(7, 60, 95, 0.07);
}

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

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand small {
  max-width: 230px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 600;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--mist);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg,
.whatsapp-float svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-sm {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.86rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 25px rgba(12, 169, 172, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(12, 169, 172, 0.3);
}

.button-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(7, 60, 95, 0.25);
}

.button-outline:hover {
  background: var(--white);
  border-color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 7% 15%, rgba(83, 210, 208, 0.16), transparent 27%),
    linear-gradient(135deg, var(--mist-2) 0%, #effafa 52%, #e3f5f4 100%);
}

.hero-grid {
  display: grid;
  min-height: 580px;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.hero-grid > *,
.about-grid > *,
.section-heading > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0 88px;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.4rem, 5.4vw, 5.75rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.15rem);
}

h1 em,
h2 em {
  color: var(--teal);
  font-weight: 400;
}

.hero-text {
  max-width: 590px;
  margin: 25px 0 31px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
}

.hero-photo-wrap {
  position: absolute;
  top: 0;
  right: min(-9vw, -50px);
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 48% 0 0 12%;
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233, 248, 247, 0.35), transparent 28%);
  content: "";
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-note {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 2%;
  display: flex;
  color: var(--navy);
  flex-direction: column;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.2;
  transform: rotate(-5deg);
}

.hero-note strong {
  color: var(--teal-dark);
  font-weight: 400;
}

.trust-bar {
  position: relative;
  z-index: 4;
  display: grid;
  max-width: 850px;
  margin-top: -42px;
  padding: 24px 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -8px 40px rgba(7, 60, 95, 0.08);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.trust-item + .trust-item {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--navy);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mist);
  border-radius: 50%;
  font-size: 1.35rem;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 90px;
  left: -90px;
  width: 200px;
  height: 340px;
  border: 46px solid rgba(83, 210, 208, 0.09);
  transform: rotate(22deg);
}

.hero-shape-two {
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(83, 210, 208, 0.1);
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--muted);
}

.specialties {
  position: relative;
  background: var(--white);
}

.specialties::before {
  position: absolute;
  top: 15%;
  right: -90px;
  width: 230px;
  height: 350px;
  background: var(--mist-2);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.specialties-grid {
  position: relative;
  display: grid;
  margin-top: 58px;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.specialty-card {
  min-width: 0;
  padding: 30px 24px;
  background: var(--mist-2);
  border: 1px solid rgba(7, 60, 95, 0.06);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.specialty-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(12, 169, 172, 0.16);
  border-radius: 16px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.specialty-card h3,
.step-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.15;
}

.specialty-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about {
  overflow: hidden;
  background: var(--mist-2);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(83, 210, 208, 0.22);
  border-radius: 50%;
  content: "";
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 36px 36px 120px 36px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 32px;
  display: flex;
  max-width: 210px;
  padding: 20px 24px;
  color: var(--navy);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 60, 95, 0.14);
  flex-direction: column;
}

.about-badge strong {
  color: var(--teal-dark);
}

.about-copy h2 {
  max-width: 570px;
}

.about-copy > p {
  margin: 25px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 12px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.steps {
  background: var(--white);
}

.center-heading {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.center-heading p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.steps-grid {
  position: relative;
  display: grid;
  margin-top: 56px;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.step-card > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin: -4px auto 24px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 9px 20px rgba(12, 169, 172, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-section {
  padding: 0 0 84px;
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 300px;
  align-items: center;
  gap: 45px;
  padding: 58px 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(255, 255, 255, 0.18), transparent 21%),
    linear-gradient(135deg, #087f91, #0ab0b1);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(7, 141, 147, 0.22);
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-card::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  border: 45px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy h2 {
  max-width: 720px;
  color: var(--white);
}

.contact-copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.button-white {
  position: relative;
  z-index: 2;
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 45, 59, 0.14);
  white-space: nowrap;
}

.contact-line {
  position: absolute;
  top: -80px;
  right: 22%;
  width: 220px;
  height: 390px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(38deg);
}

.site-footer {
  padding: 62px 0 24px;
  background: var(--mist-2);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-brand img {
  width: 72px;
  height: 72px;
}

.footer-copy {
  display: flex;
  color: var(--navy);
  flex-direction: column;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.25;
}

.footer-copy span {
  color: var(--teal-dark);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  color: var(--muted);
  flex-direction: column;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--navy);
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #80949c;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #20b95a;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 92, 44, 0.24);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 1020px) {
  .header-inner {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: flex;
    visibility: hidden;
    padding: 22px;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 11px 10px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    min-height: 520px;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }

  .hero-copy {
    padding-top: 25px;
  }

  h1 {
    font-size: clamp(3.1rem, 6.4vw, 4.5rem);
  }

  .hero-note {
    display: none;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    gap: 50px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding-inline: 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
    padding: 48px 0 10px;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12.2vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero-text {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    height: 430px;
    margin-top: 20px;
  }

  .hero-photo-wrap {
    position: absolute;
    inset: 0 -16px 0 -16px;
    border-radius: 90px 90px 0 0;
  }

  .hero-photo-wrap img {
    object-position: 61% center;
  }

  .trust-bar {
    width: calc(100% - 32px);
    margin: -26px auto 0;
    padding: 22px;
    gap: 18px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    gap: 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .specialties-grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .specialty-card {
    display: grid;
    padding: 22px;
    align-items: center;
    column-gap: 18px;
    grid-template-columns: auto 1fr;
  }

  .specialty-card .card-icon {
    margin: 0;
    grid-row: 1 / span 2;
  }

  .specialty-card h3 {
    margin-bottom: 4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    min-height: 350px;
    border-radius: 26px 26px 80px 26px;
  }

  .about-badge {
    right: 12px;
    bottom: -24px;
  }

  .about-copy {
    padding-top: 24px;
  }

  .steps-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    padding: 28px 24px;
  }

  .contact-section {
    padding: 0 0 60px;
  }

  .contact-card {
    padding: 46px 26px;
    gap: 30px;
    border-radius: 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-card .button {
    width: 100%;
    white-space: normal;
  }

  .footer-grid {
    gap: 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-copy,
  .footer-contact {
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .hero-copy {
    padding-top: 36px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-visual {
    height: 360px;
  }

  .specialty-card {
    padding: 20px 18px;
    column-gap: 14px;
  }

  .specialty-card h3 {
    font-size: 1.26rem;
  }

  .about-badge {
    max-width: 180px;
    padding: 16px 18px;
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
