:root {
  --cream: #fbf4ea;
  --surface: #fffaf4;
  --surface-clean: #ffffff;
  --ink: #2f2a23;
  --muted: #6f665d;
  --sage: #6e8b6f;
  --sage-dark: #4f6f55;
  --sage-soft: #e8efe6;
  --peach: #f4b89c;
  --peach-soft: #fde5d7;
  --line: #eadccd;
  --shadow: 0 18px 54px rgba(83, 65, 46, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 184, 156, 0.32), transparent 34rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf4 48%, var(--cream) 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 34px 0 42px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.2vw, 5.1rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.22rem);
}

.hero-copy,
.section-intro,
.form-copy,
.guide-section > div,
.guide-content {
  min-width: 0;
  max-width: 100%;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 12px 24px rgba(79, 111, 85, 0.22);
}

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

.button-soft {
  background: var(--peach-soft);
  color: var(--ink);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(234, 220, 205, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffdf8, #f8eadb);
  box-shadow: var(--shadow);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.74);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 18px;
  background: var(--sage-soft);
  content: "";
}

.hero-visual img,
.cover-placeholder {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(160deg, #f7d8c8, #fff7ef);
  box-shadow: 0 24px 52px rgba(47, 42, 35, 0.22);
}

.hero-visual img {
  height: auto;
}

.cover-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 460px;
  padding: 34px;
  color: var(--ink);
  text-align: center;
}

.cover-placeholder[hidden],
.profile-placeholder[hidden],
.hero-visual img[hidden],
.profile-image img[hidden] {
  display: none;
}

.cover-placeholder span {
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-placeholder strong {
  margin-top: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
}

.cover-placeholder em {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.visual-note {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 14px auto 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.95);
  box-shadow: 0 16px 40px rgba(47, 42, 35, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.visual-note strong {
  color: var(--ink);
}

.problem-section,
.learn-section,
.for-section,
.form-section,
.guide-section,
.final-cta {
  padding: 44px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-intro p:not(.section-label),
.form-copy p,
.guide-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.narrow {
  max-width: 840px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid article,
.learn-item,
.soft-panel,
.optin-form,
.thank-you-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 14px 38px rgba(83, 65, 46, 0.07);
}

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

.problem-grid p,
.learn-item p,
.check-list {
  color: var(--muted);
}

.learn-list {
  display: grid;
  gap: 16px;
}

.learn-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.learn-item span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--sage-dark);
  font-weight: 800;
}

.soft-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(232, 239, 230, 0.92), rgba(255, 250, 244, 0.92)),
    var(--surface);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

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

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 24px;
}

.form-guide-preview {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 0.55fr);
  gap: 18px;
  align-items: center;
  max-width: 650px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 14px 38px rgba(83, 65, 46, 0.07);
}

.form-guide-preview img {
  width: min(100%, 260px);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(83, 65, 46, 0.16);
}

.guide-preview-copy {
  min-width: 0;
}

.credibility-line {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-weight: 800;
}

.guide-preview-copy h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.inside-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.inside-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.inside-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

.trust-card {
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 650px;
  margin-top: 24px;
  padding: 18px;
  background: rgba(232, 239, 230, 0.72);
}

.trust-card strong {
  color: var(--sage-dark);
}

.trust-card span {
  color: var(--muted);
}

.optin-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--surface-clean);
}

.form-heading h3 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.form-heading p,
.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.field-group {
  display: grid;
  gap: 8px;
}

.whatsapp-optin {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(234, 220, 205, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 239, 230, 0.88), rgba(253, 229, 215, 0.5)),
    var(--surface);
}

.whatsapp-copy {
  display: grid;
  gap: 6px;
}

.whatsapp-copy h3 {
  margin-bottom: 0;
  color: var(--sage-dark);
  font-size: 1.06rem;
}

.whatsapp-copy p,
.whatsapp-support,
.whatsapp-reassurance {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-support {
  padding-left: 34px;
}

.whatsapp-reassurance {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.76);
  color: var(--sage-dark);
  font-weight: 800;
}

.whatsapp-field {
  padding-top: 4px;
}

.whatsapp-field[hidden] {
  display: none;
}

label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

label span {
  color: var(--sage-dark);
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  border-color: var(--sage);
  outline: 4px solid rgba(110, 139, 111, 0.18);
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
}

.consent-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 52px;
  padding: 12px;
  border: 1px solid rgba(234, 220, 205, 0.95);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.86);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

.consent-row input {
  width: 22px;
  min-height: 22px;
  margin-top: 1px;
  accent-color: var(--sage);
}

.form-message {
  min-height: 20px;
  margin: -4px 0 0;
  color: #a33b24;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-button {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(232, 239, 230, 0.72)),
    var(--surface);
  box-shadow: 0 14px 38px rgba(83, 65, 46, 0.07);
}

.guide-content h2 {
  margin-bottom: 18px;
}

.guide-content p {
  max-width: 780px;
}

.guide-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.guide-trust-card {
  padding: 18px;
  border: 1px solid rgba(234, 220, 205, 0.9);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.9);
}

.guide-trust-card h3 {
  color: var(--sage-dark);
}

.guide-trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-closing {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--peach);
  border-radius: 14px;
  background: rgba(253, 229, 215, 0.52);
  color: var(--ink);
  font-weight: 800;
}

.profile-image {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--peach-soft);
}

.profile-image img,
.profile-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  background: linear-gradient(145deg, #e8efe6, #fff7ef);
}

.profile-placeholder {
  display: grid;
  place-items: center;
  color: var(--sage-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--sage-soft);
}

.final-cta h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.text-link {
  color: var(--sage-dark);
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  padding: 32px 20px;
}

.thank-you-shell {
  display: grid;
  gap: 22px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.thank-you-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--surface-clean);
}

.thank-you-card h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
}

.thank-you-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.thank-you-card p:not(.section-label) {
  color: var(--muted);
  font-size: 1.08rem;
}

.thank-you-hero {
  text-align: center;
}

.thank-you-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.thank-you-note {
  margin-top: 22px;
  margin-bottom: 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--sage-soft);
}

.thank-you-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.thank-you-quick-actions .button {
  min-width: min(100%, 300px);
}

.support-card {
  background:
    linear-gradient(135deg, rgba(232, 239, 230, 0.92), rgba(255, 250, 244, 0.96)),
    var(--surface);
}

.support-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-option {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.88);
}

.support-option .button {
  align-self: end;
}

.support-option-primary {
  border-color: rgba(110, 139, 111, 0.42);
  box-shadow: 0 16px 36px rgba(79, 111, 85, 0.12);
}

.support-option p,
.light-card p,
.share-card p {
  color: var(--muted);
}

.light-card,
.share-card {
  display: grid;
  gap: 18px;
}

.light-card {
  background: rgba(255, 250, 244, 0.86);
}

.social-actions,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-actions {
  justify-content: center;
}

.social-button {
  min-width: 260px;
}

.social-button span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.social-button[data-event="thankyou_follow_facebook"] span {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}

.social-button[data-event="thankyou_follow_instagram"] span {
  background: rgba(214, 41, 118, 0.12);
}

.social-button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.copy-message {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.share-fallback {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: var(--sage-soft);
  overflow-wrap: anywhere;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero,
  .soft-panel,
  .form-section,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .profile-image {
    max-width: 420px;
  }

  .guide-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .form-copy {
    position: static;
  }

  .form-guide-preview {
    grid-template-columns: minmax(120px, 0.38fr) minmax(0, 0.62fr);
  }
}

@media (max-width: 720px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .learn-item {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: block;
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 250, 244, 0.94);
    backdrop-filter: blur(10px);
  }

  .mobile-cta .button {
    width: 100%;
    box-shadow: 0 10px 22px rgba(79, 111, 85, 0.2);
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .social-actions,
  .share-actions {
    display: grid;
  }

  .thank-you-quick-actions {
    display: grid;
    justify-items: stretch;
  }
}

@media (max-width: 520px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 32px, 1120px);
    max-width: min(100% - 32px, 1120px);
  }

  .hero,
  .hero-copy,
  .hero-actions,
  .section-intro,
  .form-copy,
  .final-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero {
    width: min(100% - 32px, 1120px);
    max-width: min(100% - 32px, 1120px);
    padding-bottom: 32px;
  }

  .problem-section,
  .learn-section,
  .for-section,
  .form-section,
  .guide-section,
  .final-cta {
    padding: 34px 0;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.12rem;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  p {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
  }

  .thank-you-page {
    padding: 14px;
  }

  .thank-you-shell {
    gap: 14px;
  }

  .thank-you-card {
    padding: 20px;
  }

  .thank-you-card h1 {
    font-size: 2.35rem;
  }

  .thank-you-card h2 {
    font-size: 1.9rem;
  }

  .thank-you-card p:not(.section-label) {
    font-size: 1rem;
  }

  .thank-you-note {
    margin-top: 16px;
    padding: 14px;
  }

  .trust-row {
    display: grid;
    gap: 8px;
  }

  .trust-row li {
    border-radius: 14px;
  }

  .phone-row {
    grid-template-columns: minmax(105px, 0.42fr) minmax(0, 1fr);
    gap: 8px;
  }

  .form-guide-preview {
    grid-template-columns: minmax(95px, 0.36fr) minmax(0, 0.64fr);
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
  }

  .form-guide-preview img {
    width: 100%;
    max-width: 130px;
  }

  .credibility-line {
    margin-bottom: 10px;
    font-size: 0.88rem;
  }

  .guide-preview-copy h3 {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .inside-list {
    gap: 6px;
  }

  .inside-list li {
    padding-left: 16px;
    font-size: 0.84rem;
  }

  .inside-list li::before {
    top: 0.55em;
    width: 7px;
    height: 7px;
  }

  .hero-visual {
    padding: 18px;
  }

  .hero-visual img,
  .cover-placeholder {
    min-height: 0;
  }

  .cover-placeholder {
    min-height: 330px;
  }

  .profile-image {
    max-width: 300px;
    padding: 14px;
  }

  .profile-image img,
  .profile-placeholder {
    aspect-ratio: 1 / 1;
  }
}
