:root {
  --cream: #f9f4ed;
  --cream-dark: #ede5d8;
  --beige: #e8dcc8;
  --green: #2d4a3e;
  --green-light: #3d6253;
  --green-pale: #e9eeec;
  --terracotta: #c4784a;
  --terracotta-light: #d4895c;
  --text-dark: #2a2a25;
  --text-mid: #5a5a52;
  --text-light: #8a8a7e;
  --border: #d8cfc2;
  --white: #ffffff;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(45, 74, 62, 0.08);
  --shadow-md: 0 4px 24px rgba(45, 74, 62, 0.12);

  --max-width: 1100px;
  --section-pad: 80px 20px;
}

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

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

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

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

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

a:hover {
  text-decoration: underline;
}

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

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196, 120, 74, 0.30);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 120, 74, 0.35);
  text-decoration: none;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(45, 74, 62, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  font-weight: normal;
  letter-spacing: 0.03em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.88rem !important;
  padding: 10px 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.25s;
}

.hero {
  background: var(--cream);
  padding: 70px 20px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--green);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 16px;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  color: var(--green);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.benefits {
  padding: var(--section-pad);
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 28px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.benefit-card h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

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

.how-it-works {
  padding: var(--section-pad);
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  padding: 20px 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.feature-split {
  padding: var(--section-pad);
  background: var(--green-pale);
}

.feature-split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-split.reverse .feature-split-inner {
  direction: rtl;
}

.feature-split.reverse .feature-split-content {
  direction: ltr;
}

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

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

.feature-split-content .section-label {
  text-align: left;
}

.feature-split-content h2 {
  color: var(--green);
  margin-bottom: 16px;
}

.feature-split-content p {
  color: var(--text-mid);
  font-size: 0.98rem;
}

.program {
  padding: var(--section-pad);
  background: var(--white);
}

.program-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.module-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  align-items: flex-start;
}

.module-number {
  min-width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.module-card h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 6px;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

.testimonials {
  padding: var(--section-pad);
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--beige);
  box-shadow: var(--shadow);
}

.testimonial-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--text-light);
}

.faq {
  padding: var(--section-pad);
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 8px 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--green-light);
}

.faq-chevron {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--terracotta);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 8px 20px 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead-form-section {
  padding: var(--section-pad);
  background: var(--green);
}

.lead-form-section .section-header h2 {
  color: var(--white);
}

.lead-form-section .section-label {
  color: var(--beige);
}

.lead-form-section .section-header p {
  color: rgba(255,255,255,0.75);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

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

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

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.1);
}

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

.form-group input.error {
  border-color: #c0392b;
}

.form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.02rem;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--text-mid);
  text-decoration: underline;
}

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 40px 20px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-legal-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-company {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  min-width: 200px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--beige);
  text-decoration: underline;
}

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

.cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-sans);
}

.cookie-accept:hover {
  background: var(--terracotta-light);
}

.cookie-decline {
  background: none;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-sans);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.simple-page {
  min-height: 80vh;
  padding: 60px 20px;
}

.simple-page-inner {
  max-width: 760px;
  margin: 0 auto;
}

.simple-page h1 {
  color: var(--green);
  margin-bottom: 8px;
  font-size: 1.8rem;
}

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

.simple-page h2 {
  font-size: 1.15rem;
  color: var(--green);
  margin: 28px 0 10px;
}

.simple-page p, .simple-page li {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.simple-page ul, .simple-page ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.simple-page li {
  margin-bottom: 6px;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 540px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige);
}

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

.success-card h1 {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 14px;
}

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

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

  .hero-image-wrap {
    order: -1;
  }

  .hero-desc {
    max-width: 100%;
  }

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

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

  .feature-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr !important;
  }

  .feature-split-content {
    direction: ltr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-inner {
    position: relative;
  }

  .hero {
    padding: 48px 20px 40px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .program-modules {
    grid-template-columns: 1fr;
  }

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

  .form-card {
    padding: 28px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .simple-page {
    padding: 40px 20px;
  }

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

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

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept, .cookie-decline {
    flex: 1;
    text-align: center;
  }
}
