/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'PT Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #2c2c2c;
  background-color: #faf9f6;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: #1e1e1e;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p { font-size: 1rem; }

/* ===== CSS VARIABLES ===== */
:root {
  --sage: #7a9e7e;
  --sage-light: #eef3ef;
  --sage-dark: #5c7c60;
  --clay: #c4825a;
  --clay-light: #f9ede5;
  --clay-dark: #a36646;
  --warm-white: #faf9f6;
  --off-white: #f3f1ec;
  --text-dark: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #787878;
  --border: #ddd9d0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --transition: 0.25s ease;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--off-white);
}

.section--sage {
  background-color: var(--sage-light);
}

.section--clay {
  background-color: var(--clay-light);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--sage-dark);
}

.header-cta {
  display: inline-block;
  background-color: var(--sage);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background-color: var(--sage-dark);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background-color: var(--warm-white);
}

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

.hero__badge {
  display: inline-block;
  background-color: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background-color: var(--clay);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background-color: var(--clay-dark);
  transform: translateY(-1px);
}

.hero__note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero__image-tag {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero__image-tag-icon {
  width: 32px;
  height: 32px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 28px 0;
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-strip__item-icon {
  color: var(--sage-dark);
  font-size: 1.1rem;
}

/* ===== PROBLEM BLOCK ===== */
.problem__intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 40px;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.problem-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.problem-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.problem-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===== TECHNIQUES ===== */
.techniques__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.techniques__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.techniques__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.technique-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.technique-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.technique-item__num {
  min-width: 36px;
  height: 36px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.technique-item__body h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.technique-item__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===== HOW IT WORKS ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background-color: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.process-step__num {
  width: 48px;
  height: 48px;
  background-color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ===== AUDIENCE ===== */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
}

.audience-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.audience-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===== RESULT ===== */
.result__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.result__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.result__image img {
  width: 100%;
  object-fit: cover;
}

.result__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.result-item__check {
  width: 24px;
  height: 24px;
  background-color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.result-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ===== FORM SECTION ===== */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--clay-light) 100%);
}

.form-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.form-card__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}

.form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-card__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background-color: var(--warm-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--sage);
  margin-top: 2px;
  cursor: pointer;
}

.form-consent a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--clay);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background-color: var(--clay-dark);
  transform: translateY(-1px);
}

.form-card__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #fff;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question__icon {
  width: 22px;
  height: 22px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: transform var(--transition), background-color var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background-color: var(--sage);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  font-size: 0.93rem;
  color: var(--text-mid);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1e1e1e;
  color: #b0b0b0;
  padding: 48px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer__logo span {
  color: var(--sage);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: #b0b0b0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--sage);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.8rem;
  color: #787878;
  line-height: 1.7;
}

.footer__copy {
  font-size: 0.8rem;
  color: #787878;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.cookie-banner__text a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 10px 22px;
  background-color: var(--sage);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color var(--transition);
}

.btn-cookie-accept:hover {
  background-color: var(--sage-dark);
}

.btn-cookie-decline {
  padding: 10px 18px;
  background-color: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-cookie-decline:hover {
  border-color: var(--text-mid);
  color: var(--text-dark);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--clay-light) 100%);
  padding: 40px 24px;
}

.success-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 72px;
  height: 72px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-card p {
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 32px;
}

.btn-home {
  display: inline-block;
  padding: 13px 28px;
  background-color: var(--sage);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color var(--transition);
}

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

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
  display: block;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.legal-nav {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-nav a {
  font-size: 0.88rem;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .hero { padding: 56px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image-wrap { order: -1; }
  .hero__image-tag { left: 0; bottom: -12px; }

  .techniques__grid { grid-template-columns: 1fr; }
  .result__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }

  .form-card { padding: 32px 24px; }

  .success-card { padding: 40px 24px; }

  .trust-strip__list { gap: 20px; }

  .process__steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }

  .header__inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
  .btn-primary { width: 100%; text-align: center; }
  .cookie-banner__actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
  .process__steps { grid-template-columns: 1fr; }
}
