:root {
  --sand: #f6f1e8;
  --sage: #5f7f6a;
  --sage-dark: #4f6d5b;
  --forest: #263d35;
  --terracotta: #c9825a;
  --charcoal: #2b2b2b;
  --pale-green: #e8efe7;
  --border-soft: #e6ded2;
  --white: #ffffff;
  --microcopy: #6f6f6f;
  --shadow: 0 18px 50px rgba(38, 61, 53, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 62%);
}

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

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

h1,
h2 {
  color: var(--forest);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 7.6vw, 4rem);
  line-height: 1.06;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
}

h3 {
  color: var(--forest);
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

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

.section {
  padding: 72px 0;
}

.section-pale {
  background: var(--pale-green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(230, 222, 210, 0.76);
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--forest);
  font-weight: 700;
  line-height: 1;
}

.brand-logo {
  display: none;
  width: 112px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo.is-loaded {
  display: block;
}

.brand-fallback {
  display: inline-block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  line-height: 0.9;
}

.brand-fallback small {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--sage-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(95, 127, 106, 0.2);
}

.btn-primary:hover {
  background: var(--sage-dark);
}

.btn-secondary {
  border-color: rgba(95, 127, 106, 0.48);
  background: transparent;
  color: var(--forest);
}

.btn-secondary:hover {
  border-color: var(--sage-dark);
  background: rgba(95, 127, 106, 0.08);
}

.btn-light {
  background: var(--sand);
  color: var(--forest);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.btn-light:hover {
  background: var(--pale-green);
}

.header-cta {
  display: none;
}

.mobile-header-cta {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero {
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  padding-top: 46px;
}

.hero-grid {
  display: grid;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow,
.label,
.step-number {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-subhead,
.lead {
  max-width: 690px;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  line-height: 1.65;
}

.hero-subhead-secondary {
  color: var(--forest);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.microcopy {
  color: var(--microcopy);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: var(--radius-lg);
  background: var(--pale-green);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(38, 61, 53, 0) 42%, rgba(38, 61, 53, 0.52) 100%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.08), rgba(38, 61, 53, 0.02));
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 50% 34%;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(246, 241, 232, 0.5);
  border-radius: 20px;
  background: rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(14px);
}

.hero-badge-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 18px;
}

.hero-badge p {
  color: var(--forest);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.12;
}

.two-column,
.about-grid,
.fit-grid {
  display: grid;
  gap: 28px;
}

.two-column > div:first-child,
.about-copy {
  display: grid;
  gap: 18px;
}

.soft-card,
.feature-card,
.step-card,
.price-card,
.package-card,
details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.soft-card {
  padding: 26px;
}

.list-label {
  margin-bottom: 14px;
  color: var(--forest);
  font-weight: 700;
}

.check-list,
.dash-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.dash-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.dash-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--terracotta);
}

.feature-card {
  padding: clamp(28px, 6vw, 56px);
}

.offer-card {
  background:
    linear-gradient(135deg, rgba(232, 239, 231, 0.78), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.offer-card > div {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.offer-card .btn {
  width: fit-content;
  margin-top: 6px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

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

.step-grid,
.pricing-grid,
.packages-grid {
  display: grid;
  gap: 18px;
}

.step-card,
.price-card,
.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pale-green);
  color: var(--forest);
}

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

.price-card,
.package-card {
  min-height: 100%;
}

.price {
  color: var(--forest);
  font-size: clamp(2.3rem, 8vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}

.price-card .btn,
.package-card .btn {
  width: 100%;
  margin-top: auto;
}

.featured-price,
.recommended {
  border-color: rgba(95, 127, 106, 0.5);
  box-shadow: 0 20px 55px rgba(95, 127, 106, 0.16);
}

.price-lines {
  display: grid;
  gap: 4px;
  color: var(--forest);
  font-weight: 700;
}

.package-subtitle {
  color: var(--microcopy);
  font-weight: 700;
}

.honest-card {
  background: rgba(255, 255, 255, 0.72);
}

.about-media {
  display: grid;
  gap: 16px;
}

.certificate-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(95, 127, 106, 0.2), rgba(201, 130, 90, 0.12)),
    var(--white);
  box-shadow: var(--shadow);
}

.certificate-card {
  position: relative;
  display: grid;
  min-height: auto;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  font: inherit;
  text-align: left;
}

.certificate-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.certificate-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 61, 53, 0.03), rgba(38, 61, 53, 0.62));
}

.certificate-full::after {
  background: linear-gradient(180deg, rgba(38, 61, 53, 0) 68%, rgba(38, 61, 53, 0.62));
}

.certificate-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-weight: 800;
}

.certificate-card:hover img {
  transform: scale(1.02);
}

.certificate-dialog {
  width: min(94vw, 720px);
  max-height: 88vh;
  padding: 16px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.certificate-dialog::backdrop {
  background: rgba(38, 61, 53, 0.58);
  backdrop-filter: blur(6px);
}

.certificate-dialog img {
  width: 100%;
  max-height: calc(88vh - 76px);
  object-fit: contain;
  border-radius: var(--radius-md);
}

.certificate-dialog form {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.dialog-close {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(95, 127, 106, 0.36);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-copy .btn {
  width: fit-content;
  margin-top: 6px;
}

.faq-container {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 20px;
}

summary {
  position: relative;
  padding: 20px 34px 20px 0;
  color: var(--forest);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--sage);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 0 20px;
  color: var(--microcopy);
}

.final-cta {
  background: var(--forest);
  color: var(--sand);
}

.final-cta-inner {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 820px;
}

.final-cta h2 {
  color: var(--sand);
}

.light-copy {
  color: rgba(246, 241, 232, 0.76);
}

.site-footer {
  padding: 40px 0 110px;
  background: var(--sand);
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-brand {
  color: var(--forest);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--forest);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--sage-dark);
}

.legal-copy {
  max-width: 780px;
  margin-top: 28px;
  color: var(--microcopy);
  font-size: 0.86rem;
}

.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(38, 61, 53, 0.28);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition:
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-whatsapp:hover {
  background: var(--sage-dark);
}

.sticky-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
  }

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

@media (min-width: 860px) {
  body {
    font-size: 17px;
  }

  .section {
    padding: 96px 0;
  }

  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .mobile-header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    align-items: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .two-column,
  .about-grid,
  .fit-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .sticky-whatsapp {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }
}

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

  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand-fallback {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 32px;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-photo {
    min-height: 310px;
  }

  .brand-logo {
    width: 96px;
  }

  .hero-badge {
    grid-template-columns: 68px 1fr;
  }

  .hero-badge-logo {
    width: 68px;
    height: 68px;
  }

  .hero-badge p {
    font-size: 1rem;
  }
}
