:root {
  --green-900: #075c49;
  --green-800: #086d55;
  --green-700: #0b7d61;
  --green-600: #11936f;
  --green-500: #1aa77c;
  --mint-100: #e8f4ec;
  --mint-200: #d9ecdf;
  --cream: #fbf7ed;
  --paper: #fffdf8;
  --ink: #163b34;
  --muted: #60766f;
  --line: rgba(8, 109, 85, 0.14);
  --yellow: #e9ad35;
  --shadow: 0 24px 60px rgba(7, 92, 73, 0.1);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-space { padding: 110px 0; }
.soft-section { background: var(--mint-100); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 237, .92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  color: var(--green-700);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.8px;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.main-nav a {
  color: #35574e;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--green-700); }
.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.language-switcher button {
  min-width: 42px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.language-switcher button.active {
  background: var(--green-700);
  color: white;
}
.header-cta { margin-left: 2px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; height: 21px; fill: currentColor; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 13px; }
.button-large { min-height: 60px; padding-inline: 30px; }
.button-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 14px 30px rgba(11, 125, 97, .2);
}
.button-primary:hover { background: var(--green-800); }
.button-secondary { background: rgba(255,255,255,.62); border-color: var(--line); }
.button-light { background: white; color: var(--green-800); box-shadow: 0 14px 30px rgba(0,0,0,.12); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow-light { color: #d8f6e8; }
.status-dot { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; box-shadow: 0 0 0 6px rgba(26,167,124,.12); }

.hero { padding-top: 76px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}
.hero h1 {
  margin: 20px 0 24px;
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: .99;
  letter-spacing: -5px;
  font-weight: 800;
}
.hero h1 span { color: var(--green-700); }
.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #4b675f;
}
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-image-wrap {
  height: clamp(520px, 50vw, 620px);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}
.floating-offer {
  position: absolute;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 18px 40px rgba(7,92,73,.14);
  border-radius: 20px;
}
.offer-one { left: -38px; bottom: 48px; padding: 18px 20px; min-width: 220px; }
.offer-label { display: block; color: var(--green-700); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; }
.offer-one strong { display: block; font-size: 23px; margin-top: 2px; }
.offer-one small, .offer-two small { display: block; color: var(--muted); }
.offer-two { right: -28px; top: 54px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.offer-two strong { display: block; }
.offer-check { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green-700); color: white; font-weight: 900; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { padding: 28px 22px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--green-800); font-size: 17px; }
.trust-grid span { color: var(--muted); font-size: 13px; }

.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -2.7px;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card {
  position: relative;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: .25s ease;
}
.format-card:hover, .format-card.active { transform: translateY(-5px); border-color: rgba(11,125,97,.35); box-shadow: var(--shadow); }
.format-card.featured { background: var(--green-700); color: white; border-color: transparent; }
.format-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px;
  background: var(--mint-100); color: var(--green-700); font-weight: 900;
}
.featured .format-icon { background: rgba(255,255,255,.17); color: white; }
.format-card h3 { margin: 24px 0 12px; font-size: 25px; }
.format-card p { color: var(--muted); min-height: 78px; }
.featured p { color: rgba(255,255,255,.78); }
.format-card ul { list-style: none; padding: 0; margin: 24px 0; }
.format-card li { padding: 7px 0 7px 24px; position: relative; font-size: 14px; font-weight: 600; }
.format-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 900; }
.featured li::before { color: #d5f6e7; }
.text-link { border: 0; padding: 0; background: transparent; color: var(--green-700); font-weight: 800; cursor: pointer; }
.featured .text-link { color: white; }
.text-link span { transition: margin .2s ease; }
.text-link:hover span { margin-left: 5px; }
.popular-badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; background: rgba(255,255,255,.16); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }

.format-preview {
  margin-top: 28px;
  padding: 42px;
  background: linear-gradient(135deg, #fffefb, #eaf5ed);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 40px;
}
.format-preview img { border-radius: 24px; width: 100%; }
.preview-number { color: var(--green-600); font-size: 13px; font-weight: 900; }
.format-preview h3 { margin: 10px 0; font-size: 34px; }
.format-preview p { color: var(--muted); margin-bottom: 24px; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { padding: 28px; background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-md); }
.step-card span { color: var(--green-600); font-size: 13px; font-weight: 900; }
.step-card h3 { margin: 18px 0 10px; font-size: 20px; }
.step-card p { color: var(--muted); font-size: 14px; margin: 0; }

.chat-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.phone-stage { display: flex; justify-content: center; }
.phone-stage img { width: min(100%, 560px); border-radius: 40px; box-shadow: var(--shadow); }
.chat-copy h2 { margin: 12px 0 18px; font-size: clamp(38px,4vw,58px); line-height: 1.08; letter-spacing: -2.6px; }
.chat-copy > p { color: var(--muted); font-size: 17px; }
.benefit-list { margin: 30px 0; display: grid; gap: 15px; }
.benefit-list > div { display: flex; align-items: flex-start; gap: 12px; }
.benefit-list span { flex: 0 0 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-100); color: var(--green-700); font-weight: 900; }
.benefit-list p { margin: 1px 0 0; color: var(--muted); }
.benefit-list strong { color: var(--ink); }

.category-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.category-cloud span { padding: 15px 20px; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; color: #35574e; }
.category-cloud span:nth-child(3n) { background: var(--mint-100); }
.category-cloud span:last-child { background: var(--green-700); color: white; }

.partner-section { padding-top: 70px; }
.partner-shell {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 48px;
  padding: 70px;
  color: white;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 54px;
  overflow: hidden;
}
.partner-copy h2 { margin: 12px 0 18px; font-size: clamp(40px,4.5vw,64px); line-height: 1.06; letter-spacing: -3px; }
.partner-copy > p { color: rgba(255,255,255,.78); font-size: 17px; }
.partner-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 34px; }
.partner-points div { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.partner-points span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; background: rgba(255,255,255,.15); border-radius: 9px; font-weight: 800; font-size: 11px; }
.partner-points p { margin: 2px 0 0; font-size: 13px; line-height: 1.45; }
.partner-visual img { border-radius: 34px; box-shadow: 0 24px 70px rgba(0,0,0,.16); }

.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.download-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.partner-download { background: var(--mint-100); }
.download-type { color: var(--green-700); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.download-card h3 { margin: 8px 0; font-size: 29px; }
.download-card p { color: var(--muted); margin-bottom: 22px; }
.qr-placeholder { width: 170px; border-radius: 18px; border: 8px solid white; box-shadow: 0 12px 30px rgba(7,92,73,.12); }
.store-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.store-buttons a { min-width: 132px; padding: 10px 15px; border-radius: 12px; background: #13372f; color: white; line-height: 1.15; }
.store-buttons span { display: block; font-size: 9px; opacity: .7; }
.store-buttons strong { font-size: 13px; }
.download-card .store-buttons a { min-width: 156px; }
.partner-store-buttons a {
  min-width: 156px;
  background: white;
  color: var(--green-800);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.84); border-radius: 18px; overflow: hidden; }
.faq-item button { width: 100%; padding: 21px 22px; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; font-weight: 800; }
.faq-item button b { color: var(--green-700); font-size: 21px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 200px; }

.final-cta { padding: 0 0 90px; background: var(--mint-100); }
.final-cta-inner { padding: 48px 54px; background: var(--green-700); color: white; border-radius: 34px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { margin: 10px 0 4px; font-size: 42px; letter-spacing: -2px; }
.final-cta p { margin: 0; color: rgba(255,255,255,.75); }

.site-footer { background: #10382f; color: white; padding: 70px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 40px; }
.footer-brand { color: white; }
.footer-grid p { color: rgba(255,255,255,.6); }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1020px) {
  .section-space { padding: 88px 0; }
  .main-nav { position: fixed; inset: 82px 20px auto 20px; display: none; flex-direction: column; gap: 0; padding: 16px; background: rgba(255,253,248,.98); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; }
  .menu-toggle { display: block; margin-left: auto; }
  .language-switcher { order: 3; }
  .header-cta { display: none; }
  .hero-grid, .chat-grid, .partner-shell, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text, .section-heading { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .format-grid { grid-template-columns: 1fr; }
  .format-card p { min-height: 0; }
  .format-preview { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .chat-copy { text-align: center; }
  .benefit-list { text-align: left; max-width: 650px; margin-inline: auto; margin-bottom: 30px; }
  .partner-shell { padding: 58px; }
  .partner-visual { max-width: 620px; margin-inline: auto; }
  .download-grid { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section-space { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 27px; }
  .header-inner { gap: 10px; }
  .language-switcher button { min-width: 38px; padding-inline: 7px; }
  .main-nav { inset: 72px 12px auto 12px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: 51px; letter-spacing: -3.6px; }
  .hero-text { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-image-wrap {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .offer-one { left: 8px; bottom: 12px; min-width: 190px; }
  .offer-two { right: 8px; top: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section-heading h2 { font-size: 39px; letter-spacing: -2px; }
  .format-card { padding: 28px; }
  .format-preview { padding: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .phone-stage img { border-radius: 28px; }
  .chat-copy h2 { font-size: 40px; }
  .partner-section { padding-top: 30px; }
  .partner-shell { padding: 38px 24px; border-radius: 30px; }
  .partner-copy h2 { font-size: 42px; letter-spacing: -2.4px; }
  .partner-points { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .qr-placeholder { margin-inline: auto; }
  .store-buttons { justify-content: center; }
  .final-cta { padding-bottom: 50px; }
  .final-cta-inner { padding: 38px 24px; border-radius: 26px; }
  .final-cta h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
