:root {
  color-scheme: light;
  --bg: #f4f8f7;
  --bg-alt: #eef4f3;
  --surface: #ffffff;
  --surface-strong: #eef7f6;
  --text: #10363b;
  --muted: #55737a;
  --teal: #4ed2cf;
  --teal-dark: #066d78;
  --forest: #18494c;
  --gradient-accent: linear-gradient(135deg, #4ed2cf 0%, #066d78 100%);
  --shadow: 0 22px 60px rgba(9, 52, 56, 0.12);
  --border: rgba(16, 54, 59, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 210, 207, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(6, 109, 120, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

button,
.btn {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-shell {
  padding: 104px 0;
}

.alt-shell {
  background: linear-gradient(180deg, rgba(238, 244, 243, 0.75), rgba(255, 255, 255, 0.95));
}

.hero {
  padding-top: 138px;
}

.hero-grid,
.split-layout,
.process-layout,
.profile-layout,
.contact-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-grid,
.split-layout,
.process-layout,
.profile-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
}

h1,
h2,
h3,
h4,
.footer-brand {
  margin: 0;
  font-family: "Avenir Next", "Aptos", "Trebuchet MS", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  max-width: 13ch;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.lead,
.section-text,
.feature-list p,
.process-list p,
.callout-box p,
.mini-note p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  transform: translateY(-1px);
}

.btn-primary,
.nav-cta,
.whatsapp-float {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(6, 109, 120, 0.22);
}

.btn-secondary {
  background: rgba(78, 210, 207, 0.08);
  color: var(--teal-dark);
  border-color: rgba(78, 210, 207, 0.22);
}

.hero-tags,
.credential-tags {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.media-card:hover img,
.media-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.02);
}

.media-card-hero {
  min-height: 430px;
}

.media-card-tall {
  min-height: 520px;
}

.media-caption,
.mini-note {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 54, 59, 0.06);
  box-shadow: 0 10px 24px rgba(9, 52, 56, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stats-grid article,
.contact-cards article,
.callout-box,
.process-list article,
.feature-list article {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(9, 52, 56, 0.06);
}

.stats-grid article {
  padding: 18px;
}

.stats-grid strong {
  display: block;
  font-size: 1.08rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.feature-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.feature-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(78, 210, 207, 0.18), rgba(6, 109, 120, 0.18));
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-visual {
  min-width: 0;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.process-title {
  margin-top: 24px;
  font-size: 1.35rem;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.process-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(78, 210, 207, 0.18), rgba(6, 109, 120, 0.1));
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 800;
}

.process-gallery {
  display: grid;
  gap: 18px;
}

.process-gallery figure {
  padding: 0;
  margin: 0;
}

.process-gallery figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.portrait-frame {
  width: min(100%, 460px);
  margin-inline: auto;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(78, 210, 207, 0.16), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
}

.subtitle {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--teal-dark);
}

.callout-box {
  margin-top: 20px;
  padding: 22px;
}

.contact-shell {
  padding-bottom: 120px;
}

.contact-highlight {
  position: relative;
  border-top: 1px solid rgba(6, 109, 120, 0.12);
  border-bottom: 1px solid rgba(6, 109, 120, 0.08);
  background:
    radial-gradient(circle at top right, rgba(78, 210, 207, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 243, 0.88));
}

.contact-highlight .section-copy {
  padding: 6px 0;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards article {
  padding: 20px;
}

.contact-cards h3 {
  margin: 14px 0 8px;
}

.contact-cards a {
  color: var(--teal-dark);
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 54, 59, 0.08);
}

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

.brand img {
  width: min(180px, 42vw);
  height: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(16, 54, 59, 0.12);
  border-radius: 999px;
  background: var(--surface);
  color: var(--teal-dark);
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav a {
  font-weight: 600;
  color: var(--teal-dark);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(6, 109, 120, 0.18);
}

.primary-nav .nav-cta,
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: #ffffff;
}

.primary-nav .nav-cta i {
  color: #ffffff;
}

.site-footer {
  padding: 34px 0 28px;
  background: linear-gradient(180deg, #0f474a 0%, #123f42 100%);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer p,
.site-footer .footer-brand,
.site-footer .footer-bottom,
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 24px;
}

.footer-brand {
  display: inline-block;
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 38px rgba(6, 109, 120, 0.28);
}

.whatsapp-float i {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  color: #fff;
}

.whatsapp-float span {
  position: absolute;
  right: 76px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(16, 54, 59, 0.95);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 18px 30px rgba(9, 52, 56, 0.18);
}

.whatsapp-float span::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(16, 54, 59, 0.95);
  transform: translateY(-50%) rotate(45deg);
}

.reveal,
.scroll-item {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.reveal.is-visible,
.scroll-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::after,
.nav-cta::after,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.hero-actions .btn-primary:hover::after,
.nav-cta:hover::after,
.whatsapp-float:hover::after {
  opacity: 1;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .process-layout,
  .profile-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .site-header {
    box-shadow: 0 8px 24px rgba(9, 52, 56, 0.12);
  }

  .hero {
    padding-top: 118px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 80px;
    flex-wrap: wrap;
  }

  .brand img {
    width: min(150px, 50vw);
  }

  .primary-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 54, 59, 0.08);
  }

  .site-header[data-open="true"] .primary-nav {
    display: flex;
  }
  text-align: center;
  }

  .nav-cta {
    display: flex;00%;
    padding: 12px 0;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
  }

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

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding: 64px 0;
  }

  .hero {
    padding-top: 98px;
  }

  .container {
    width: min(1180px, calc(100% - 24px));
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 2.75rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1.05rem;
  }

  .lead,
  .section-text,
  .feature-list p,
  .process-list p,
  .callout-box p,
  .mini-note p,
  .site-footer p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions,
  .hero-tags,
  .credential-tags {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions {
    margin: 22px 0 16px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .media-card-hero,
  .media-card-tall {
    min-height: 260px;
  }

  .portrait-frame {
    padding: 10px;
  }

  .process-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
    gap: 12px;
  }

  .process-list span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .feature-list article,
  .contact-cards article,
  .callout-box,
  .media-caption,
  .mini-note {
    padding: 16px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float i {
    font-size: 1.55rem;
  }

  .whatsapp-float span {
    display: none;
  }

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