/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: var(--lime);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 90px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,212,40,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(168,212,40,0.12);
  border: 1px solid rgba(168,212,40,0.3);
  color: var(--lime2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
  color: #fff;
}

.hero h1 em {
  color: var(--lime2);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta { animation: fadeUp 0.7s 0.3s ease both; }

/* HERO PHOTO */
.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* PHOTO PLACEHOLDER system */
.photo-placeholder {
  background: linear-gradient(135deg, #1d3320 0%, #2a4a2d 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  border: 2px dashed rgba(168,212,40,0.4);
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%23a8d428' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.photo-placeholder .ph-icon {
  font-size: 40px;
  margin-bottom: 14px;
  position: relative;
}

.photo-placeholder .ph-title {
  font-weight: 700;
  color: var(--lime2);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}

.photo-placeholder .ph-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  position: relative;
  max-width: 260px;
}

.ph-hero { height: 440px; }
.ph-sm { height: 200px; }
.ph-md { height: 260px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 44px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 24px rgba(168,212,40,0.35);
}

.btn-primary:hover {
  background: var(--lime2);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(168,212,40,0.5);
}

.btn-guarantee {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.btn-guarantee-dark {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-label { font-size: 13px; color: var(--muted); }

/* ── SECTION BASE ── */
section {
  padding: 90px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green2);
  font-weight: 700;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

h2 em { color: var(--green); font-style: normal; }

.divider {
  width: 48px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── CONTRADICTION ── */
.contradiction {
  background: var(--dark2);
  color: #fff;
  padding: 90px 24px;
}

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

.big-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.2;
  color: #fff;
}

.big-quote em { color: var(--lime2); font-style: normal; }

.contradiction-text {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.75;
}

/* ── QUIZ ── */
.quiz-wrap {
  background: var(--bg2);
  padding: 80px 24px;
}

.quiz-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 2px 40px rgba(46,125,50,0.08);
  border: 1px solid var(--border);
}

.quiz-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 6px;
}

.quiz-sub { color: var(--muted); font-size: 15px; margin-bottom: 32px; }

.quiz-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: padding-left 0.15s;
}

.quiz-item:last-child { border-bottom: none; }
.quiz-item:hover { padding-left: 4px; }

.quiz-check {
  width: 22px; height: 22px;
  border: 2px solid #c8dfc6;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-item.checked .quiz-check {
  background: var(--green);
  border-color: var(--green);
}

.quiz-item.checked .quiz-check::after {
  content: '✓';
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.quiz-text { font-size: 15px; color: #555; line-height: 1.5; }
.quiz-item.checked .quiz-text { color: var(--dark); }

.quiz-result {
  margin-top: 28px;
  padding: 22px 26px;
  background: #f0f7ee;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  display: none;
}

.quiz-result.show { display: block; }

.quiz-count {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.quiz-msg { font-size: 15px; color: var(--muted); }

/* ── AGITATION ── */
.ag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.ag-card {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 26px;
  transition: box-shadow 0.2s;
}

.ag-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.ag-icon { font-size: 30px; margin-bottom: 12px; }
.ag-title { font-weight: 700; font-size: 15px; color: var(--red); margin-bottom: 6px; }
.ag-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── REVEAL ── */
.reveal-wrap {
  background: var(--dark);
  padding: 90px 24px;
  color: #fff;
}

.reveal-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.reveal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  background: var(--lime);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 28px;
  box-shadow: 0 0 60px rgba(168,212,40,0.4);
}

.reveal-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.reveal-title em { color: var(--lime2); font-style: normal; }

.reveal-sub {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.reveal-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rstat {
  text-align: center;
}

.rstat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--lime2);
  line-height: 1;
  margin-bottom: 4px;
}

.rstat-label { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--bg2);
  padding: 90px 24px;
}

.testi-inner { max-width: 900px; margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.testi-photo { width: 100%; }

.testi-body { padding: 24px; }

.testi-stars {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 16px;
}

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

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testi-role { font-size: 13px; color: var(--muted); }

/* ── OFFER ── */
.offer-section { background: var(--bg); padding: 90px 24px; }
.offer-inner { max-width: 900px; margin: 0 auto; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.offer-box {
  background: var(--surface);
  border-radius: 20px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(46,125,50,0.1);
}

.offer-header {
  background: var(--dark);
  color: #fff;
  padding: 32px 36px;
  text-align: center;
}

.offer-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 6px;
  color: #fff;
}

.offer-desc { font-size: 14px; color: rgba(255,255,255,0.5); }

.offer-body { padding: 32px 36px; }

.include-list { list-style: none; margin-bottom: 28px; }

.include-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #444;
}

.include-list li:last-child { border-bottom: none; }
.include-list .ck { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.price-block {
  background: #f5faf3;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; }

.price-now {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  color: var(--green);
  line-height: 1;
}

.price-now sup { font-size: 26px; vertical-align: top; margin-top: 14px; display: inline-block; }
.price-install { font-size: 14px; color: var(--muted); margin-top: 6px; }

.guarantee-box {
  background: #f0f9f2;
  border: 1px solid rgba(46,125,50,0.2);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
}

.guarantee-box .g-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-box .g-title { font-weight: 700; font-size: 14px; color: var(--green); margin-bottom: 4px; }
.guarantee-box .g-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* OFFER PHOTO SIDE */
.offer-visual { display: flex; flex-direction: column; gap: 16px; }

.offer-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
}

.ob-icon {
  width: 40px; height: 40px;
  background: #f0f9f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ob-title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.ob-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── COMPARISON ── */
.comp-section { background: var(--dark2); padding: 90px 24px; color: #fff; }
.comp-inner { max-width: 820px; margin: 0 auto; }

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.comp-col { border-radius: 16px; padding: 30px; }

.comp-col.bad {
  background: rgba(198,40,40,0.08);
  border: 1px solid rgba(198,40,40,0.25);
}

.comp-col.good {
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(168,212,40,0.3);
}

.comp-head { font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.comp-col.bad .comp-head { color: #ef9a9a; }
.comp-col.good .comp-head { color: var(--lime2); }

.comp-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section { padding: 90px 24px; max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-arrow { color: var(--green2); font-size: 22px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 90px 24px;
}

.footer-cta h2 { color: #fff; }
.footer-cta h2 em { color: var(--lime2); }
.footer-cta .btn-primary { background: #fff; color: var(--green); box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.footer-cta .btn-primary:hover { background: var(--lime2); color: var(--dark); }

/* ── STICKY ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 2px solid var(--lime);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}

.sticky-bar.show { transform: translateY(0); }

.sticky-info { text-align: left; }
.sticky-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.sticky-price { font-family: 'Fraunces', serif; font-size: 26px; color: var(--lime2); line-height: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .contradiction-inner { grid-template-columns: 1fr; }
  .ag-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .quiz-card { padding: 28px 20px; }
  .offer-body { padding: 24px 20px; }
  .offer-header { padding: 24px 20px; }
  section { padding: 60px 20px; }
  .sticky-bar { flex-direction: column; gap: 10px; }
  .sticky-bar .btn-primary { width: 100%; text-align: center; }
}

