:root {
  --green-950: #09271c;
  --green-900: #123d2c;
  --green-800: #174b37;
  --green-700: #236247;
  --green-100: #e9f3ed;
  --sage: #b7c9b7;
  --mint: #edf7f1;
  --cream: #fffaf1;
  --cream-2: #f8efe0;
  --white: #ffffff;
  --earth: #7c6543;
  --gold: #c9a456;
  --gold-soft: #ead9a2;
  --text: #1e2f28;
  --muted: #64746d;
  --line: rgba(18, 61, 44, .12);
  --shadow-sm: 0 10px 30px rgba(9, 39, 28, .08);
  --shadow-md: 0 20px 60px rgba(9, 39, 28, .14);
  --shadow-lg: 0 30px 90px rgba(9, 39, 28, .20);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

.section {
  padding: clamp(76px, 9vw, 128px) 0;
  position: relative;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 14%, rgba(201, 164, 86, .16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(35, 98, 71, .12), transparent 32%),
    linear-gradient(135deg, #fffaf2 0%, #f8f1e7 48%, #eef7f1 100%);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 250, 241, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 61, 44, .08);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, .95);
  box-shadow: var(--shadow-sm);
}

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

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

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 86, .35);
  box-shadow: 0 10px 28px rgba(9, 39, 28, .12);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -.03em;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.brand-copy small {
  color: var(--earth);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  font-size: .9rem;
  color: rgba(30, 47, 40, .82);
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--green-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-900);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .94rem;
  letter-spacing: -.01em;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(18, 61, 44, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 46px rgba(18, 61, 44, .32);
}

.btn-ghost {
  background: rgba(255, 255, 255, .68);
  color: var(--green-900);
  border-color: rgba(18, 61, 44, .14);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(201, 164, 86, .54);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .86rem;
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) 0 clamp(76px, 9vw, 120px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(201, 164, 86, .14);
  filter: blur(18px);
  left: -120px;
  bottom: 4%;
}

.hero::after {
  width: 440px;
  height: 440px;
  background: rgba(18, 61, 44, .10);
  filter: blur(24px);
  right: -140px;
  top: 12%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--green-950);
  font-size: clamp(2.55rem, 6.2vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.07em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(30, 47, 40, .78);
  font-size: clamp(1.06rem, 2vw, 1.26rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--earth);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.centered .eyebrow::before,
.contact-card .eyebrow::before {
  display: none;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(18, 61, 44, .10);
  color: var(--green-900);
  font-size: .82rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
}

.portrait-card {
  position: relative;
  width: min(100%, 430px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(201, 164, 86, .28);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(9, 39, 28, .55));
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.portrait-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(9, 39, 28, .72);
  backdrop-filter: blur(14px);
  font-weight: 700;
  text-align: center;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 46px;
  width: min(48%, 210px);
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(201, 164, 86, .32);
  box-shadow: var(--shadow-md);
}

.floating-card img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-glow-one {
  width: 16px;
  height: 16px;
  top: 28%;
  left: 54%;
  background: var(--gold-soft);
  box-shadow: 0 0 38px 20px rgba(201, 164, 86, .18);
}

.hero-glow-two {
  width: 10px;
  height: 10px;
  right: 12%;
  bottom: 22%;
  background: var(--gold);
  box-shadow: 0 0 34px 16px rgba(201, 164, 86, .2);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.section-kicker h2,
.split-content h2,
.contact-card h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.section-header p,
.about-content p,
.split-content p,
.contact-card p {
  color: rgba(30, 47, 40, .76);
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.about-content {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(18, 61, 44, .10);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stats-grid article {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(233, 243, 237, .86), rgba(255, 250, 241, .9));
  border: 1px solid rgba(18, 61, 44, .09);
}

.stats-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 1.4rem;
  line-height: 1.1;
}

.stats-grid span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.8vw, 28px);
}

.care-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 61, 44, .10);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.care-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.care-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.care-card-body {
  padding: 24px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 16px;
  color: var(--green-900);
  background: rgba(201, 164, 86, .16);
  font-weight: 800;
  font-size: .82rem;
}

.care-card h3 {
  color: var(--green-950);
  font-size: 1.32rem;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.care-card p {
  color: rgba(30, 47, 40, .72);
  margin-bottom: 20px;
}

.care-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-weight: 800;
}

.care-card a::after {
  content: "→";
  transition: transform .2s ease;
}

.care-card a:hover::after,
.care-card a:focus-visible::after {
  transform: translateX(4px);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.split-content {
  max-width: 680px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(18, 61, 44, .10);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  font-weight: 800;
}

.timeline p {
  margin: 0;
  color: rgba(30, 47, 40, .78);
}

.feature-panel {
  padding: clamp(30px, 5vw, 46px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(201, 164, 86, .34), transparent 35%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  border: 1px solid rgba(234, 217, 162, .34);
}

.feature-panel h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

.feature-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .82);
}

.feature-panel .note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
}

.download-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(18, 61, 44, .10);
  box-shadow: var(--shadow-md);
}

.download-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 164, 86, .22), rgba(233, 243, 237, .92));
  color: var(--green-900);
}

.download-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.download-copy h3 {
  color: var(--green-950);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

.download-copy p {
  margin: 0;
  color: rgba(30, 47, 40, .72);
}

.technical-note {
  margin: 22px auto 0;
  max-width: 820px;
  color: var(--muted);
  font-size: .94rem;
  text-align: center;
}

.technical-note code {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(18, 61, 44, .08);
  color: var(--green-900);
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.social-card {
  min-height: 180px;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(201, 164, 86, .18), transparent 36%),
    rgba(255, 255, 255, .76);
  border: 1px solid rgba(18, 61, 44, .10);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 86, .35);
}

.social-card span {
  color: var(--earth);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.social-card strong {
  color: var(--green-900);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.contact {
  overflow: hidden;
}

.contact-card {
  max-width: 930px;
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 164, 86, .28), transparent 36%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow-lg);
}

.contact-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  border: 1px solid rgba(234, 217, 162, .42);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .82);
}

.contact-card .eyebrow {
  color: var(--gold-soft);
}

.contact-actions {
  justify-content: center;
  margin-top: 30px;
}

.contact-card .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .24);
}

.contact-note {
  margin-top: 20px !important;
  font-size: .9rem !important;
  color: rgba(255, 255, 255, .70) !important;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .78);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(234, 217, 162, .3);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 700;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-soft);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: .9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 38px rgba(20, 84, 47, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 48px rgba(20, 84, 47, .44);
}

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

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

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

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

.reveal-delay-long {
  transition-delay: .22s;
}

@media (max-width: 1080px) {
  .header-whatsapp {
    display: none;
  }

  .main-nav {
    gap: 14px;
    font-size: .86rem;
  }

  .hero-grid {
    grid-template-columns: 1fr .72fr;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 250, 241, .98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(18, 61, 44, .10);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(18, 61, 44, .08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .split-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .portrait-card {
    justify-self: center;
    width: min(100%, 440px);
  }

  .portrait-card img {
    height: min(600px, 120vw);
  }

  .floating-card {
    left: 18px;
    width: min(42%, 190px);
  }

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

  .care-card img {
    aspect-ratio: 16 / 9;
  }

  .download-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .download-panel .btn {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: .98rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 14vw, 3.55rem);
    letter-spacing: -.065em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .trust-list span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .portrait-card,
  .about-content,
  .feature-panel,
  .download-panel,
  .contact-card {
    border-radius: 26px;
  }

  .portrait-card img {
    height: 520px;
  }

  .floating-card {
    width: 132px;
    padding: 7px;
    border-radius: 16px;
    bottom: 16px;
    left: 14px;
  }

  .floating-card img {
    border-radius: 12px;
  }

  .section-header h2,
  .section-kicker h2,
  .split-content h2,
  .contact-card h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .care-card-body {
    padding: 20px;
  }

  .timeline div {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

  .download-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 150px;
  }

  .contact-logo {
    width: 96px;
    height: 96px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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