:root {
  /* Soft Carpathian palette — pastel, gentle, premium */
  --cream: #FBF7EE;
  --cream-soft: #F5EFE0;
  --cream-deep: #EDE3CC;
  --white: #FFFFFF;
  --line: #EBE3D4;
  --line-soft: #F2EBDD;
  --ink: #2A241D;
  --ink-soft: #5C5448;
  --ink-mute: #978F82;
  --sage: #7A9468;
  --sage-dark: #5A7549;
  --sage-light: #A8BC96;
  --sage-mist: #E3EBDB;
  --honey: #D4A256;
  --honey-light: #ECC685;
  --honey-mist: #F8EBCF;
  --terracotta: #C97B5A;
  --cherry: #B8556B;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--sage); color: white; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
}
.brand-mark { color: var(--sage); font-size: 22px; transform: translateY(-2px); }
.brand-text span { color: var(--sage); font-weight: 600; }

.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font: 500 14px 'Inter', sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--sage); color: var(--sage); }
.caret { font-size: 10px; opacity: 0.6; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(20,15,10,0.1);
  list-style: none;
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 200;
}
.lang-menu.open { display: block; }
.lang-menu li {
  padding: 11px 18px;
  cursor: pointer;
  font: 14px 'Inter', sans-serif;
  transition: background 0.15s;
}
.lang-menu li:hover { background: var(--cream-soft); }
.lang-menu li.active { background: var(--cream-soft); font-weight: 600; color: var(--sage); }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(122,148,104,0.08), transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(200,133,42,0.06), transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 88%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(40,30,20,0.22));
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.hero-image img:hover { transform: rotate(0) scale(1.025); }
.badge-100 {
  position: absolute;
  top: -10px; right: 8%;
  background: var(--sage);
  color: white;
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 14px 32px rgba(53,74,44,0.32);
  transform: rotate(8deg);
  z-index: 2;
}
.badge-100 strong { font-size: 38px; font-weight: 700; line-height: 1; }
.badge-100 span { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; opacity: 0.9; }

.hero-text { padding-right: 20px; }
@media (max-width: 920px) { .hero-text { padding-right: 0; } }

.kicker {
  display: inline-block;
  font: 600 12px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--sage);
  margin-bottom: 22px;
  padding: 6px 14px;
  background: rgba(76, 104, 64, 0.08);
  border-radius: 999px;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 26px;
  letter-spacing: -1px;
}
.lead {
  font-family: 'Lora', serif;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 540px;
}
.bullets {
  list-style: none;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.bullets li {
  font-size: 16px;
  padding: 7px 0;
  color: var(--ink);
  line-height: 1.45;
}

/* ============ CTA ============ */
.cta-block {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  align-items: stretch;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 10px;
  font: 600 16px 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  border: none;
}
.cta-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 6px 18px rgba(53, 74, 44, 0.2);
}
.cta-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(53, 74, 44, 0.32);
}
.cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.cta-secondary:hover {
  background: var(--ink);
  color: white;
}
.cta-price {
  font-weight: 700;
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid rgba(255,255,255,0.32);
}
.cta-secondary .cta-price { border-left-color: rgba(0,0,0,0.2); }
.cta-discount {
  background: var(--honey);
  color: var(--ink);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.trust {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.05;
}
.section-lead {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ============ FEATURES ============ */
.features {
  background: var(--sage-mist);
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; gap: 20px; } }
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(40,30,20,0.08); }
.feature-icon { font-size: 44px; margin-bottom: 14px; line-height: 1; }
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.proof-bar {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
}
@media (max-width: 768px) { .proof-bar { grid-template-columns: repeat(2, 1fr); } }
.proof-item { text-align: center; }
.proof-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font: 600 11px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-mute);
}

/* ============ WHAT'S INSIDE ============ */
.whats-inside {
  background: var(--honey-mist);
}
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) { .inside-grid { grid-template-columns: 1fr; } }
.inside-item {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.inside-item strong {
  color: var(--sage);
  font-size: 22px;
  flex: 0 0 28px;
  line-height: 1.2;
}
.inside-item b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.inside-item span {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.guarantee-bar {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid var(--sage);
  box-shadow: 0 12px 30px rgba(122,148,104,0.15);
}
@media (max-width: 600px) { .guarantee-bar { flex-direction: column; text-align: center; } }
.guarantee-badge {
  background: var(--sage);
  color: white;
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}
.guarantee-text b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.guarantee-text span {
  font-size: 14px;
  color: var(--ink-soft);
  display: block;
  margin-top: 4px;
  line-height: 1.5;
}

/* ============ ABOUT ============ */
.about {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink);
}
.about-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--sage);
  border-left: 3px solid var(--sage);
  padding: 12px 0 12px 26px;
  margin-top: 28px;
  line-height: 1.4;
}
.about-photo img {
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(40,30,20,0.18);
}

/* ============ CHANNELS ============ */
.channels { background: var(--cream-soft); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 768px) { .channels-grid { grid-template-columns: 1fr; } }
.channel-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  display: block;
}
.channel-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(53,74,44,0.12);
}
.channel-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
}
.channel-handle {
  font: 500 13px 'Inter', sans-serif;
  color: var(--sage);
  letter-spacing: 0.3px;
}

/* ============ FREE TEASER ============ */
.free-teaser { background: var(--cream); }
.free-teaser-card {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--honey-mist) 100%);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 64px 56px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(40,30,20,0.08);
}
@media (max-width: 700px) { .free-teaser-card { padding: 40px 24px; border-radius: 16px; } }
.free-teaser-card .kicker { margin-bottom: 14px; }
.free-teaser-card h2 { margin-bottom: 14px; }
.free-teaser-card .section-lead { margin-bottom: 32px; }
.free-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 32px;
  max-width: 720px;
}
@media (max-width: 700px) { .free-teaser-grid { grid-template-columns: 1fr; max-width: 420px; } }
.free-thumb {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.free-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20,15,10,0.12);
}
.free-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.free-thumb span {
  display: block;
  font: 600 14px 'Inter', sans-serif;
  color: var(--ink);
  padding: 12px 14px;
  text-align: center;
}
.free-cta {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 16px 36px;
  border-radius: 10px;
  font: 600 16px 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.free-cta:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* ============ PREVIEWS ============ */
.previews { background: var(--white); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-grid img {
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(40,30,20,0.14);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.preview-grid img:hover { transform: scale(1.025); }

/* ============ BUY ============ */
.buy { background: var(--cream-soft); }
.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) { .buy-grid { grid-template-columns: 1fr; } }
.buy-grid:has(.buy-card[style*="display: none"]) {
  grid-template-columns: 1fr 1fr;
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .buy-grid:has(.buy-card[style*="display: none"]) {
    grid-template-columns: 1fr;
  }
}
.buy-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 38px 30px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.buy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(40,30,20,0.1);
  border-color: var(--sage-light);
}
.buy-card-highlight {
  border-color: var(--sage);
  border-width: 2px;
  background: linear-gradient(180deg, #fefdfa 0%, #faf6ec 100%);
}
.buy-card-highlight::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sage);
  color: white;
  font: 700 10px 'Inter', sans-serif;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  border-radius: 999px;
}
.buy-flag { font-size: 38px; margin-bottom: 10px; line-height: 1; }
.buy-method-label {
  font: 600 12px 'Inter', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.buy-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.buy-btn {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font: 600 15px 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 14px;
  width: 100%;
}
.buy-btn:hover { background: var(--sage-dark); transform: scale(1.015); }
.buy-note {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ============ FAQ ============ */
.faq { background: var(--white); }
.faq-item {
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  padding: 20px 26px;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--sage); }
.faq-item[open] { background: var(--cream-soft); }
.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 300;
  color: var(--sage);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 17px; color: var(--ink-soft); line-height: 1.65; }

/* ============ LEAD CAPTURE ============ */
.lead-capture {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--honey-mist) 100%);
  padding: 80px 0;
}
.lead-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20,15,10,0.08);
}
@media (max-width: 600px) { .lead-card { padding: 36px 24px; } }
.lead-icon { font-size: 48px; margin-bottom: 14px; }
.lead-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.lead-card p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.lead-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
}
@media (max-width: 600px) { .lead-form { flex-direction: column; } }
.lead-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: 16px 'Inter', sans-serif;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border 0.2s;
}
.lead-form input:focus { border-color: var(--sage); }
.lead-form button {
  background: var(--sage);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font: 600 15px 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.lead-form button:hover { background: var(--sage-dark); }
.lead-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.lead-note { font-size: 13px; color: var(--ink-mute); }
.lead-success {
  color: var(--sage-dark);
  font-weight: 600;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 32px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  font: 14px 'Inter', sans-serif;
}
@media (max-width: 768px) { .footer-row { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--honey-light);
}
.footer-brand span { font-size: 14px; opacity: 0.6; }
.footer-links, .footer-channels {
  display: flex; flex-direction: column; gap: 9px;
}
.footer-links a, .footer-channels a {
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover, .footer-channels a:hover { opacity: 1; color: var(--honey-light); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 18px;
  text-align: center;
  opacity: 0.45;
  font-size: 13px;
}
