:root {
  --cream: #fbf7ee;
  --cream-2: #f4ead8;
  --green: #215c45;
  --green-2: #2f7a5d;
  --mint: #dceee4;
  --gold: #c7a25d;
  --gold-soft: #f1dfb8;
  --ink: #21312a;
  --muted: #66756d;
  --white: #fffdf8;
  --line: rgba(33, 92, 69, 0.14);
  --shadow: 0 20px 50px rgba(33, 49, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 238, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(33, 92, 69, 0.12);
}

.brand-logo {
  width: 74px;
  height: 74px;
  max-width: none;
  display: block;
  object-fit: contain;
  transform: scale(1.65);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

.section {
  padding: 68px 0;
}

.hero {
  padding-top: 48px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 8vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 5vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-subtitle,
.assessment-intro > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 14px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(33, 92, 69, 0.22);
}

.btn-soft {
  color: var(--green);
  background: var(--mint);
}

.btn-whatsapp {
  width: 100%;
  color: var(--white);
  background: #1f9d5b;
  box-shadow: 0 14px 30px rgba(31, 157, 91, 0.2);
}

.trust-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.wellness-visual {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.wellness-visual::before {
  position: absolute;
  width: 260px;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(199, 162, 93, 0.25), rgba(199, 162, 93, 0));
  border-radius: 50%;
}

.visual-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(199, 162, 93, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.main-card {
  grid-column: 1 / -1;
  width: min(100%, 320px);
  min-height: 300px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.visual-label {
  align-self: start;
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.pulse-ring {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border: 1px solid rgba(33, 92, 69, 0.18);
  border-radius: 50%;
}

.pulse-ring span {
  width: 52px;
  height: 52px;
  display: block;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 50%;
}

.main-card h2 {
  margin: 0;
  color: var(--green);
  font-size: 2.4rem;
}

.main-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-card {
  position: relative;
  width: auto;
  min-height: 92px;
  padding: 14px;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  color: var(--green);
}

.mini-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-card-one {
  left: auto;
  bottom: auto;
}

.mini-card-two {
  top: auto;
  right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.card-grid,
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card,
.step-card,
.assessment-form,
.privacy-box,
.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(33, 49, 42, 0.08);
}

.info-card,
.step-card {
  padding: 22px;
}

.info-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-dot {
  width: 34px;
  height: 34px;
  display: inline-block;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--mint), var(--gold-soft));
  border: 1px solid rgba(33, 92, 69, 0.1);
  border-radius: 50%;
}

.process-section {
  background: #fffaf0;
}

.insight-section {
  background: linear-gradient(180deg, #fbf7ee 0%, #fffaf0 100%);
}

.insight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.insight-card {
  padding: 24px;
  background: var(--green);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(33, 49, 42, 0.16);
}

.insight-card p {
  margin-bottom: 14px;
  color: rgba(255, 253, 248, 0.84);
}

.insight-card p:last-child {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 700;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.assessment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.privacy-box {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 18px;
}

.privacy-box strong {
  color: var(--green);
}

.privacy-box span {
  color: var(--muted);
  font-size: 0.94rem;
}

.assessment-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

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

.field-row {
  grid-template-columns: 1fr;
  gap: 18px;
}

label,
legend {
  color: var(--ink);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffbf3;
  border: 1px solid rgba(33, 92, 69, 0.2);
  border-radius: 14px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(199, 162, 93, 0.25);
  border-color: var(--gold);
}

.radio-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-field label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fffbf3;
  border: 1px solid rgba(33, 92, 69, 0.16);
  border-radius: 14px;
  font-weight: 500;
}

.radio-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.is-hidden {
  display: none;
}

.result-section {
  padding-top: 0;
}

.result-card {
  padding: 26px;
}

.result-card h2 {
  color: var(--green);
}

.result-card p {
  color: var(--muted);
}

.result-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.result-detail {
  padding: 18px;
  background: #fffbf3;
  border: 1px solid rgba(33, 92, 69, 0.12);
  border-radius: 18px;
}

.result-detail h3 {
  color: var(--green);
}

.result-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.result-detail li::marker {
  color: var(--gold);
}

.result-reframe {
  margin-bottom: 14px;
  color: var(--green) !important;
  font-size: 1.08rem;
  font-weight: 800;
}

.result-next {
  margin: 22px 0;
  padding: 18px;
  background: var(--mint);
  border-radius: 18px;
}

.result-next p {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0 40px;
  color: rgba(255, 253, 248, 0.82);
  background: var(--green);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer p {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.site-footer span {
  font-size: 0.86rem;
}

@media (min-width: 640px) {
  .hero-actions {
    max-width: 520px;
    grid-template-columns: 1fr 0.8fr;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .section {
    padding: 92px 0;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  }

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

  .assessment-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
    align-items: start;
  }

  .insight-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  }

  .assessment-intro {
    position: sticky;
    top: 100px;
  }

  .result-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px;
  }

  .result-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .wellness-visual {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    place-items: center;
  }

  .main-card {
    grid-column: auto;
    margin: 0;
  }

  .mini-card {
    position: absolute;
    width: 178px;
    min-height: auto;
    padding: 16px;
  }

  .mini-card-one {
    left: 0;
    bottom: 30px;
  }

  .mini-card-two {
    top: 42px;
    right: 0;
  }
}

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

  .brand-text {
    max-width: 130px;
    overflow: hidden;
  }

  .brand-text strong,
  .brand-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .mini-card {
    width: 154px;
  }
}
