:root {
  --bg: #f6f4ef;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #e9e5de;
  --text: #484848;
  --muted: #6e6b67;
  --brand: #5b9a8e;
  --brand-dark: #4c867b;
  --brand-soft: #d5ebe5;
  --shadow: 0 24px 60px rgba(88, 87, 83, 0.14);
  --shadow-strong: 0 16px 40px rgba(63, 91, 84, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(93, 154, 142, 0.1), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(228, 149, 100, 0.08), transparent 18%),
    linear-gradient(180deg, #faf8f3 0%, #f3f0ea 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.section {
  position: relative;
  padding: 48px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 238, 0.76);
  border-bottom: 1px solid rgba(86, 130, 119, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 0.92;
  color: var(--brand-dark);
}

.brand-mark {
  width: clamp(56px, 7vw, 92px);
  height: auto;
  display: block;
}

.footer-brand .brand-mark {
  width: clamp(50px, 6vw, 76px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #4f4d49;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--brand-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-strong);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-strong);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.button-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(85, 145, 134, 0.4);
  box-shadow: 0 12px 30px rgba(95, 111, 106, 0.08);
}

.button-inline {
  width: fit-content;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 28px;
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.90) 0%, rgba(246, 244, 239, 0.66) 34%, rgba(246, 244, 239, 0.16) 70%, rgba(246, 244, 239, 0.06) 100%),
    url("imgs/img%20fundo%20header.jpg") center center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 42px 0 24px;
}

.hero-copy h1,
.hero-copy p {
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.42);
}

.hero-visual {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 244, 239, 0.42) 0%, rgba(246, 244, 239, 0.28) 22%, rgba(246, 244, 239, 0.12) 52%, rgba(246, 244, 239, 0.02) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.eyebrow.center {
  justify-content: center;
  width: 100%;
}

.hero-copy h1,
.section-heading h2,
.final-copy h2 {
  margin: 14px 0 0;
  color: #4d4d4d;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 8.5ch;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.hero-copy h1 span,
.final-copy h2 span,
.section-heading h2 span,
.pricing-card h2 span {
  color: var(--brand-dark);
}

.hero-copy p,
.contact-banner-copy p,
.final-copy p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
}

.hero-points li {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(82, 124, 117, 0.12);
  box-shadow: 0 18px 30px rgba(95, 100, 95, 0.07);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.hero-points span {
  margin-top: 4px;
  font-size: 0.82rem;
}

.contact-banner,
.plans-list-card,
.pricing-card,
.final-grid,
.benefit-card,
.step-card,
.testimonial-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(93, 143, 132, 0.12);
  box-shadow: var(--shadow);
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(93, 143, 132, 0.1);
  box-shadow: var(--shadow);
}

.highlight-row article {
  text-align: center;
  padding: 10px 8px 6px;
}

.highlight-row h3 {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 600;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--brand-dark);
  background: linear-gradient(180deg, rgba(93, 154, 142, 0.16), rgba(93, 154, 142, 0.06));
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-rule {
  display: block;
  width: 86px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 22px;
  border-radius: 26px;
}

.benefit-badge,
.step-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-strong);
}

.benefit-card h3,
.step-card h3 {
  margin: 16px 0 0;
  color: #4d4d4d;
  font-size: 1.12rem;
}

.contact-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border-radius: 30px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-strong);
  font-weight: 600;
}

.contact-banner-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.video-call-frame {
  min-height: 280px;
  padding: 14px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #22181e 0%, #4c3230 30%, #d0c3bd 30%, #ece6e0 100%);
}

.video-call-frame img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: 26px;
}

.step-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.plans-list-card {
  position: relative;
  border-radius: 30px;
  padding: 26px;
}

.plans-list-card ul,
.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plans-list-card li,
.pricing-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-weight: 600;
}

.plans-list-card li::before,
.pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.plans-list-card .button {
  margin-top: 20px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(231, 230, 226, 0.88) 100%);
}

.pricing-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(4rem, 10vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.pricing-card h2 small {
  font-size: 0.28em;
  display: inline-block;
  margin-left: 0.24ch;
  transform: translateY(-0.06em);
}

.pricing-points {
  display: grid;
  gap: 12px;
  text-align: left;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(74, 74, 74, 0.45);
  background: #fff;
  box-shadow: 0 14px 26px rgba(67, 67, 67, 0.08);
}

.testimonial-quote {
  margin: 0;
  color: #4c4c4c;
  font-size: 0.98rem;
  line-height: 1.45;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 2.7rem;
  line-height: 0.7;
  font-weight: 800;
}

.testimonial-rating {
  margin-top: 12px;
  color: #f2c233;
  letter-spacing: 2px;
  font-size: 1.02rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(76, 134, 123, 0.18);
  box-shadow: 0 8px 16px rgba(80, 80, 80, 0.16);
}

.testimonial-meta strong {
  display: block;
  margin: 0;
  color: #4d4d4d;
  font-size: 0.94rem;
  line-height: 1.1;
}

.testimonial-meta span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  border-radius: 34px;
  padding: 24px;
}

.final-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
}

.final-visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.96), transparent 22%),
    linear-gradient(150deg, #f3f0eb 0%, #ede8e2 48%, #d6ddd6 48%, #9da98f 100%);
  overflow: hidden;
}

.final-photo-card-primary {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 58%;
  height: 70%;
  border-radius: 30px;
  transform: rotate(-4deg);
}

.final-photo-card-secondary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38%;
  height: 46%;
  border-radius: 24px;
  transform: rotate(7deg);
}

.final-badge {
  position: absolute;
  left: 38%;
  bottom: 18px;
  width: 108px;
  height: 108px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.final-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  padding-top: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr 0.55fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0 18px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(93, 154, 142, 0.15);
  font-size: 0.8rem;
  font-weight: 800;
}

.social-row a img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.footer-bar {
  margin-top: 14px;
  padding: 18px;
  text-align: center;
  color: #fff;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.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;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(81, 92, 88, 0.12);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-dark);
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-grid,
  .contact-banner,
  .plans-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-row,
  .benefit-grid,
  .steps-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 34px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 92px;
  }

  .footer-brand .brand-mark {
    width: 84px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .hero-points,
  .highlight-row,
  .benefit-grid,
  .steps-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .contact-banner,
  .final-grid,
  .pricing-card,
  .plans-list-card {
    padding: 20px;
  }

  .contact-banner-copy h3 {
    font-size: 1.32rem;
  }

  .final-visual {
    min-height: 260px;
  }

  .final-photo-card-primary {
    width: 62%;
    height: 74%;
  }

  .final-photo-card-secondary {
    width: 34%;
    height: 42%;
  }

  .final-badge {
    width: 90px;
    height: 90px;
  }

  .footer-bar {
    border-radius: 24px 24px 0 0;
  }
}

.hero-copy h1 {
  max-width: 8.5ch;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
}

.hero-copy h1 span,
.final-copy h2 span,
.section-heading h2 span,
.pricing-card h2 span {
  color: var(--brand-dark);
}

.hero-copy p,
.contact-banner-copy p,
.final-copy p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
}

.hero-points li {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(82, 124, 117, 0.12);
  box-shadow: 0 18px 30px rgba(95, 100, 95, 0.07);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.hero-points span {
  margin-top: 4px;
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.hero-glow-a {
  inset: 70px 12px auto 44px;
  height: 240px;
  background: radial-gradient(circle, rgba(134, 181, 170, 0.55), rgba(134, 181, 170, 0));
}

.hero-glow-b {
  right: 30px;
  bottom: 50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(219, 152, 116, 0.32), rgba(219, 152, 116, 0));
}

.contact-banner,
.plans-list-card,
.pricing-card,
.final-grid,
.benefit-card,
.step-card,
.testimonial-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(93, 143, 132, 0.12);
  box-shadow: var(--shadow);
}

.hero-photo-card,
.final-photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(70, 82, 78, 0.18);
}

.hero-photo-card img,
.final-photo-card img,
.video-call-frame img,
.hero-logo-tile img,
.final-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card-main {
  inset: 34px 18px 124px 0;
  border-radius: 34px;
  transform: rotate(-1deg);
}

.hero-photo-card-top {
  top: 0;
  right: 0;
  width: 38%;
  aspect-ratio: 0.9;
  border-radius: 28px;
  transform: rotate(6deg);
}

.hero-photo-card-bottom {
  right: 34px;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1.08;
  border-radius: 30px;
  transform: rotate(-5deg);
}

.hero-logo-tile {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(52%, 240px);
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(93, 143, 132, 0.12);
  box-shadow: var(--shadow-strong);
  transform: rotate(-5deg);
}

.hero-logo-tile img {
  aspect-ratio: 1.8;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}

.hero-logo-tile span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #0f6d5c;
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(93, 143, 132, 0.1);
  box-shadow: var(--shadow);
}

.highlight-row article {
  text-align: center;
  padding: 10px 8px 6px;
}

.highlight-row h3 {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 600;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--brand-dark);
  background: linear-gradient(180deg, rgba(93, 154, 142, 0.16), rgba(93, 154, 142, 0.06));
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-rule {
  display: block;
  width: 86px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 22px;
  border-radius: 26px;
}

.benefit-badge,
.step-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-strong);
}

.benefit-card h3,
.step-card h3,
.testimonial-card strong {
  margin: 16px 0 0;
  color: #4d4d4d;
  font-size: 1.12rem;
}

.contact-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border-radius: 30px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-strong);
  font-weight: 600;
}

.contact-banner-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.video-call-frame {
  min-height: 280px;
  padding: 14px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #22181e 0%, #4c3230 30%, #d0c3bd 30%, #ece6e0 100%);
}

.video-call-frame img {
  border-radius: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: 26px;
}

.step-card p,
.testimonial-card p {
  margin-bottom: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.plans-list-card {
  position: relative;
  border-radius: 30px;
  padding: 26px;
}

.plans-list-card ul,
.pricing-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plans-list-card li,
.pricing-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-weight: 600;
}

.plans-list-card li::before,
.pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.plans-list-card .button {
  margin-top: 20px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(231, 230, 226, 0.88) 100%);
}

.pricing-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(4rem, 10vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.pricing-card h2 small {
  font-size: 0.28em;
}

.pricing-points {
  display: grid;
  gap: 12px;
  text-align: left;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 26px;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  border-radius: 34px;
  padding: 24px;
}

.final-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
}

.final-visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.96), transparent 22%),
    linear-gradient(150deg, #f3f0eb 0%, #ede8e2 48%, #d6ddd6 48%, #9da98f 100%);
  overflow: hidden;
}

.final-photo-card-primary {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 58%;
  height: 70%;
  border-radius: 30px;
  transform: rotate(-4deg);
}

.final-photo-card-secondary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38%;
  height: 46%;
  border-radius: 24px;
  transform: rotate(7deg);
}

.final-badge {
  position: absolute;
  left: 38%;
  bottom: 18px;
  width: 108px;
  height: 108px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.final-badge img {
  object-fit: contain;
}

.site-footer {
  padding-top: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr 0.55fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0 18px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(93, 154, 142, 0.15);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bar {
  margin-top: 14px;
  padding: 18px;
  text-align: center;
  color: #fff;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.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;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(81, 92, 88, 0.12);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-dark);
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
    font-size: 14px;
  }

  .hero-grid,
  .contact-banner,
  .plans-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .highlight-row,
  .benefit-grid,
  .steps-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 34px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 76px;
  }

  .footer-brand .brand-mark {
    width: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .hero-points,
  .highlight-row,
  .benefit-grid,
  .steps-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .final-visual {
    min-height: 280px;
  }

  .final-photo-card-primary {
    width: 62%;
    height: 74%;
  }

  .final-photo-card-secondary {
    width: 34%;
    height: 42%;
  }

  .final-badge {
    width: 90px;
    height: 90px;
  }

  .contact-banner,
  .final-grid,
  .pricing-card,
  .plans-list-card {
    padding: 20px;
  }

  .contact-banner-copy h3 {
    font-size: 1.32rem;
  }

  .final-visual {
    min-height: 260px;
  }

  .footer-bar {
    border-radius: 24px 24px 0 0;
  }
}
