:root {
  --green: #1A4D2E;
  --green-mid: #2D6B44;
  --amber: #E8A838;
  --amber-light: #F5C97A;
  --bg: #FAFAF7;
  --surface: #F0EFE9;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --border: #D4D3CC;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232,168,56,0.07);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,56,0.15);
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--amber-light);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-headline em {
  color: var(--amber);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
}
.hero-cta {
  margin-top: 36px;
}
.cta-group {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 24px;
}
.price-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.price-per {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Product showcase */
.hero-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.product-showcase {
  position: relative;
  width: 280px;
}
.product-plate {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.15);
  padding: 20px;
  position: relative;
  z-index: 2;
}
.plate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.tap-icon {
  opacity: 0.5;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
}
.hero-img-fallback {
  flex-direction: column;
}
.hero-img-fallback .plate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.plate-body {
  text-align: center;
}
.star-row {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 96px;
  margin: 0 auto 14px;
}
.qr-cell {
  aspect-ratio: 1;
  background: var(--green);
  border-radius: 2px;
}
.qr-cell.filled { background: var(--amber); }
.tap-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--green);
  text-align: center;
}
.nfc-label {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--amber);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
}
.product-shadow {
  width: 240px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
  margin: 0 auto;
  margin-top: -8px;
  z-index: 1;
}
.product-caption {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* Stats */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Section labels */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}

/* How it works */
.howitworks {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 60px;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(26,77,46,0.1);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.step-icon { margin-bottom: 20px; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  flex-shrink: 0;
}

/* Features */
.features {
  background: var(--surface);
  padding: 100px 24px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.features-left .section-title { margin-bottom: 12px; }
.features-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26,77,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.feature-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Proof block */
.features-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.proof-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.proof-quote svg { margin-bottom: 16px; }
.proof-quote p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.proof-attribution { font-size: 13px; color: var(--text-light); }
.proof-attribution strong { color: var(--text); }

/* Review boost visual */
.review-boost-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.boost-before, .boost-after { flex: 1; text-align: center; }
.boost-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.stars-mini { display: flex; justify-content: center; gap: 2px; margin-bottom: 8px; }
.review-count {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.review-high { color: var(--green); }
.rank-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.rank-low { background: #f5f5f5; color: var(--text-light); }
.rank-high { background: rgba(26,77,46,0.1); color: var(--green); }
.boost-arrow { flex-shrink: 0; }

/* Pricing */
.pricing {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing .section-title { margin-bottom: 8px; }
.pricing-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,77,46,0.1);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
}
.card-qty {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.card-per {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.card-margin {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}
.card-best {
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features span {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-features span::before {
  content: '—';
  color: var(--amber);
  flex-shrink: 0;
}
.card-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.card-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}
.pricing-card.featured .card-cta {
  background: var(--amber);
  color: var(--text);
}
.pricing-card.featured .card-cta:hover {
  background: #d4962e;
}
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.card-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 13px 16px;
  background: var(--green);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.card-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}
.card-cta-featured {
  background: var(--amber);
  color: var(--green);
}
.card-cta-featured:hover {
  background: var(--amber-light);
}

/* Testimonials */
.testimonials {
  background: var(--surface);
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials .section-title { text-align: center; margin-bottom: 60px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 14px; color: var(--text); display: block; }
.testimonial-author div { font-size: 12px; color: var(--text-light); }

/* Guarantee */
.guarantee {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.guarantee-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.guarantee-badge { flex-shrink: 0; }
.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 28px;
}
.guarantee-points { display: flex; flex-direction: column; gap: 20px; }
.guarantee-point strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 3px;
}
.guarantee-point span { font-size: 13px; color: var(--text-light); }

/* Closing */
.closing {
  background: var(--green);
  color: var(--white);
  padding: 100px 24px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-price {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px 40px;
}
.cp-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cp-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.cp-note { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Footer */
.footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand { margin-bottom: 40px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline { font-size: 13px; }
.footer-links {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 60px 24px; }
  .features-left { grid-column: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .guarantee-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
  .review-boost-visual { flex-direction: column; }
  .boost-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-headline { font-size: 36px; }
  .pricing-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-direction: column; }
  .closing-price { padding: 20px 24px; }
  .cp-price { font-size: 36px; }
}
