:root {
  --green-deep: #1B3D2F;
  --green-mid: #2D6B4A;
  --green-light: #4A8F6A;
  --green-tag: #3A7558;
  --green-tint: #E6F0EB;
  --cream: #F0EDEA;
  --cream-dark: #E5E1DC;
  --warm-white: #F7F5F2;
  --text-primary: #1B3D2F;
  --text-body: #4A5550;
  --text-muted: #7A8580;
  --card-bg: #FFFFFF;
  --border: #D8D4CF;
  --accent-coral: #C75B3A;
}

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 116px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ————— NAV ————— */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  max-width: none;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: none;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.logo span { font-weight: 400; opacity: 0.5; }
.top-nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}
.top-nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.top-nav-links a + a::before {
  content: "";
  position: absolute;
  left: -0.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(122, 133, 128, 0.35);
}
.top-nav-links a:hover,
.top-nav-links a.active {
  color: var(--green-deep);
}
.top-nav-links a.active {
  font-weight: 700;
}
.top-nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-deep);
}
.lang-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.lang-btn.active {
  background: var(--green-deep);
  color: white;
}

@media (max-width: 1100px) {
  nav { padding: 0.9rem 1.5rem; }
  .top-nav-links { gap: 1rem; }
  .top-nav-links a { font-size: 0.74rem; }
  .top-nav-links a + a::before { left: -0.55rem; }
}

/* ————— HERO WRAPPER WITH GRADIENT ————— */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #E6F0EB 25%, var(--cream) 50%, #EBE8E4 75%, #E6F0EB 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(45,107,74,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(27,61,47,0.04) 0%, transparent 50%);
  animation: gradientOrbs 16s ease infinite alternate;
  pointer-events: none;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes gradientOrbs {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(3%, 2%) rotate(8deg); }
}

/* ————— HERO ————— */
.hero {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: calc(5rem + 82px) 3rem 4rem;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-tag);
  margin-bottom: 1.8rem;
}
.hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--green-deep);
}
.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
}
.hero-question {
  font-size: 1.25rem;
  color: var(--text-head);
  max-width: 540px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
  font-weight: 500;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ————— DUAL CTA ————— */
.dual-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.single-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cta-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-width: 220px;
}
.cta-primary {
  background: var(--green-deep);
  color: white;
}
.cta-primary:hover {
  background: #15332A;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27,61,47,0.25);
}
.cta-secondary {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}
.cta-secondary:hover {
  background: var(--green-deep);
  color: white;
  transform: translateY(-1px);
}
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

/* ————— SIGNUP MODAL ————— */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,61,47,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.modal h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--green-deep);
}
.modal .modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.modal-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-tint);
  border: 1px solid #C4D8CC;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}
.field input, .field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--card-bg);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%237A8580' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus {
  border-color: var(--green-mid);
}
.modal-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
}
.modal-submit:hover {
  background: #15332A;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.modal-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.modal-success h3 {
  margin-bottom: 0.5rem;
}
.modal-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ————— DASHBOARD WALKTHROUGH ————— */
.walk-section {
  max-width: 1140px; margin: 0 auto; padding: 2rem 3rem 5rem;
}
.walk-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-tag); margin-bottom: 1.5rem;
}
.walk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 1.75rem;
  align-items: stretch;
}
.walk-demo-pane {
  min-width: 0;
  display: flex;
  align-self: stretch;
}
.demo-path-pane {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(243,248,245,0.9) 100%);
  border: 1px solid rgba(27,61,47,0.08);
  border-radius: 22px;
  padding: 1.25rem 1.15rem 1.15rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(27,61,47,0.08);
}
.demo-path-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-tag);
  margin-bottom: 1rem;
}
.demo-path-label-hint {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(27,61,47,0.62);
}
.demo-path-inline-nav {
  display: none;
}
.demo-path-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(27,61,47,0.1);
  background: rgba(255,255,255,0.96);
  color: var(--green-deep);
  font-size: 0.9rem;
  cursor: pointer;
}
.demo-path-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.1rem;
}
.demo-path-list::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 20px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(45,107,74,0.2) 0%, rgba(45,107,74,0.42) 50%, rgba(45,107,74,0.2) 100%);
}
.demo-path-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  padding: 0.95rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.demo-path-item:not(.active) {
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
}
.demo-path-item:hover {
  transform: translateX(-4px);
  background: rgba(233,243,238,0.72);
  border-color: rgba(45,107,74,0.16);
}
.demo-path-item.active {
  transform: translateX(-6px);
  background: #F8FCF9;
  border-color: rgba(45,107,74,0.2);
  box-shadow: 0 14px 28px rgba(27,61,47,0.08);
}
.demo-path-num {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FBFDFC;
  border: 1.5px solid rgba(45,107,74,0.18);
  box-shadow: 0 0 0 6px rgba(241,247,243,0.9);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-deep);
}
.demo-path-item.active .demo-path-num {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}
.demo-path-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.demo-path-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--green-deep);
}
.demo-path-detail {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(45,107,74,0.12);
  box-shadow: 0 10px 20px rgba(27,61,47,0.06);
  font-size: 0.77rem;
  line-height: 1.58;
  color: var(--text-body);
}
.demo-path-detail-row {
  display: block;
}
.demo-path-detail-text {
  display: grid;
  gap: 0.18rem;
}
.demo-path-detail-text strong {
  font-size: 0.79rem;
  line-height: 1.4;
  color: var(--green-deep);
}
.demo-path-detail-text span {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-body);
}
.app-window {
  width: 100%;
  height: 100%;
  background: #1a1a1a; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.app-titlebar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1rem; background: #2a2a2a;
}
.app-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-dot.r { background: #FF5F57; }
.app-dot.y { background: #FFBD2E; }
.app-dot.g { background: #28CA42; }
.app-title-bar { flex: 1; text-align: center; font-size: 0.72rem; color: #888; font-weight: 500; }
.app-body {
  height: 100%;
  background: var(--warm-white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.dash-fill {
  flex: 0 0 auto;
  height: 0;
  min-height: 0;
}
.dash-mobile-nav {
  display: none;
}
.dash-notif {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FBF8 100%);
  border: 1.5px solid rgba(45,107,74,0.22);
  border-radius: 14px; padding: 1rem 1.05rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 10px 24px rgba(27,61,47,0.06);
  transition: all 0.4s ease;
}
.dn-body { flex: 1; }
.dn-title { font-weight: 700; font-size: 0.96rem; color: var(--green-deep); margin-bottom: 0.3rem; }
.dn-desc { font-size: 0.77rem; color: var(--text-muted); line-height: 1.62; }
.dn-visual { margin-top: 0.5rem; }
.chain-flow {
  display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap;
  padding: 0.4rem 0.55rem; border-radius: 7px;
  background: #FFFBEE; border: 1px solid #E8D060;
}
.chain-node {
  font-size: 0.62rem; font-weight: 600; padding: 0.12rem 0.35rem;
  border-radius: 4px; white-space: nowrap;
}
.chain-node.you { background: var(--green-tint); color: var(--green-deep); }
.chain-node.co  { background: #FFF0CC; color: #7A5E00; }
.chain-arr { font-size: 0.6rem; color: #A08020; font-weight: 600; white-space: nowrap; }
.chain-badge { font-size: 0.58rem; color: #7A5E00; margin-left: 0.3rem; opacity: 0.8; }
.dn-prev-btn {
  padding: 0.4rem 0.5rem; border-radius: 8px;
  background: transparent; color: var(--text-muted);
  border: none;
  font-family: inherit; font-size: 0.72rem; font-weight: 500;
  cursor: pointer; transition: color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.dn-prev-btn:hover { color: var(--green-deep); }
.dn-prev-btn.hidden { visibility: hidden; pointer-events: none; }
.dn-next-btn {
  padding: 0.4rem 0.9rem; border-radius: 8px;
  background: var(--green-deep); color: white; border: none;
  font-family: inherit; font-size: 0.72rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.dn-next-btn:hover { background: #15332A; }
.dn-dots {
  display: flex; gap: 0.35rem; justify-content: center; margin-bottom: 1rem;
}
.dn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); transition: all 0.3s; cursor: pointer;
}
.dn-dot.active { background: var(--green-mid); width: 20px; border-radius: 3px; }
.dn-dot.done { background: var(--green-mid); }
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border);
}
.dash-logo { font-weight: 700; font-size: 1rem; color: var(--green-deep); letter-spacing: -0.03em; }
.dash-status { font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 100px; transition: all 0.5s ease; }
.dash-stats { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.dash-stat {
  flex: 1; padding: 0.6rem 0.4rem; border-radius: 8px;
  border: 1px solid var(--border); background: white;
  text-align: center; transition: all 0.5s ease;
}
.dash-stat .ds-num { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.1rem; transition: all 0.5s ease; }
.dash-stat .ds-label { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.1rem; }
.clearing-bar { height: 6px; border-radius: 3px; background: var(--border); margin-bottom: 1rem; overflow: hidden; }
.clearing-fill { height: 100%; border-radius: 3px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1), background 0.5s ease; width: 0%; }
.dash-list { display: flex; flex-direction: column; gap: 0.35rem; }
.dash-item {
  display: flex; align-items: center; padding: 0.5rem 0.7rem;
  border-radius: 8px; background: white; border: 1px solid var(--border);
  font-size: 0.72rem; transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.dash-item .di-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; margin-right: 0.5rem; flex-shrink: 0; }
.dash-item .di-icon.out { background: #FCCFC4; }
.dash-item .di-icon.in { background: #C4E8D4; }
.dash-item.out { border-left: 3px solid #D4806A; }
.dash-item.in  { border-left: 3px solid var(--green-mid); }
.dash-item.out .di-amount { color: #B04A2A; }
.dash-item.in  .di-amount { color: var(--green-mid); }
.dash-item .di-info { flex: 1; }
.dash-item .di-name { font-weight: 600; color: var(--text-body); }
.dash-item .di-type { font-size: 0.6rem; color: var(--text-muted); }
.dash-item .di-amount { font-weight: 700; color: var(--green-deep); font-variant-numeric: tabular-nums; margin-right: 0.4rem; transition: all 0.5s ease; font-size: 0.8rem; }
.dash-item .di-amount .amt-old { opacity: 0.55; font-weight: 600; margin-right: 0.25rem; }
.dash-item .di-status { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.15rem 0.4rem; border-radius: 4px; transition: all 0.4s ease; white-space: nowrap; }
.dash-item.cleared { border-color: var(--green-mid); background: var(--green-tint); }
.dash-item.cleared .di-amount { text-decoration: line-through; color: var(--green-mid); opacity: 0.7; }
.dash-item.partial { border-color: var(--green-mid); background: var(--green-tint); }
.dash-item.remaining { border-color: #E0C090; background: #FFF8F0; }
.dash-item.remaining .di-amount { color: #B07830; }
.dash-item.financed { border-color: #A0B8E8; background: #F0F4FF; }
.dash-item.financed .di-amount { color: #4A6FA5; }
@keyframes dashFadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
@keyframes scanPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
@keyframes scanFill { 0%{width:0%} 100%{width:35%} }
.scanning-pulse { animation: scanPulse 1.2s ease infinite; }
.scanning-bar { background: var(--green-tint) !important; animation: scanFill 2.2s ease forwards !important; }
.scanning-item { animation: scanPulse 1.5s ease infinite !important; }
.highlight-found { border-color: #E8D060 !important; background: #FFFBE6 !important; box-shadow: 0 0 12px rgba(200,180,0,0.15); }

/* ————— BENEFITS BAR ————— */
.benefits-bar-section {
  max-width: 1140px; margin: 0 auto; padding: 0 3rem 3rem;
}
.benefits-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  padding: 1.2rem 2rem; border-radius: 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  max-width: 720px; margin: 0 auto;
}
.bb-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 1.2rem;
}
.bb-icon { font-size: 1.1rem; }
.bb-text { font-size: 0.85rem; font-weight: 600; color: var(--green-deep); }
.bb-divider {
  width: 1px; height: 24px; background: var(--border);
}
.why-shell,
.why-dots,
.why-hint,
.benefits-section,
.audience-section {
  display: none !important;
}

@media (max-width: 768px) {
  .benefits-bar { flex-direction: column; gap: 0.3rem; padding: 1rem; }
  .bb-divider { width: 40px; height: 1px; }
  .benefits-bar-section { padding: 0 1.5rem 2rem; }
}

/* ————— DARK SECTION: HOW IT WORKS ————— */
.how-section {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--green-deep);
  padding: 4.5rem 3rem 5rem;
  position: relative;
  background: linear-gradient(180deg, #eff5f1 0%, #e8f0eb 100%);
  border-radius: 0;
}
.how-inner {
  position: relative;
}
.how-section::after {
  display: none;
}
.how-section .section-tag {
  text-align: center;
  margin-bottom: 0.8rem;
}
.how-section .section-title {
  text-align: center;
  margin-bottom: 0.9rem;
  color: var(--green-deep);
}
.why-static-head {
  max-width: 760px;
  margin: 0 auto 2.4rem;
}
.why-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  text-align: center;
  margin: 0;
}
.product-path-section {
  width: 100%;
  padding: 5.75rem 0 6.25rem;
  background:
    radial-gradient(circle at top left, rgba(74, 143, 106, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(199, 91, 58, 0.12), transparent 24%),
    linear-gradient(180deg, #EEF5F0 0%, #E3EEE7 100%);
  position: relative;
  overflow: hidden;
}
.product-path-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3rem;
}
.product-path-section .section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-tag);
  text-align: center;
  margin-bottom: 0.8rem;
}
.path-grid,
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.path-grid {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}
.path-card,
.why-card {
  border-radius: 20px;
  padding: 1.5rem;
}
.path-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27,61,47,0.1);
  box-shadow: 0 12px 32px rgba(27,61,47,0.08);
}
.path-card {
  min-height: 210px;
}
.why-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(246,250,247,0.98) 100%);
  border: 1px solid rgba(27,61,47,0.08);
  box-shadow: 0 18px 40px rgba(27,61,47,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.path-step,
.why-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.path-step {
  background: var(--green-tint);
  color: var(--green-deep);
}
.why-card-number {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}
.path-card h3,
.why-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.path-card h3 {
  color: var(--green-deep);
}
.why-card h3 {
  color: white;
}
.path-card p,
.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.path-card p {
  color: var(--text-body);
}
.path-visual {
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
  max-width: 920px;
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  align-items: center;
  justify-items: center;
  padding-top: 0;
}
.path-visual-line {
  position: absolute;
  left: 18.5%;
  right: 18.5%;
  top: 10px;
  height: 4px;
  border-radius: 999px;
  background: #2D6B4A;
}
.path-visual-line::before {
  content: none;
}
.path-visual-line::after {
  content: none;
}
.path-visual-node {
  position: relative;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  font: inherit;
  padding: 0 0.2rem 0;
  border-radius: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}
.path-visual-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2.5px solid rgba(45,107,74,0.35);
  box-shadow: 0 0 0 6px rgba(238,245,240,0.9);
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(45,107,74,0.5);
}
.path-visual-node.active .path-visual-dot {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
  box-shadow: 0 0 0 6px rgba(27,61,47,0.1), 0 4px 14px rgba(27,61,47,0.22);
}
.path-visual-node:hover:not(.active) .path-visual-dot {
  border-color: var(--green-mid);
  color: var(--green-mid);
  background: #f5faf7;
}
.path-visual-node.active,
.path-visual-node:hover {
  transform: none;
}
.path-visual-node.active .path-visual-label {
  color: var(--green-deep);
}
.path-visual-label {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(27,61,47,0.45);
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.path-visual-node.active .path-visual-label {
  color: var(--green-deep);
}
.path-click-hint {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--green-mid);
}
.why-card-section {
  padding: 1.25rem 1.35rem;
}
.why-card-section + .why-card-section {
  border-top: 1px solid rgba(27,61,47,0.08);
}
.why-card-top {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-tag);
}
.why-card-middle {
  min-height: 140px;
  display: flex;
  align-items: center;
}
.why-card-bottom {
  display: flex;
  align-items: flex-start;
}
.why-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--green-deep);
}
.why-card p {
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--text-body);
  margin: 0;
}
.why-cards {
  gap: 1.5rem;
  align-items: stretch;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,107,74,0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  box-shadow: 0 24px 52px rgba(27,61,47,0.12);
}
.why-static-head .section-title {
  margin-bottom: 0.9rem;
}
.why-shell,
.why-dots,
.why-hint,
.benefits-section,
.audience-section {
  display: none;
}
.why-shell {
  display: none;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 1rem;
}
.why-content {
  min-width: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.why-content .section-title {
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.why-nav-btn:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 220px;
  align-items: stretch;
}
.step {
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  margin-left: auto;
  margin-right: auto;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: white;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.why-dots {
  display: none;
  margin-top: 1rem;
  justify-content: center;
  gap: 0.45rem;
}
.why-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s ease;
}
.why-dot.active {
  width: 22px;
  border-radius: 6px;
  background: #FFFFFF;
}
.why-hint {
  display: none;
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}

/* ————— BENEFITS ————— */
.benefits-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.benefits-section .section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-tag);
  text-align: center;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--green-deep);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  max-width: 960px;
  margin: 0 auto;
}
.benefit-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FFFFFF 0%, #F9FAF8 100%);
  border: 1px solid #CFD7D2;
  border-radius: 14px;
  padding: 1.35rem 1.4rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.benefit-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2D6B4A;
  opacity: 0.45;
}
.benefit-card:hover {
  border-color: #9FB4A8;
  box-shadow: 0 10px 30px rgba(27,61,47,0.08);
  transform: translateY(-3px);
}
.benefit-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(27,61,47,0.25);
  background: rgba(230,240,235,0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.8rem;
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.benefit-card p {
  font-size: 0.85rem;
  color: #5A6862;
  line-height: 1.6;
}
.benefit-card:nth-child(1)::after { background: #2D6B4A; }
.benefit-card:nth-child(2)::after { background: #4A6FA5; }
.benefit-card:nth-child(3)::after { background: #A05A3A; }
.benefit-card:nth-child(4)::after { background: #3F6E8A; }
.benefit-card:nth-child(1) { border-color: #B8CDC0; }
.benefit-card:nth-child(2) { border-color: #BCCAE0; }
.benefit-card:nth-child(3) { border-color: #D9C3B3; }
.benefit-card:nth-child(4) { border-color: #BDD1DA; }

.benefit-card:nth-child(1) .benefit-kicker {
  border-color: rgba(45,107,74,0.35);
  background: rgba(230,240,235,0.85);
  color: #2D6B4A;
}
.benefit-card:nth-child(2) .benefit-kicker {
  border-color: rgba(74,111,165,0.35);
  background: rgba(232,238,248,0.9);
  color: #4A6FA5;
}
.benefit-card:nth-child(3) .benefit-kicker {
  border-color: rgba(160,90,58,0.35);
  background: rgba(249,238,232,0.9);
  color: #A05A3A;
}
.benefit-card:nth-child(4) .benefit-kicker {
  border-color: rgba(63,110,138,0.35);
  background: rgba(231,241,246,0.9);
  color: #3F6E8A;
}

/* ————— AUDIENCE ————— */
.audience-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
  text-align: center;
}
.audience-section .section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-tag);
  margin-bottom: 0.8rem;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.audience-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid #C9D4CE;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: #3F4E47;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  box-shadow: 0 1px 0 rgba(27,61,47,0.05);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.audience-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2D6B4A;
  flex: 0 0 7px;
}
.audience-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(27,61,47,0.12);
}
.audience-tag:nth-child(1) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  border-color: #C9D4CE;
}
.audience-tag:nth-child(1)::before { background: #2D6B4A; }
.audience-tag:nth-child(2) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  border-color: #C9D4CE;
}
.audience-tag:nth-child(2)::before { background: #A05A3A; }
.audience-tag:nth-child(3) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  border-color: #C9D4CE;
}
.audience-tag:nth-child(3)::before { background: #3F6E8A; }
.audience-tag:nth-child(4) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  border-color: #C9D4CE;
}
.audience-tag:nth-child(4)::before { background: #4A6FA5; }
.audience-tag:nth-child(5) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F5 100%);
  border-color: #C9D4CE;
}
.audience-tag:nth-child(5)::before { background: #6B5B95; }
html[lang="en"] .audience-tags {
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.45rem;
}
html[lang="en"] .audience-tag {
  padding: 0.46rem 0.88rem;
  font-size: 0.77rem;
}

/* ————— BOTTOM CTA ————— */
.bottom-cta {
  background: var(--warm-white);
  padding: 5rem 3rem;
  text-align: center;
  border-top: none;
  box-shadow: none;
  margin-top: -1px;
}
.bottom-cta h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 0.8rem;
}
.bottom-cta p {
  color: var(--text-body);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.bottom-cta .dual-cta .cta-primary {
  background: var(--green-deep);
  color: white;
}
.bottom-cta .dual-cta .cta-primary:hover {
  background: #15332A;
  box-shadow: 0 4px 20px rgba(27,61,47,0.2);
}
.bottom-cta .dual-cta .cta-secondary {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.bottom-cta .dual-cta .cta-secondary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
}

/* ————— FOOTER ————— */
footer {
  text-align: center;
  padding: 2rem 3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ————— RESPONSIVE ————— */
@media (max-width: 768px) {
  [id] { scroll-margin-top: 136px; }
  nav {
    padding: 0.95rem 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
  }
  .logo {
    width: auto;
    text-align: left;
    font-size: 1.45rem;
  }
  .top-nav-links {
    order: 3;
    grid-column: 1 / -1;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    padding: 0.15rem 1rem 0.15rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .top-nav-links::-webkit-scrollbar { display: none; }
  .top-nav-links a {
    white-space: nowrap;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .top-nav-links a + a::before { display: none; }
  .lang-toggle {
    justify-self: end;
  }
  .hero { padding: calc(3.5rem + 114px) 1.5rem 3rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-question { font-size: 1.1rem; }
  .hero-sub { font-size: 0.95rem; }
  .dual-cta { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 300px; }
  .walk-section { padding: 1rem 1.5rem 4rem; }
  .walk-layout { grid-template-columns: 1fr; gap: 1rem; }
  .walk-demo-pane {
    align-self: auto;
  }
  .demo-path-pane {
    display: none;
  }
  .demo-path-label {
    margin-bottom: 0.65rem;
  }
  .demo-path-label-hint {
    display: none;
  }
  .demo-path-list {
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.05rem 0.1rem 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.1rem;
    touch-action: pan-x;
  }
  .demo-path-list::-webkit-scrollbar {
    display: none;
  }
  .demo-path-list::before {
    display: none;
  }
  .demo-path-item {
    flex: 0 0 calc(100% - 0.2rem);
    grid-template-columns: 32px 1fr;
    gap: 0.65rem;
    align-items: center;
    padding: 0.72rem 0.75rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.84);
    border-color: rgba(45,107,74,0.08);
    box-shadow: 0 8px 18px rgba(27,61,47,0.05);
    scroll-snap-align: start;
  }
  .demo-path-item:not(.active) {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }
  .demo-path-item,
  .demo-path-item.active,
  .demo-path-item:hover {
    transform: none;
  }
  .demo-path-item.active {
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(27,61,47,0.08);
  }
  .demo-path-num {
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 4px rgba(241,247,243,0.8);
    font-size: 0.74rem;
  }
  .demo-path-title {
    font-size: 0.82rem;
  }
  .demo-path-detail {
    display: none;
  }
  .demo-path-item.active {
    position: relative;
    padding-bottom: 2.9rem;
  }
  .demo-path-inline-nav {
    position: absolute;
    right: 0.75rem;
    bottom: 0.72rem;
    display: flex;
    gap: 0.4rem;
  }
  .app-window {
    height: auto;
    border-radius: 16px;
  }
  .app-titlebar {
    padding: 0.7rem 0.8rem;
  }
  .app-title-bar {
    min-width: 0;
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .app-body {
    height: auto;
    padding: 0.9rem;
  }
  .dash-fill {
    display: none;
  }
  .dash-notif {
    padding: 0.8rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: 12px;
  }
  .dn-title {
    font-size: 0.9rem;
  }
  .dn-desc {
    font-size: 0.73rem;
    line-height: 1.55;
  }
  .dash-header {
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    padding-bottom: 0.7rem;
  }
  .dash-logo {
    font-size: 0.95rem;
  }
  .dash-status {
    font-size: 0.64rem;
    padding: 0.28rem 0.55rem;
    text-align: center;
  }
  .dash-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.85rem;
  }
  .dash-stat {
    min-width: 0;
    padding: 0.55rem 0.35rem;
  }
  .dash-stat .ds-num {
    font-size: 1rem;
  }
  .dash-stat .ds-label {
    font-size: 0.52rem;
    line-height: 1.35;
  }
  .dash-list {
    gap: 0.45rem;
  }
  .dash-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    padding: 0.35rem 0.5rem 0.6rem;
    border-bottom: 1px solid var(--border);
  }
  .dmn-btn {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    color: var(--green-deep);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  }
  .dmn-btn:disabled {
    opacity: 0.32;
    cursor: default;
  }
  .dmn-btn:not(:disabled):hover {
    background: var(--green-tint);
    border-color: var(--green-mid);
  }
  .dmn-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    min-width: 0;
  }
  .dmn-dots {
    display: flex;
    gap: 0.3rem;
    align-items: center;
  }
  .dmn-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, width 0.2s, border-radius 0.2s;
  }
  .dmn-dot.active {
    width: 16px;
    border-radius: 3px;
    background: var(--green-mid);
  }
  .dmn-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .dash-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon info amount"
      "icon info status";
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0.18rem;
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
  }
  .dash-item .di-icon {
    grid-area: icon;
    width: 24px;
    height: 24px;
    margin-right: 0;
    font-size: 0.7rem;
  }
  .dash-item .di-info {
    grid-area: info;
    min-width: 0;
  }
  .dash-item .di-name {
    font-size: 0.72rem;
    line-height: 1.3;
    word-break: break-word;
  }
  .dash-item .di-type {
    font-size: 0.56rem;
    line-height: 1.35;
  }
  .dash-item .di-amount {
    grid-area: amount;
    margin-right: 0;
    font-size: 0.74rem;
    text-align: right;
    white-space: nowrap;
  }
  .dash-item .di-status {
    grid-area: status;
    justify-self: end;
    font-size: 0.5rem;
    padding: 0.14rem 0.34rem;
  }
  .walk-step-title { font-size: 1.25rem; }
  .how-section {
    padding: 4rem 1.5rem 4.5rem;
    border-radius: 0;
  }
  .how-section .section-title { margin-bottom: 0.85rem; }
  .why-static-head {
    margin-bottom: 1.75rem;
  }
  .why-intro {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .product-path-section { padding: 4.5rem 0 5rem; }
  .product-path-inner { padding: 0 1.5rem; }
  .path-grid,
  .why-cards { grid-template-columns: 1fr; }
  .path-card,
  .why-card { padding: 1.25rem; }
  .why-card {
    padding: 0;
  }
  .path-visual {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    min-height: 0;
    margin-top: 1.35rem;
    padding-left: 0.3rem;
  }
  .path-visual-line {
    left: 19px;
    right: auto;
    top: 20px;
    bottom: 26px;
    width: 3px;
    height: auto;
    background: #2D6B4A;
  }
  .path-visual-line::after {
    content: none;
  }
  .path-visual-node {
    text-align: left;
    padding-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 0.9rem;
    align-items: center;
    transform: none !important;
  }
  .path-visual-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    box-shadow: 0 0 0 5px rgba(230,240,235,0.95);
  }
  .path-visual-label {
    display: block;
    margin-top: 0;
    margin-left: 0;
    align-self: center;
    font-size: 0.86rem;
  }
  .path-grid { margin-top: 1.15rem; }
  .why-shell {
    grid-template-columns: 40px 1fr 40px;
    gap: 0.55rem;
  }
  .why-content {
    min-height: 0;
  }
  .why-content .section-title {
    min-height: 0;
  }
  .why-nav-btn {
    width: 40px;
    height: 40px;
  }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .benefits-section { padding: 4rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 1.2rem 1rem 1.1rem; }
  .benefit-kicker { width: 1.8rem; height: 1.8rem; }
  html[lang="en"] .audience-tags { flex-wrap: wrap; }
  html[lang="en"] .audience-tag { padding: 0.5rem 1.05rem; font-size: 0.8rem; }
  .audience-section { padding: 0 1.5rem 4rem; }
  .bottom-cta { padding: 4rem 1.5rem; }
  .modal { padding: 2rem 1.5rem; margin: 1rem; }
}

/* ————— ANIMATIONS ————— */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pathPulse {
  0% { left: -18%; opacity: 0; }
  15% { opacity: 1; }
  55% { opacity: 0.95; }
  100% { left: 96%; opacity: 0; }
}
.hero-tag { animation: slideUp 0.5s ease both; }
.hero h1 { animation: slideUp 0.5s ease 0.08s both; }
.hero-question { animation: slideUp 0.5s ease 0.14s both; }
.hero-sub { animation: slideUp 0.5s ease 0.2s both; }
.dual-cta { animation: slideUp 0.5s ease 0.24s both; }
.hero-note { animation: slideUp 0.5s ease 0.3s both; }

/* ————— SURVEY WIDGET ————— */
.survey-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1200;
  min-width: 186px;
  height: 58px;
  border-radius: 999px;
  background: #17392e;
  color: #17392e;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(27,61,47,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  padding: 0 0.7rem 0 0.45rem;
}
.survey-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(27,61,47,0.26);
}
.survey-bubble:focus-visible {
  outline: 3px solid rgba(45,107,74,0.28);
  outline-offset: 4px;
}
.survey-bubble.open {
  background: #1b4336;
}
.survey-bubble-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.96);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.survey-bubble-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  color: #ffffff;
}
.survey-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 1200;
  width: 340px;
  max-height: calc(100vh - 7rem);
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(27,61,47,0.18);
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), opacity 0.22s ease;
  border: 1px solid var(--border);
  overflow: hidden;
}
.survey-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.survey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem 0.85rem;
  background: var(--green-deep);
  color: white;
  flex-shrink: 0;
}
.survey-title {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.survey-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.15s;
}
.survey-close:hover { color: white; }
.survey-body {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.survey-form {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.survey-step-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.survey-step-progress {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.survey-step-progress::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--green-deep);
  border-radius: 2px;
  width: var(--progress, 20%);
  transition: width 0.3s ease;
}
.survey-step-count {
  font-size: 0.7rem;
  color: var(--text-muted, #888);
  white-space: nowrap;
  font-weight: 500;
}
.survey-q { display: none; flex-direction: column; gap: 0.45rem; }
.survey-q.active { display: flex; }
.survey-q-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}
.survey-opts {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.survey-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-body);
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 7px;
  transition: background 0.15s;
}
.survey-opt:hover { background: var(--green-tint); }
.survey-opt input[type="radio"] {
  accent-color: var(--green-deep);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.survey-opt-other {
  flex-wrap: wrap;
  align-items: center;
}
.survey-other-input {
  flex: 1;
  min-width: 80px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
  font-size: 0.74rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.15s;
}
.survey-other-input:focus { border-color: var(--green-mid); }
.survey-input {
  width: 100%;
}
.survey-email-input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.15s;
}
.survey-email-input:focus {
  border-color: var(--green-mid);
}
.survey-textarea {
  resize: vertical;
  min-height: 72px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  font-size: 0.76rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--warm-white);
  outline: none;
  line-height: 1.5;
  transition: border-color 0.15s;
}
.survey-textarea:focus { border-color: var(--green-mid); }
.survey-submit {
  width: 100%;
  padding: 0.65rem;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.25rem;
}
.survey-submit:hover { background: #15332A; transform: translateY(-1px); }
.survey-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.survey-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.survey-nav-btn {
  flex: 1;
  padding: 0.6rem;
  background: var(--green-tint);
  color: var(--green-deep);
  border: 1px solid var(--green-mid);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}
.survey-nav-btn:hover { background: #c5dbd2; }
.survey-nav-btn[style*="display:none"], .survey-nav-btn[style*="display: none"] { display: none !important; }
.survey-nav-next {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}
.survey-nav-next:hover { background: #15332A; }
.survey-nav .survey-submit { flex: 1; margin-top: 0; }
.survey-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  gap: 0.75rem;
}
.survey-success.visible { display: flex; }
.survey-check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-tint);
  border: 2px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-mid);
}
.survey-success p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .survey-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5rem;
    max-height: calc(100vh - 7rem);
  }
  .survey-bubble {
    bottom: 1rem;
    right: 1rem;
    min-width: 168px;
    height: 52px;
    padding-right: 0.6rem;
  }
}
