:root {
  --primary: #3f621b;
  --accent: #c76854;
  --dark: #0f150e;
  --ink: #2b2d42;
  --muted: #6e6e6e;
  --bg: #faf5f2;
  --light: #ffffff;
  --soft: #c9d8e0;
  --teal: #134f5c;
  --highlight: #82c47b;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 40px rgba(15, 21, 14, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 21, 14, 0.08);
  --shadow-floating: 0 20px 45px rgba(15, 21, 14, 0.18);
  --shadow: var(--shadow-card);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #101418;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(15, 21, 14, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo img {
  height: 32px;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 10px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: none;
  color: #000;
}

.nav-link.active {
  color: #000;
}

.nav-cta {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 12px 20px rgba(63, 98, 27, 0.2);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 12px 20px rgba(199, 104, 84, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.btn-hero {
  text-transform: none;
  padding: 12px 32px;
  letter-spacing: 0.02em;
}

.btn-cta {
  font-weight: 700;
  padding: 20px 60px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-submit {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 50px;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fef0c7;
  color: #000;
  padding: 24px 0;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  flex: 1 1 320px;
}

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

.cookie-btn {
  border: 0;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}

.cookie-btn-primary {
  background: #000;
  color: #fff;
}

.cookie-btn-secondary {
  background: #fff;
  color: #000;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(48px, 6vw, 96px) 0;
  min-height: clamp(520px, 80vh, 860px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: clamp(520px, 80vh, 860px);
}

.hero-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 620px;
  color: #fff;
}

.hero-media img {
  width: clamp(260px, 30vw, 390px);
  max-width: 100%;
  max-height: 700px;
  margin: 0 0 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(28px, 4vw, 55px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--highlight);
  margin-bottom: 6px;
  display: block;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: none;
  margin: 0 0 10px;
}

.lead {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}

.section-head .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.intro {
  background: #fff;
  text-align: center;
}

.intro h2,
.how-it-works h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: var(--ink);
  margin-bottom: 12px;
}

.intro .lead,
.how-it-works .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.features {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.feature-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 21, 14, 0.08);
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-card img {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 10px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #000;
}

.modules {
  background: var(--bg);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.module-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 21, 14, 0.08);
}

.module-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.module-card p {
  margin: 0;
  color: #1f2933;
}

.audience {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.audience-card h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--ink);
}

.how-it-works {
  background: var(--bg);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 36px;
}

.how-card {
  background: #fff;
  padding: 28px 22px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.how-card img {
  width: 160px;
  height: auto;
  margin: 0 auto 10px;
}

.how-card h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  color: #000;
  margin: 0;
}

.cta-band {
  background: var(--soft);
}

.cta-card {
  width: min(702px, 92vw);
  min-height: 422px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  align-content: center;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
  margin: 0;
}

.free {
  background: #fff;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.free h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.free-card {
  background: var(--teal);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.faq {
  background: var(--teal);
}

.faq h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(19, 79, 92, 0.35);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.download {
  background-size: cover;
  background-position: center;
}

.download h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
}

.download .lead {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.download-media img {
  max-width: 260px;
  margin: 0 auto;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(15, 21, 14, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
}

.pricing-card--featured {
  border-color: rgba(63, 98, 27, 0.4);
  box-shadow: 0 18px 40px rgba(63, 98, 27, 0.18);
}

.pricing-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(63, 98, 27, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: #4b5563;
  margin-left: 4px;
}

.pricing-tag {
  margin: 0;
  color: #4b5563;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #1f2933;
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
  color: #4b5563;
}

.page-hero {
  padding: 90px 0 80px;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.page-hero .container {
  position: relative;
  color: #000;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 54.6px;
  color: #000;
}

.page-hero p {
  color: #000;
}

.page-hero--uppercase h1 {
  text-transform: uppercase;
}

.page-hero--bold h1 {
  font-weight: 600;
}

.page-hero--center .container {
  text-align: center;
}

.page-content {
  background: #f7f3ef;
}

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

.page-content ul {
  padding-left: 18px;
  color: #1f2933;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content--center h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-content--center > .container > p {
  max-width: 820px;
  margin: 0 auto 12px;
}

.content-block {
  margin-bottom: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 21, 14, 0.08);
  border: 1px solid #e2e2e2;
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.team-link {
  display: inline-flex;
  margin-top: 8px;
  justify-content: center;
}

.team-link img {
  width: 24px;
  height: 24px;
}

.memories {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.memories .memories-card {
  background: rgba(15, 21, 14, 0.7);
  padding: 28px 44px;
  border-radius: 8px;
  display: inline-block;
}

.contact-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 110px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: #fff;
  color: #000;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.contact-card--transparent {
  background: transparent;
  color: #fff;
  padding: 0;
  box-shadow: none;
  border: 0;
}

.contact-form-card {
  box-shadow: var(--shadow-floating);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form label input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fff;
}

.contact-form .btn-submit {
  width: 100%;
}

.contact-form p {
  font-size: 12px;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
}

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

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .hero-media img {
    margin: 24px auto 0;
  }

  .feature-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .download-media img {
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    gap: 16px;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding: 80px 0;
    min-height: auto;
  }

  .hero-media img {
    width: min(320px, 80vw);
    margin: 0 auto;
  }

  .feature-grid,
  .how-grid,
  .free-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .how-card {
    min-height: auto;
  }

  .cta-card {
    min-height: auto;
    padding: 40px 24px;
  }

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