:root {
  --ink: #17211f;
  --muted: #66736f;
  --line: #dde6e1;
  --paper: #f6f8f5;
  --panel: #ffffff;
  --green: #2d8a54;
  --green-soft: #e8f5ea;
  --lime: #83bd66;
  --blue: #2388c6;
  --navy: #123941;
  --gold: #f4b740;
  --shadow: 0 18px 48px rgba(23, 33, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.top-bar {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 44px);
  padding: 9px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 950;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 4vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--green);
}

.header-cta,
.primary-button,
.secondary-button,
.plan-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button,
.plan-button,
.mini-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(45, 138, 84, 0.2);
}

.header-cta {
  padding: 0 18px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.header-cta:hover,
.primary-button:hover,
.plan-button:hover,
.mini-button:hover {
  transform: translateY(-1px);
  background: #236f43;
}

.primary-button:disabled,
.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.secondary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 33, 31, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(232, 245, 234, 0.9), rgba(255, 255, 255, 0.6)),
    #fff;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 6.6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-treatment-title {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.hero-treatment-title > span:first-child {
  font-size: clamp(2.3rem, 5.4vw, 4.8rem);
}

.hero-treatment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
}

.hero-treatment-list strong {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(232, 245, 234, 0.96);
  font-size: clamp(1.28rem, 2.7vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-metrics dt {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-product {
  min-width: 0;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: center;
}

.hero-product-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 20px;
  border-top: 1px solid var(--line);
}

.hero-product-details p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.hero-product-details strong {
  font-size: 1.35rem;
  font-weight: 950;
}

.mini-button {
  grid-column: 1 / -1;
  min-height: 40px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.service-strip div {
  display: grid;
  gap: 4px;
  padding: 20px clamp(16px, 3vw, 30px);
  background: #fff;
}

.service-strip strong {
  font-size: 1rem;
}

.service-strip a,
.service-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-strip a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section,
.shop-section,
.product-info-section,
.customer-story-section,
.order-section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 64px);
}

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

.section-heading h2,
.info-copy h2,
.order-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.shop-section {
  background: var(--paper);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 850;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card,
.feature-grid article,
.order-form,
.contact-box,
.product-info-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.06);
}

.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.price-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.price-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.popular-tag,
.category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #10402a;
  background: #dff5d8;
  font-size: 0.76rem;
  font-weight: 950;
}

.popular-tag {
  color: #fff;
  background: var(--green);
}

.rating-row {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 950;
}

.rating-row span {
  color: var(--muted);
  font-weight: 800;
}

.plan-name {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 950;
}

.plan-desc {
  min-height: 52px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.price {
  margin: 16px 0;
  color: var(--green);
  font-size: clamp(2.2rem, 4.8vw, 3.25rem);
  line-height: 0.95;
  font-weight: 950;
}

.plan-button {
  width: 100%;
  margin-top: auto;
  order: 5;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
  color: #364842;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.product-info-section {
  display: block;
  margin: clamp(20px, 4vw, 44px) clamp(18px, 4vw, 64px);
  padding: clamp(24px, 5vw, 54px);
}

.info-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.info-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.treatment-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.treatment-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--green-soft);
  font-weight: 900;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.spec-grid div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.spec-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.spec-grid strong {
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article {
  padding: 26px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}

.feature-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
}

.feature-grid p,
.order-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.testimonial-section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 64px);
  background: var(--paper);
}

.testimonial-slider {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.06);
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 8px;
}

.testimonial-empty {
  display: none;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 850;
  text-align: center;
}

.testimonial-slider.is-empty .testimonial-track,
.testimonial-slider.is-empty .testimonial-controls {
  display: none;
}

.testimonial-slider.is-empty .testimonial-empty {
  display: block;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-size: 1.5rem;
  font-weight: 950;
  cursor: pointer;
}

.testimonial-controls span {
  min-width: 64px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.customer-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #fff;
}

.story-image-card,
.customer-story {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.06);
}

.story-image-card {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.story-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
}

.story-image-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.story-image-card strong {
  font-size: 1.18rem;
}

.story-image-card span {
  color: var(--muted);
  font-weight: 850;
}

.customer-story {
  padding: clamp(24px, 4vw, 44px);
}

.customer-story h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
}

.story-text {
  display: grid;
  gap: 16px;
  color: #34423f;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.story-text p {
  margin: 0;
}

.story-text strong {
  color: var(--green);
  font-weight: 950;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
  background: #fff;
}

.order-copy p {
  max-width: 620px;
}

.contact-box {
  display: grid;
  gap: 5px;
  max-width: 320px;
  margin-top: 24px;
  padding: 20px;
}

.contact-box span {
  color: var(--muted);
  font-weight: 800;
}

.contact-box a {
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-header strong {
  font-size: 1.18rem;
}

.checkout-header span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.optional-label {
  color: var(--muted);
  font-size: 0.9em;
  font-style: normal;
  font-weight: 600;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdf9;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.order-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.form-button,
.whatsapp-order-button {
  width: 100%;
}

.whatsapp-order-button {
  color: var(--green);
  background: var(--green-soft);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  display: grid;
  gap: 26px;
  padding: clamp(32px, 5vw, 58px) clamp(18px, 4vw, 64px) 28px;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(18, 57, 65, 0.96), rgba(23, 33, 31, 0.96)),
    var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.footer-main h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.footer-main p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  line-height: 1.65;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease;
}

.footer-contact-link:hover {
  transform: translateY(-1px);
  background: #ffd062;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.footer-links a {
  color: #fff;
  font-weight: 900;
}

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

.footer-meta span:first-child {
  color: #fff;
  font-weight: 950;
}

.footer-disclaimer {
  display: grid;
  gap: 6px;
  max-width: 980px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  line-height: 1.45;
}

.footer-disclaimer p {
  margin: 0;
}

.confirmation-page {
  min-height: 100vh;
  background: var(--paper);
}

.confirmation-header {
  position: static;
}

.confirmation-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(30px, 6vw, 64px) 18px;
}

.confirmation-panel {
  display: grid;
  gap: 22px;
  width: min(100%, 680px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
  background: #fff;
  box-shadow: var(--shadow);
}

.confirmation-panel h1 {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.12;
  text-align: center;
}

.confirmation-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 0 22px;
  color: #236f43;
  background: var(--green-soft);
  font-size: 1.04rem;
  font-weight: 950;
}

.confirmation-message {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.confirmation-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.confirmation-summary div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: var(--paper);
}

.confirmation-summary .wide {
  grid-column: 1 / -1;
}

.confirmation-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.confirmation-summary strong {
  font-size: 0.96rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.confirmation-whatsapp.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.confirmation-back {
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

@media (max-width: 1020px) {
  .hero,
  .customer-story-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 680px;
  }

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

  .price-card {
    max-width: 620px;
    margin-inline: auto;
  }

  .story-image-card {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .top-bar {
    display: grid;
    gap: 6px;
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .hero-metrics,
  .service-strip,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    min-height: 680px;
  }

  .hero-product-details,
  .shop-toolbar,
  .checkout-header,
  .footer-main {
    display: grid;
  }

  .order-section {
    grid-template-columns: 1fr;
  }

  .confirmation-summary {
    grid-template-columns: 1fr;
  }

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

  .footer-contact-link {
    width: fit-content;
  }
}

@media (max-width: 440px) {
  .hero-actions {
    display: grid;
  }

  .price-content {
    padding: 20px;
  }

  .testimonial-track {
    min-height: 560px;
  }
}
