:root {
  --green-950: #071d16;
  --green-900: #0f3d2e;
  --green-800: #14513d;
  --green-700: #196044;
  --green-100: #e9f5ee;
  --gold-600: #d5a438;
  --gold-500: #f3c766;
  --gold-100: #fff1c8;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --paper-2: #fbf4e4;
  --ink: #14251f;
  --muted: #66756d;
  --line: rgba(20, 37, 31, 0.12);
  --line-strong: rgba(20, 37, 31, 0.2);
  --shadow: 0 24px 70px rgba(7, 29, 22, 0.16);
  --soft-shadow: 0 14px 34px rgba(7, 29, 22, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 199, 102, 0.28), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #f8f6e9 46%, #f8fbf4 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.2);
}
.brand span { display: grid; line-height: 1.18; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 6px; }
.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.9rem;
  transition: 0.18s ease;
}
.main-nav a:hover, .main-nav a.is-active { background: var(--green-100); color: var(--green-900); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.section-pad { padding: 78px 22px; }
.section-tight { padding: 48px 22px; }
.container { max-width: var(--max); margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 34px;
  align-items: center;
}
.two-col.top { align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-800);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.25rem); max-width: 940px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: 1.28rem; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); max-width: 780px; }
.muted { color: var(--muted); }
.section-head { display: grid; gap: 14px; margin-bottom: 28px; }
.section-head.center { text-align: center; justify-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--green-900); color: white; box-shadow: 0 14px 30px rgba(15, 61, 46, 0.24); }
.btn-primary:hover { transform: translateY(-1px); background: var(--green-800); }
.btn-secondary { background: var(--gold-500); color: var(--green-950); }
.btn-secondary:hover { transform: translateY(-1px); background: #f7d27b; }
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--green-900); border-color: var(--line); }
.btn-ghost:hover { background: var(--green-100); }
.btn-small { min-height: 38px; padding: 9px 13px; font-size: 0.86rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero { padding-top: 70px; }
.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,241,200,0.62));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  right: -120px;
  top: -130px;
}
.hero-content { padding: clamp(26px, 5vw, 58px); position: relative; z-index: 1; }
.hero-text { color: var(--muted); font-size: 1.17rem; max-width: 720px; margin-top: 18px; }
.hero-chips, .chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: var(--green-900);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.hero-stat {
  background: rgba(255,253,248,0.9);
  padding: 18px;
}
.hero-stat strong { display: block; font-size: 1.05rem; color: var(--green-900); }
.hero-stat span { color: var(--muted); font-size: 0.88rem; }

.card {
  background: rgba(255,253,248,0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--soft-shadow);
}
.card.no-shadow { box-shadow: none; }
.card.dark {
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: white;
  border: 0;
}
.card.dark .muted, .card.dark p { color: rgba(255,255,255,0.75); }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.card.dark .icon-badge { background: rgba(255,255,255,0.12); color: var(--gold-500); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); }

.page-hero {
  padding: 72px 22px 42px;
}
.page-hero .container {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(233,245,238,0.7));
  padding: clamp(26px, 5vw, 54px);
  box-shadow: var(--soft-shadow);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); }
.page-hero .lead { margin-top: 16px; }

.route-map {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}
.route-list { display: grid; gap: 12px; }
.route-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-md);
  transition: 0.18s ease;
}
.route-link:hover { transform: translateY(-1px); box-shadow: var(--soft-shadow); }
.route-link strong { color: var(--green-900); }
.route-link span { color: var(--muted); font-size: 0.9rem; }

.product-card, .service-card, .gallery-card, .review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}
.product-visual, .gallery-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(243, 199, 102, 0.42), transparent 12rem),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold-500);
  font-size: 3.1rem;
  font-weight: 900;
}
.product-body, .service-body, .gallery-body, .review-body { padding: 18px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 16px; }
.price-pill { background: var(--gold-100); color: var(--green-950); padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: 0.86rem; }

.timeline { display: grid; gap: 14px; counter-reset: step; }
.timeline-item {
  position: relative;
  padding: 18px 18px 18px 62px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--paper);
}
.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  font-weight: 900;
}

.form {
  display: grid;
  gap: 14px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 900; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: white;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 4px rgba(15, 61, 46, 0.1);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.9rem; }

.contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}
.contact-card b { display: block; color: var(--green-900); }
.map-placeholder {
  min-height: 300px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
  background:
    linear-gradient(90deg, rgba(15,61,46,0.08) 1px, transparent 1px),
    linear-gradient(rgba(15,61,46,0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,241,200,0.65));
  background-size: 40px 40px, 40px 40px, 100% 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--green-900);
  font-weight: 900;
}

.footer {
  background: var(--green-950);
  color: white;
  padding: 44px 22px 90px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 26px;
}
.footer p, .footer a { color: rgba(255,255,255,0.7); }
.footer h3 { color: white; font-size: 1rem; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.bottom-bar {
  position: fixed;
  z-index: 60;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(740px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(18px);
}
.bottom-bar a { min-height: 42px; }

@media (max-width: 980px) {
  .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { border-radius: 14px; }
  .two-col, .route-map, .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-bottom { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .section-pad { padding: 56px 16px; }
  .section-tight { padding: 36px 16px; }
  .page-hero { padding: 48px 16px 30px; }
  .header-inner { padding: 12px 14px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .grid-3, .grid-4, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .bottom-bar { grid-template-columns: 1fr 1fr; border-radius: 22px; }
  .bottom-bar .hide-small { display: none; }
  .hero-bottom { grid-template-columns: 1fr; }
}

/* Phase 4 visual-design additions */
.alt { background: rgba(255, 253, 248, 0.44); }
.nepali { font-size: 1.35rem; line-height: 1.8; color: var(--green-900); }
.center-actions { display: flex; justify-content: center; margin-top: 28px; }
.product-card { padding-bottom: 18px; }
.product-card h3, .product-card p, .product-card strong { margin-left: 18px; margin-right: 18px; }
.product-card h3 { margin-top: 18px; margin-bottom: 8px; }
.product-card p { color: var(--muted); }
.product-card strong { display: inline-flex; margin-top: 14px; background: var(--gold-100); color: var(--green-950); padding: 7px 11px; border-radius: 999px; }
.stack-list { display: grid; gap: 14px; }
.list-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}
.list-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-900);
  color: white;
  font-weight: 900;
}
.list-card h3 { margin-bottom: 7px; }
.list-card p { color: var(--muted); }
.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: white;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: var(--shadow);
}
.promo-panel .lead, .promo-panel p { color: rgba(255,255,255,0.78); }
.promo-panel .eyebrow { color: var(--gold-500); }
.mini-grid { display: flex; flex-wrap: wrap; gap: 9px; grid-column: 1 / -1; }
.mini-grid span {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
}
.event-card.feature {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: white;
  box-shadow: var(--shadow);
}
.event-icon { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 20px; background: rgba(255,255,255,0.12); font-size: 2rem; margin-bottom: 18px; }
.event-card p { color: rgba(255,255,255,0.76); }
.tick-list { padding-left: 18px; margin: 14px 0 0; color: var(--muted); }
.tick-list li { margin: 7px 0; }
.card.dark .tick-list { color: rgba(255,255,255,0.78); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.price-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  display: grid;
  align-content: start;
  gap: 12px;
}
.price-card.featured { background: linear-gradient(180deg, #fff7dc, var(--paper)); border-color: rgba(213,164,56,0.55); transform: translateY(-8px); }
.price-card p { color: var(--muted); }
.info-box {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--gold-100);
  color: var(--green-950);
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--soft-shadow);
}
.booking-form label { display: grid; gap: 7px; font-weight: 900; font-size: .92rem; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: white;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--green-800); box-shadow: 0 0 0 4px rgba(15, 61, 46, 0.1); }
.span-2 { grid-column: span 2; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-card { padding: 20px; min-height: 190px; }
.gallery-card div:first-child { font-size: 2.5rem; margin-bottom: 16px; }
.gallery-card p { color: var(--muted); margin-top: 8px; }
.review-card { padding: 22px; }
.review-card strong { display: block; color: var(--green-900); font-size: 1.15rem; margin-bottom: 10px; }
.review-card p { color: var(--muted); }
.review-card span { display: block; margin-top: 18px; color: var(--green-800); font-weight: 900; }
.rating-card {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  color: white;
  box-shadow: var(--shadow);
}
.rating-card strong { font-size: 4.5rem; line-height: 1; color: var(--gold-500); }
.rating-card span { display: block; font-weight: 900; margin-top: 8px; }
.rating-card p { color: rgba(255,255,255,0.76); margin-top: 12px; }
.contact-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}
.contact-card h3 { margin-bottom: 14px; color: var(--green-900); }
.contact-card p { margin-top: 10px; color: var(--muted); }
.map-placeholder { display: grid; align-content: center; justify-items: center; gap: 8px; }
.map-placeholder h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.map-placeholder p { color: var(--muted); }
@media (max-width: 980px) {
  .pricing-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-panel { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pricing-grid, .gallery-grid, .booking-form { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .price-card.featured { transform: none; }
}


/* Phase 4 visual-design layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/paan-pattern.svg"), radial-gradient(circle at 85% 10%, rgba(243, 199, 102, 0.22), transparent 30rem);
  background-size: 260px 260px, auto;
  opacity: 0.85;
  pointer-events: none;
}
.site-header { box-shadow: 0 10px 30px rgba(7, 29, 22, 0.06); }
.brand img { background: #fffdf8; border: 1px solid rgba(213,164,56,.35); }
.main-nav a.is-active { box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.08); }
.hero.section-pad { padding-top: 48px; }
.hero-panel.phase4-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 620px;
  background:
    radial-gradient(circle at 13% 12%, rgba(255,255,255,.96), transparent 18rem),
    linear-gradient(135deg, rgba(255,253,248,0.94), rgba(255,241,200,0.64) 48%, rgba(232,245,234,.7));
}
.hero-panel.phase4-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -95px -65px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(15,61,46,.08);
}
.phase4-hero .hero-bottom { grid-column: 1 / -1; }
.hero-showcase {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
}
.hero-showcase img { width: min(100%, 600px); filter: drop-shadow(0 28px 50px rgba(7,29,22,.16)); }
.floating-proof {
  position: absolute;
  left: 24px;
  bottom: 36px;
  max-width: 240px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,253,248,.88);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}
.floating-proof strong { display: block; color: var(--green-900); }
.floating-proof span { color: var(--muted); font-size: .9rem; }
.visual-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.visual-chip {
  min-height: 96px;
  border-radius: 24px;
  padding: 15px;
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  box-shadow: 0 12px 28px rgba(7,29,22,.07);
}
.visual-chip b { color: var(--green-900); }
.visual-chip span { color: var(--muted); font-size: .86rem; }
.visual-chip.gold { background: linear-gradient(135deg, var(--gold-100), #fffdf8); }
.visual-chip.green { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: white; }
.visual-chip.green b, .visual-chip.green span { color: white; }
.product-card, .service-card, .gallery-card, .review-card, .price-card, .list-card, .card, .contact-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover, .service-card:hover, .gallery-card:hover, .review-card:hover, .price-card:hover, .list-card:hover, .card:hover, .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(7,29,22,.13);
  border-color: rgba(213,164,56,.42);
}
.product-visual, .gallery-visual {
  position: relative;
  isolation: isolate;
  min-height: 180px;
}
.product-visual::after, .gallery-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  z-index: -1;
}
.gallery-card {
  min-height: 220px;
  background:
    radial-gradient(circle at 85% 15%, rgba(243,199,102,.23), transparent 8rem),
    var(--paper);
}
.gallery-card div:first-child {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--gold-500);
  box-shadow: 0 14px 26px rgba(7,29,22,.16);
}
.design-system {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.palette-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.swatch { display: flex; align-items: end; padding: 14px; color: white; font-weight: 900; font-size: .82rem; writing-mode: vertical-rl; transform: rotate(180deg); }
.swatch.cream { background: #fffaf0; color: var(--green-950); }
.swatch.paper { background: #fffdf8; color: var(--green-950); }
.swatch.green { background: var(--green-900); }
.swatch.gold { background: var(--gold-500); color: var(--green-950); }
.swatch.deep { background: var(--green-950); }
.visual-rule-list { display: grid; gap: 12px; }
.visual-rule {
  padding: 16px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.visual-rule b { color: var(--green-900); }
.visual-rule p { color: var(--muted); margin-top: 5px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.trust-item {
  background: rgba(255,253,248,.9);
  padding: 22px;
}
.trust-item strong { display:block; color: var(--green-900); font-size: 1.1rem; }
.trust-item span { display:block; color: var(--muted); margin-top: 4px; }
.stall-mockup {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  padding: clamp(20px, 5vw, 38px);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.stall-mockup::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(243,199,102,.18);
}
.counter-sign {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 24px;
  position: relative;
}
.counter-sign h3 { color: var(--gold-500); font-size: clamp(1.5rem,3vw,2.4rem); }
.counter-sign p { color: rgba(255,255,255,.74); margin-top: 10px; }
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.jar {
  min-height: 88px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: inset 0 -14px 0 rgba(15,61,46,.08);
}
.qr-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  align-items: center;
}
.qr-card img { border-radius: 18px; border: 1px solid var(--line); }
@media (max-width: 980px) {
  .hero-panel.phase4-hero, .design-system { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 320px; }
  .visual-band, .trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .hero-panel.phase4-hero { min-height: auto; }
  .hero-showcase { padding: 10px 10px 28px; }
  .floating-proof { position: static; margin-top: -14px; max-width: none; }
  .visual-band, .trust-strip, .counter-row { grid-template-columns: 1fr; }
  .palette-card { grid-template-columns: 1fr; }
  .swatch { min-height: 54px; writing-mode: horizontal-tb; transform: none; }
  .qr-card { grid-template-columns: 1fr; }
}


/* Phase 5 SEO & Google Discovery additions */
.seo-discovery {
  position: relative;
}
.seo-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(15, 61, 46, 0.08);
}
.seo-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(219, 166, 58, 0.16);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.area-panel {
  margin-top: 24px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(31, 108, 75, 0.92));
  color: #fff7e6;
}
.area-panel p {
  color: rgba(255, 247, 230, 0.78);
}
.area-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.area-tags span, .seo-mini span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.9rem;
}
.seo-mini span {
  background: rgba(15, 61, 46, 0.08);
  border-color: rgba(15, 61, 46, 0.1);
  color: #0f3d2e;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: #fffdf7;
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(15, 61, 46, 0.06);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: #0f3d2e;
}
.faq-list p {
  margin: 12px 0 0;
  color: #5d635c;
}
.checklist-card {
  background: #fffdf7;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f6c4b;
  font-weight: 900;
}
.stack-list.compact .list-card {
  padding: 16px;
}
@media (max-width: 720px) {
  .seo-card, .area-panel, .faq-list details {
    border-radius: 18px;
  }
}


/* Phase 6 Review & Trust System */
.phase6-trust-strip .trust-item {
  min-height: 112px;
}
.review-hero-v2 {
  background:
    radial-gradient(circle at 88% 20%, rgba(219, 166, 58, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(245, 239, 220, 0.92));
}
.trust-dashboard-card {
  background: #fffdf7;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(15, 61, 46, 0.12);
}
.trust-score {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
}
.trust-score strong {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #0f3d2e;
  line-height: 1;
}
.trust-score span, .review-label, .status-pill {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(219, 166, 58, 0.16);
  color: #6f4a00;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.trust-metrics div {
  background: rgba(15, 61, 46, 0.06);
  border-radius: 18px;
  padding: 14px;
}
.trust-metrics b {
  display: block;
  color: #0f3d2e;
  font-size: 1.35rem;
}
.trust-metrics span {
  color: #657064;
  font-size: 0.82rem;
  line-height: 1.25;
}
.review-status-panel {
  border: 1px dashed rgba(15, 61, 46, 0.28);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 22px;
}
.review-status-panel strong {
  color: #0f3d2e;
  font-size: 1.05rem;
}
.review-status-panel a { font-weight: 900; color: #1f6c4b; }
.sample-layout-note {
  margin-top: 28px;
  opacity: 0.92;
}
.sample-card {
  position: relative;
  border-style: dashed;
}
.review-label {
  display: inline-flex;
  margin-bottom: 12px;
}
.trust-flow {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.trust-flow div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 18px;
  padding: 14px;
}
.trust-flow span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #0f3d2e;
  color: #fff8e8;
  font-weight: 900;
}
.trust-flow strong { color: #0f3d2e; }
.trust-flow p { margin: 4px 0 0; }
.checkbox-line {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: #465348;
}
.checkbox-line input { width: auto; margin-top: 4px; }
.phase6-qr-card { align-items: center; }
.proof-card {
  background: linear-gradient(135deg, #0f3d2e, #1f6c4b);
  color: #fff8e8;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 22px 60px rgba(15, 61, 46, 0.18);
}
.proof-card h2, .proof-card h3 { color: #fff8e8; }
.proof-card p, .proof-card li { color: rgba(255, 248, 232, 0.82); }
.proof-card .eyebrow { color: #f0c96d; }
.admin-hero { background: linear-gradient(135deg, rgba(15,61,46,.96), rgba(31,108,75,.9)); color: #fff8e8; }
.admin-hero h1, .admin-hero .eyebrow { color: #fff8e8; }
.admin-hero .hero-text { color: rgba(255,248,232,.82); }
.admin-review-grid {
  display: grid;
  gap: 14px;
}
.admin-review-card {
  background: #fffdf7;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(15, 61, 46, 0.07);
}
.admin-review-card header {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}
.admin-review-card h3 { margin: 0; color: #0f3d2e; }
.admin-review-card .stars { color: #9b6a00; font-weight: 900; }
.admin-review-card .meta { font-size: .86rem; color: #6b766d; margin: 8px 0; }
.admin-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.admin-review-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.admin-review-actions .approve { background: #0f3d2e; color: #fff8e8; }
.admin-review-actions .reject { background: #f0dfb8; color: #5b3e00; }
.admin-review-actions .delete { background: #f5e6de; color: #8f2d14; }
@media (max-width: 760px) {
  .trust-metrics { grid-template-columns: 1fr; }
  .trust-dashboard-card, .proof-card { border-radius: 22px; }
}


/* Phase 7: Event Booking System */
.booking-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(218, 165, 32, 0.2), transparent 30%),
    linear-gradient(135deg, #fff8e8 0%, #f3f6e8 52%, #e8f0df 100%);
}
.booking-summary-card,
.booking-system-strip,
.booking-meter,
.booking-estimate,
.booking-column,
.booking-admin-card,
.admin-stats-grid {
  border: 1px solid rgba(15, 61, 46, 0.12);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  box-shadow: 0 20px 52px rgba(15, 61, 46, 0.08);
}
.booking-summary-card {
  padding: 28px;
}
.mini-steps {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #445246;
  line-height: 1.8;
}
.package-picker .price-card button { width: 100%; margin-top: 8px; }
.booking-system-strip {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
}
.booking-system-strip h3 { margin: 0 0 8px; color: #0f3d2e; }
.booking-system-strip p { margin: 0; color: #55635b; }
.event-booking-form select,
.event-booking-form input,
.event-booking-form textarea {
  background: #fffef8;
}
.booking-meter {
  padding: 18px;
  margin: 22px 0;
}
.booking-meter strong { color: #0f3d2e; }
.booking-meter p { margin: 10px 0 0; color: #647066; }
.meter {
  height: 12px;
  background: rgba(15, 61, 46, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}
.meter span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0f3d2e, #d6a534);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.booking-estimate {
  padding: 16px;
  color: #455348;
  background: #fff9e7;
}
.booking-admin-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 16px;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 8px;
}
.booking-column {
  padding: 16px;
  min-height: 260px;
}
.booking-column h2 {
  font-size: 1.05rem;
  color: #0f3d2e;
  margin: 0 0 12px;
}
.booking-admin-card {
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 20px;
  box-shadow: none;
}
.booking-admin-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.booking-admin-card h3 { margin: 0; color: #0f3d2e; font-size: 1rem; }
.booking-admin-card p { margin: 8px 0; color: #4e5a51; font-size: 0.92rem; }
.booking-admin-card .meta { color: #7a6a39; font-size: 0.84rem; line-height: 1.55; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.booking-actions button,
.booking-actions a {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}
.booking-actions .contact { background: #0f3d2e; color: #fff8e8; }
.booking-actions .confirm { background: #d6a534; color: #1c271e; }
.booking-actions .decline { background: #f2e4d2; color: #83401e; }
.booking-actions .delete { background: #f6d7d7; color: #8a1d1d; }
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}
.admin-stats-grid div {
  background: #fff9e7;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}
.admin-stats-grid strong { display: block; font-size: 2rem; color: #0f3d2e; }
.admin-stats-grid span { color: #657064; font-weight: 800; }
.empty-state { color: #7b827a; font-size: 0.9rem; border: 1px dashed rgba(15, 61, 46, 0.18); border-radius: 16px; padding: 12px; }
.status-pill.booking-new { background: #fff3cf; color: #806000; }
.status-pill.booking-contacted { background: #e9f1ff; color: #1f4f86; }
.status-pill.booking-confirmed { background: #dff6e6; color: #146b3a; }
.status-pill.booking-declined { background: #f9dddd; color: #8a2020; }
@media (max-width: 920px) {
  .booking-system-strip { grid-template-columns: 1fr; }
  .booking-admin-board { grid-template-columns: repeat(4, 84vw); }
}


/* Phase 8 Build, Test & Launch additions */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(214, 165, 52, 0.75);
  outline-offset: 3px;
}
.launch-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
}
.launch-score {
  padding: 28px;
  background: linear-gradient(180deg, #fffdf5, #fff6d8);
}
.score-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  color: #0f3d2e;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.launch-score strong {
  display: block;
  color: #0f3d2e;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1;
  margin: 18px 0 10px;
}
.launch-score p { color: #5d675f; margin: 0 0 16px; }
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.launch-check-card {
  padding: 18px;
  border-radius: 22px;
  background: #fffdf7;
  border: 1px solid rgba(15, 61, 46, 0.1);
  box-shadow: 0 18px 44px rgba(15, 61, 46, 0.08);
}
.launch-check-card strong { display: block; color: #0f3d2e; margin-bottom: 6px; }
.launch-check-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}
.launch-check-card.ok span { background: #dff6e6; color: #146b3a; }
.launch-check-card.warn span { background: #fff0bd; color: #7b5a00; }
.launch-check-card.bad span { background: #f9dddd; color: #8a2020; }
.launch-checklist {
  display: grid;
  gap: 10px;
}
.launch-checklist label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 15px;
  border-radius: 18px;
  background: #fffdf7;
  border: 1px solid rgba(15, 61, 46, 0.1);
  color: #405047;
  font-weight: 700;
}
.launch-checklist input { margin-top: 2px; accent-color: #0f3d2e; }
.launch-card {
  padding: 22px;
}
.launch-card > span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #0f3d2e;
  color: #fff8e8;
  font-weight: 900;
  margin-bottom: 12px;
}
.deployment-terminal {
  margin-top: 20px;
  border-radius: 24px;
  padding: 20px;
  background: #0d2119;
  color: #fff8e8;
  display: grid;
  gap: 10px;
}
.deployment-terminal strong { color: #f7d47a; }
.deployment-terminal code {
  display: block;
  white-space: pre-wrap;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fffdf5;
}
.content-page h2 { color: #0f3d2e; margin-top: 24px; }
.content-page h2:first-child { margin-top: 0; }
.content-page p { color: #4d5a51; line-height: 1.75; }
@media (max-width: 920px) {
  .launch-hero { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.container.narrow, .narrow { max-width: 820px; }
.center { text-align: center; }


/* Phase 8.1 refinement: customer-facing polish */
.skip-link {
  position: absolute;
  left: 14px;
  top: -80px;
  z-index: 9999;
  background: var(--green-900);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; }
.refined-hero .hero-panel {
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 172, 82, 0.23), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(67, 136, 83, 0.16), transparent 26%),
    linear-gradient(135deg, #fffaf1 0%, #eff8ee 46%, #ffffff 100%);
}
.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 172, 82, 0.45);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 218, 0.78));
  box-shadow: var(--soft-shadow);
}
.conversion-strip strong { display: block; color: var(--green-900); font-size: clamp(1.05rem, 2.4vw, 1.35rem); }
.mini-label { display: inline-block; color: var(--muted); font-size: .86rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.journey-card {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s ease, box-shadow .18s ease;
}
.journey-card:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(14, 48, 33, 0.14); }
.journey-card.daily { background: linear-gradient(160deg, #ffffff, #eef8ee); }
.journey-card.event { background: linear-gradient(160deg, #ffffff, #fff0cb); }
.journey-icon { font-size: 2.4rem; line-height: 1; }
.journey-card h3 { margin: 14px 0 8px; color: var(--green-900); }
.journey-card p { color: var(--muted); }
.journey-card a { margin-top: 18px; font-weight: 900; color: var(--green-700); }
.product-card.featured { border-color: rgba(217, 172, 82, 0.7); box-shadow: 0 24px 56px rgba(217, 172, 82, 0.18); }
.center-actions { display: flex; justify-content: center; margin-top: 24px; }
.event-spotlight { background: linear-gradient(180deg, rgba(244, 249, 239, 0.65), rgba(255, 255, 255, 0)); }
.event-quote-card {
  position: sticky;
  top: 94px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: white;
  box-shadow: 0 26px 70px rgba(15, 61, 46, 0.22);
}
.event-quote-card h3 { color: white; margin-bottom: 12px; }
.event-quote-card .tick-list li { color: rgba(255,255,255,.86); }
.event-quote-card .tick-list li::before { background: var(--gold); color: var(--green-900); }
.event-quote-card .btn.full { width: 100%; margin-top: 16px; justify-content: center; }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.trust-grid { display: grid; gap: 14px; }
.trust-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--soft-shadow);
}
.trust-card strong { display:block; color: var(--green-900); margin-bottom: 6px; }
.trust-card span { color: var(--muted); }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.keyword-cloud span {
  padding: 10px 13px;
  border: 1px solid rgba(15,61,46,.14);
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  font-weight: 800;
  font-size: .92rem;
}
.main-nav a.is-active { background: rgba(217, 172, 82, 0.18); color: var(--green-900); }
.footer .footer-links a[href="launch.html"] { display: none; }
@media (max-width: 860px) {
  .conversion-strip, .trust-layout { grid-template-columns: 1fr; display: grid; }
  .journey-grid { grid-template-columns: 1fr; }
  .event-quote-card { position: static; }
}
@media (max-width: 560px) {
  .conversion-strip { padding: 16px; }
  .conversion-strip .btn { width: 100%; justify-content: center; }
  .journey-card { min-height: auto; }
  .keyword-cloud span { font-size: .84rem; }
}

.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(15,61,46,.10); }


/* Phase 9: Real content upload + bilingual copy support */
.nepali-line,
.np-line {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 600;
}
.np-strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 177, 74, 0.13);
  color: var(--green-dark);
  font-weight: 800;
}
.bilingual-card {
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fffef8;
}
.bilingual-card p:last-child { margin-bottom: 0; }
.content-upload-hero .hero-content { max-width: 780px; }
.upload-flow-grid,
.content-inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.upload-card,
.inventory-card,
.template-card {
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}
.upload-card span,
.inventory-card span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.replacement-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.replacement-table th,
.replacement-table td {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
  text-align: left;
  vertical-align: top;
}
.replacement-table th {
  background: rgba(15, 61, 46, 0.06);
  color: var(--green-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.copy-bank {
  display: grid;
  gap: 0.9rem;
}
.copy-bank .copy-row {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15, 61, 46, 0.11);
}
.copy-row strong { display: block; color: var(--green-dark); margin-bottom: 0.35rem; }
.owner-note {
  border-left: 4px solid var(--gold);
  background: rgba(224, 177, 74, 0.12);
  padding: 1rem;
  border-radius: 14px;
}
.real-content-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  color: var(--green-dark);
  background: white;
  border: 1px solid rgba(15, 61, 46, .12);
  border-radius: 999px;
  padding: .45rem .75rem;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .upload-flow-grid,
  .content-inventory-grid { grid-template-columns: 1fr; }
  .replacement-table { display: block; overflow-x: auto; }
}


/* Phase 9.2: elegant presentation and display technology */
.presentation-teaser {
  background: radial-gradient(circle at 10% 10%, rgba(243, 199, 102, 0.28), transparent 24rem), rgba(255,255,255,0.38);
}
.display-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.display-mode-grid a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(233,245,238,0.76));
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.display-mode-grid a strong { color: var(--green-900); font-size: 1.12rem; }
.display-mode-grid a span { color: var(--muted); font-size: 0.92rem; }
.presentation-main { background: linear-gradient(180deg, #fffaf0, #f3f8ee); }
.presentation-cover {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,241,200,0.62));
  padding: clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.pitch-device {
  padding: 18px;
  border-radius: 38px;
  background: var(--green-950);
  color: white;
  box-shadow: 0 28px 80px rgba(7, 29, 22, 0.28);
}
.pitch-device img { border-radius: 28px; background: var(--cream); }
.pitch-device-caption { padding: 14px 4px 2px; color: rgba(255,255,255,0.76); font-weight: 800; }
.pitch-controls {
  position: sticky;
  top: 76px;
  z-index: 20;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,0.88);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}
.pitch-controls a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  font-weight: 900;
  border: 1px solid var(--line);
}
.pitch-slide {
  min-height: 84vh;
  padding: 70px 22px;
  display: grid;
  align-items: center;
  scroll-margin-top: 120px;
}
.pitch-slide-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.88);
  padding: clamp(26px, 6vw, 70px);
  box-shadow: var(--shadow);
}
.pitch-slide h2 { max-width: 980px; }
.alt-slide .pitch-slide-inner { background: linear-gradient(135deg, #ffffff, #e9f5ee); }
.dark-slide { background: linear-gradient(145deg, var(--green-950), var(--green-800)); color: white; }
.dark-slide .pitch-slide-inner { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.dark-slide .lead, .dark-slide .nepali-line { color: rgba(255,255,255,0.78); }
.pitch-points, .presentation-menu-grid, .setup-timeline, .proof-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.pitch-points article, .presentation-menu-grid article, .setup-timeline article, .proof-wall div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  gap: 8px;
}
.presentation-menu-grid article span { font-size: 2.2rem; }
.presentation-menu-grid article small, .pitch-points article span, .setup-timeline article span { color: var(--muted); }
.dark-slide .setup-timeline article { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.14); }
.dark-slide .setup-timeline article span { color: rgba(255,255,255,0.74); }
.proof-wall { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.proof-wall div {
  min-height: 120px;
  place-items: center;
  text-align: center;
  color: var(--green-900);
  font-weight: 900;
  background: repeating-linear-gradient(135deg, rgba(15,61,46,0.08), rgba(15,61,46,0.08) 10px, rgba(243,199,102,0.12) 10px, rgba(243,199,102,0.12) 20px);
}
.center-slide { text-align: center; display: grid; justify-items: center; gap: 16px; }

.screen-body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--green-950);
  color: white;
}
.display-screen {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 12%, rgba(243,199,102,0.24), transparent 22rem),
    radial-gradient(circle at 86% 80%, rgba(25,96,68,0.4), transparent 24rem),
    linear-gradient(135deg, #071d16, #0f3d2e 58%, #071d16);
}
.display-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/paan-pattern.svg");
  opacity: 0.08;
  z-index: -1;
}
.screen-exit {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 40;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: white;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  font-weight: 900;
}
.display-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 22px;
  padding: 8vw;
  text-align: center;
  opacity: 0;
  transform: scale(0.98) translateY(12px);
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}
.display-panel.is-active { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.display-panel h1, .display-panel h2 {
  font-size: clamp(3.6rem, 11vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  max-width: 1180px;
  text-wrap: balance;
}
.display-panel p { font-size: clamp(1.25rem, 2.8vw, 2.2rem); color: rgba(255,255,255,0.78); max-width: 940px; margin: 0 auto; }
.screen-np { font-weight: 900; color: var(--gold-500) !important; }
.screen-brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  font-weight: 950;
  color: var(--gold-500);
}
.screen-brand img { width: 58px; height: 58px; border-radius: 18px; background: var(--cream); }
.screen-kicker { color: var(--gold-500); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 950; }
.screen-actions, .big-menu-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.screen-actions span, .big-menu-row span, .screen-button {
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  font-weight: 950;
}
.screen-button { background: var(--gold-500); color: var(--green-950); display: inline-flex; justify-self: center; margin-top: 8px; }
.qr-panel, .split-screen-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  text-align: left;
  align-items: center;
}
.qr-panel img, .split-screen-panel img {
  width: min(32vw, 380px);
  background: white;
  padding: 20px;
  border-radius: 34px;
  justify-self: center;
}
.display-dots {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 25;
}
.display-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}
.display-dots span.is-active { background: var(--gold-500); transform: scale(1.25); }

.reel-body { margin: 0; background: #081d16; color: white; min-height: 100vh; }
.reel-board {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(280px, 420px);
  justify-content: center;
  gap: 28px;
  align-items: center;
  padding: 32px;
}
.reel-frame {
  height: min(92vh, 820px);
  aspect-ratio: 9 / 16;
  border-radius: 42px;
  border: 12px solid #050f0c;
  box-shadow: 0 28px 80px rgba(0,0,0,0.44);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #0f3d2e, #071d16);
}
.reel-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 34px;
  opacity: 0;
  animation: reelShow 16s infinite;
}
.reel-card-2 { animation-delay: 4s; }
.reel-card-3 { animation-delay: 8s; }
.reel-card-4 { animation-delay: 12s; }
.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(243,199,102,0.34), transparent 18rem), url("assets/paan-pattern.svg");
  opacity: 0.26;
}
.reel-card > * { position: relative; z-index: 1; }
.reel-card h1, .reel-card h2 { font-size: clamp(2.4rem, 8vw, 4.8rem); line-height: 0.95; }
.reel-card p { color: var(--gold-500); font-weight: 950; font-size: 1.15rem; }
.reel-card span { font-size: 1.05rem; color: rgba(255,255,255,0.78); font-weight: 800; }
.reel-notes {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 24px;
  color: rgba(255,255,255,0.8);
}
.reel-notes h3 { color: white; margin-bottom: 10px; }
.reel-exit { left: auto; right: 18px; }
@keyframes reelShow {
  0%, 18% { opacity: 1; transform: scale(1); }
  25%, 100% { opacity: 0; transform: scale(1.04); }
}

@media (max-width: 900px) {
  .presentation-cover, .pitch-slide-inner.two-col, .qr-panel, .split-screen-panel, .reel-board { grid-template-columns: 1fr; }
  .pitch-points, .presentation-menu-grid, .setup-timeline { grid-template-columns: 1fr; }
  .proof-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .display-mode-grid { grid-template-columns: 1fr; }
  .pitch-controls { top: 68px; max-width: calc(100% - 26px); overflow-x: auto; }
  .screen-body { overflow: auto; }
  .display-panel { padding: 92px 22px 70px; }
  .display-panel h1, .display-panel h2 { font-size: clamp(3rem, 18vw, 5.2rem); }
  .qr-panel img, .split-screen-panel img { width: min(70vw, 320px); }
  .reel-board { padding: 80px 18px 28px; }
  .reel-frame { width: min(92vw, 400px); height: auto; }
}

/* Phase 9.2 footer adjustment after adding presentation tools */
@media (min-width: 981px) {
  .footer-grid { grid-template-columns: 1.15fr repeat(4, minmax(130px, 0.75fr)); }
}


/* Phase 9.3 — Final UX & Conversion Polish */
.compact-head { max-width: 880px; margin-left: auto; margin-right: auto; }
.intent-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 30px; }
.intent-card { position: relative; overflow: hidden; border-radius: 34px; border: 1px solid var(--line); background: rgba(255,253,248,0.88); box-shadow: var(--soft-shadow); padding: clamp(22px, 4vw, 34px); min-height: 310px; display: grid; align-content: space-between; gap: 18px; }
.intent-card::after { content: ""; position: absolute; inset: auto -80px -120px auto; width: 250px; height: 250px; border-radius: 50%; background: rgba(15,61,46,0.07); }
.featured-intent { background: linear-gradient(145deg, var(--green-950), var(--green-800)); color: white; }
.featured-intent p, .featured-intent .intent-top { color: rgba(255,255,255,0.78); }
.featured-intent::after { background: rgba(243,199,102,0.16); }
.intent-top { display: flex; align-items: center; justify-content: space-between; color: var(--green-900); font-weight: 950; }
.intent-top span { font-size: 2.4rem; }
.intent-card h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.04em; }
.intent-card p { color: var(--muted); font-size: 1.05rem; max-width: 520px; }
.featured-intent p { color: rgba(255,255,255,0.76); }
.intent-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.micro-proof-row { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.micro-proof-row span { border: 1px solid var(--line); background: rgba(255,255,255,0.72); color: var(--green-900); border-radius: 999px; padding: 8px 12px; font-weight: 850; font-size: .9rem; }
.final-conversion-panel { padding-top: 22px; }
.final-conversion-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; border-radius: 34px; padding: clamp(24px, 4vw, 42px); background: linear-gradient(145deg, var(--green-950), var(--green-800)); color: white; box-shadow: var(--shadow); }
.final-conversion-card .eyebrow { color: var(--gold-500); }
.final-conversion-card .nepali-line { color: rgba(255,255,255,0.74); }
.final-conversion-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.final-conversion-actions .btn-ghost { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.18); }
.fast-path-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr) auto; gap: 22px; align-items: center; padding: 26px; border-radius: 30px; background: rgba(255,253,248,0.9); border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
.fast-path-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.fast-path-steps span { display: flex; align-items: center; gap: 10px; background: var(--green-100); border: 1px solid rgba(15,61,46,0.1); border-radius: 18px; padding: 11px; font-weight: 850; color: var(--green-900); }
.fast-path-steps b { width: 28px; height: 28px; border-radius: 999px; background: var(--green-900); color: white; display: inline-grid; place-items: center; font-size: .82rem; }
.conversion-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.conversion-steps article { background: rgba(255,253,248,0.88); border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: var(--soft-shadow); }
.conversion-steps span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--gold-500); color: var(--green-950); font-weight: 950; margin-bottom: 16px; }
.conversion-steps p { color: var(--muted); margin-top: 8px; }
.strip-actions { display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }
.btn-large-submit { min-height: 54px; font-size: 1rem; }
.footer-nepali { display: inline-block; color: rgba(255,255,255,0.62); margin-top: 10px; font-weight: 800; }
.footer-grid-polished { grid-template-columns: 1.15fr repeat(4, minmax(130px, .75fr)); }
.owner-tool-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.owner-tool-card { display: grid; gap: 9px; min-height: 210px; align-content: start; padding: 22px; border-radius: 26px; border: 1px solid var(--line); background: rgba(255,253,248,0.9); box-shadow: var(--soft-shadow); }
.owner-tool-card span { font-size: 2.2rem; }
.owner-tool-card p { color: var(--muted); }
.bottom-bar-polished { max-width: min(620px, calc(100% - 28px)); padding: 8px; gap: 8px; background: rgba(255,253,248,0.94); backdrop-filter: blur(18px); }
.bottom-bar-polished .btn { min-height: 48px; padding: 10px 16px; }
.bottom-bar-polished span { font-size: 1rem; }
.site-header.is-scrolled { box-shadow: 0 12px 28px rgba(7,29,22,0.08); }
@media (max-width: 980px) { .intent-grid, .fast-path-card, .final-conversion-card, .conversion-steps, .owner-tool-grid { grid-template-columns: 1fr; } .final-conversion-actions, .strip-actions { justify-content: flex-start; } .footer-grid-polished { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .intent-card { min-height: auto; border-radius: 26px; } .intent-actions .btn, .final-conversion-actions .btn, .strip-actions .btn { width: 100%; } .fast-path-steps { grid-template-columns: 1fr; } .bottom-bar-polished { grid-template-columns: 1fr 1fr; } .bottom-bar-polished .btn { min-height: 50px; font-size: .88rem; } .footer-grid-polished { grid-template-columns: 1fr; } .owner-tool-grid { grid-template-columns: 1fr; } }

/* Phase 10 backend/admin system polish */
.backend-status-card,
.backend-login-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 61, 46, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(15, 61, 46, 0.08);
}
.backend-status-card strong,
.backend-login-card h3 {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--green-900, #0f3d2e);
}
.backend-status-card p,
.backend-login-card p {
  margin: 0.2rem 0;
}
.backend-status-card small {
  color: rgba(15, 61, 46, 0.72);
  word-break: break-all;
}
.backend-login-card form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}
.backend-login-card input {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(15, 61, 46, 0.16);
  background: #fff;
}
.backend-online .backend-status-card {
  border-color: rgba(34, 125, 82, 0.24);
  background: linear-gradient(135deg, rgba(236, 255, 243, 0.88), rgba(255, 255, 255, 0.9));
}
.backend-online .backend-status-card::after {
  content: "Backend connected";
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 125, 82, 0.12);
  color: #17643e;
  font-size: 0.78rem;
  font-weight: 800;
}
.backend-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.backend-help-card {
  padding: 1rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0 14px 34px rgba(15, 61, 46, 0.06);
}
.backend-help-card code,
.backend-login-card code {
  white-space: pre-wrap;
  word-break: break-word;
}
@media (max-width: 820px) {
  .backend-help-grid { grid-template-columns: 1fr; }
}


/* Phase 12 — Marketing Growth / SEO Expansion */
.growth-hero .page-hero-inner,
.growth-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}
.growth-proof-box {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(210, 167, 80, 0.35);
  background: linear-gradient(145deg, rgba(255, 247, 225, 0.94), rgba(236, 248, 241, 0.92));
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--soft-shadow);
}
.growth-proof-box span,
.mini-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  color: var(--green-800);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.growth-proof-box strong { display: block; margin-top: 14px; color: var(--green-900); font-size: 1.35rem; line-height: 1.2; }
.growth-proof-box p { color: var(--muted); margin-top: 10px; }
.growth-grid,
.growth-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.growth-card,
.growth-index-card a {
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 22px;
  box-shadow: var(--soft-shadow);
}
.growth-card h3,
.growth-index-card h3 { color: var(--green-900); margin-top: 8px; }
.growth-card p,
.growth-index-card p { color: var(--muted); }
.growth-index-card span { display: inline-block; margin-top: 12px; font-weight: 800; color: var(--green-800); }
.growth-icon { font-size: 1.5rem; }
.growth-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  counter-reset: growth;
}
.growth-steps li {
  counter-increment: growth;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-md);
}
.growth-steps li::before {
  content: counter(growth);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font-weight: 900;
}
.growth-steps strong { color: var(--green-900); display: block; }
.growth-steps span { color: var(--muted); }
.growth-route-map { align-items: center; }
.faq-list.growth-faq { max-width: 900px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(15, 61, 46, 0.06);
}
.faq-item summary { cursor: pointer; color: var(--green-900); font-weight: 900; }
.faq-item p { color: var(--muted); margin-top: 10px; }
.growth-strip { border-color: rgba(210, 167, 80, 0.35); }
@media (max-width: 920px) {
  .growth-hero .page-hero-inner,
  .growth-hero-inner { grid-template-columns: 1fr; }
  .growth-grid,
  .growth-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .growth-grid,
  .growth-index-grid { grid-template-columns: 1fr; }
  .growth-steps li { grid-template-columns: 34px minmax(0, 1fr); }
}
