*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:       #F7F3EC;
  --cream-dark:  #EDE8DF;
  --green:       #3D5C38;
  --green-mid:   #5A7A54;
  --green-light: #E5EDE3;
  --green-pale:  #F0F4EF;
  --brown:       #7B6248;
  --brown-light: #BCA98E;
  --text:        #2A2520;
  --text-mid:    #534A40;
  --text-muted:  #867D73;
  --border:      #D9D2C8;
  --white:       #FFFFFF;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-w: 1100px;
  --section-gap: 5rem;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.serif { font-family: var(--font-serif); }

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: normal; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: normal; }
h3 { font-size: 1.15rem; font-weight: bold; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

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

.nav-link {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-link:hover {
  background: var(--green-light);
  border-color: var(--green-mid);
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-primary:hover {
  background: var(--green-mid);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text .section-label {
  margin-bottom: 1.1rem;
}

.hero-text h1 {
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta span {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta span::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: bold;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(61, 92, 56, 0.12);
}

.hero-image-badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.hero-image-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green);
}

.trust-strip {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

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

.outcomes {
  padding: var(--section-gap) 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.outcome-card:hover {
  box-shadow: 0 6px 24px rgba(61, 92, 56, 0.09);
}

.outcome-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--green-light);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  user-select: none;
}

.outcome-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.outcome-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.audience {
  padding: var(--section-gap) 0;
  background: var(--cream-dark);
}

.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audience-image img {
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.audience-text h2 {
  margin-bottom: 1.2rem;
}

.audience-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.audience-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.audience-list li::before {
  content: '—';
  color: var(--brown-light);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.format {
  padding: var(--section-gap) 0;
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.format-step {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--border);
  background: var(--white);
  position: relative;
}

.format-step:last-child {
  border-right: none;
}

.format-step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.format-step h3 {
  font-size: 0.975rem;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.format-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visual-strip {
  padding: var(--section-gap) 0;
  background: var(--green-pale);
}

.visual-strip-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
}

.visual-strip-image img {
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.visual-strip-text h2 {
  margin-bottom: 1rem;
}

.visual-strip-text p {
  color: var(--text-mid);
  margin-bottom: 0.9rem;
  font-size: 0.975rem;
}

.faq {
  padding: var(--section-gap) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.faq-item h3 {
  font-size: 0.975rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.lead-form-section {
  padding: var(--section-gap) 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.lead-form-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.lead-form-inner .section-label {
  color: rgba(255,255,255,0.65);
}

.lead-form-inner h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.lead-form-inner > p {
  color: rgba(255,255,255,0.78);
  font-size: 0.975rem;
  margin-bottom: 2rem;
}

.lead-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.55;
}

.form-consent a {
  color: var(--green-mid);
}

.lead-form .btn-primary {
  width: 100%;
  margin-top: 1.2rem;
  font-size: 1rem;
  padding: 0.95rem;
  border-radius: 6px;
}

.site-footer {
  background: #1E2A1C;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  font-size: 0.8rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
  max-width: 24ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  text-align: right;
}

.footer-bottom {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: #2A2520;
  color: rgba(255,255,255,0.88);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: min(680px, calc(100vw - 2rem));
  width: 100%;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

.cookie-banner p {
  flex: 1;
}

.cookie-banner a {
  color: var(--green-mid);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-cookie-accept:hover { background: var(--green-mid); }

.btn-cookie-dismiss {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-cookie-dismiss:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
}

.legal-page {
  padding: 4rem 0 6rem;
}

.legal-page-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

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

.legal-page-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.1rem;
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  color: var(--green);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  padding-left: 1.4rem;
}

.legal-content ul li {
  margin-bottom: 0.3rem;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.success-inner {
  text-align: center;
  max-width: 520px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.success-inner h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.success-inner p {
  color: var(--text-mid);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-image {
  margin-top: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
}

.success-image img {
  width: 100%;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-badge {
    display: none;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .audience-image {
    order: -1;
  }

  .visual-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .format-steps {
    grid-template-columns: 1fr;
  }

  .format-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .format-step:last-child {
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-brand p {
    max-width: none;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 500px) {
  :root {
    --section-gap: 3.5rem;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
