/* Khaate Raho — Saffron & Charcoal */
:root {
  --forest: #1a1a1a;
  --forest-deep: #0f0f0f;
  --emerald: #e85d04;
  --lime: #ffb347;
  --lime-mark: #ffc266;
  --lime-soft: #ffe8cc;
  --mint: #fff5ed;
  --bg: #fffbf7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6560;
  --border: #ede5dc;
  --selection-bg: #ffb347;
  --selection-fg: #1a1a1a;
  --shadow: 0 12px 40px rgba(26, 26, 26, 0.12);
  --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.07);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --pill: 999px;
  --font: "Roboto", Arial, Helvetica, sans-serif;
  --font-display: "Roboto", Arial, Helvetica, sans-serif;
  --nav-h: 76px;
  --dot-grid: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--wide {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--forest);
}

.logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 58vw);
}

.footer__logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.logo__mark svg {
  width: 22px;
  height: 22px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo__sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--emerald);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--forest);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--forest);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

.btn--primary:hover {
  background: #c74e03;
}

.btn--lime {
  background: var(--lime);
  color: var(--forest);
  box-shadow: 0 6px 20px rgba(255, 179, 71, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--emerald);
  background: var(--mint);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 179, 71, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(232, 93, 4, 0.07), transparent 45%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: var(--mint);
  border: 1px solid var(--border);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--forest);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--emerald);
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  position: relative;
  z-index: 1;
}

.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.hero__card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--emerald);
  margin-bottom: 0.2rem;
}

.hero__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest);
  font-size: 0.72rem;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--pill);
  background: var(--lime-soft);
  color: var(--forest);
  border: 1px solid rgba(255, 179, 71, 0.45);
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.mini-kpi {
  background: var(--mint);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.65rem;
  border: 1px solid var(--border);
}

.mini-kpi--dark {
  background: var(--forest);
  border-color: var(--forest);
}

.mini-kpi--dark .mini-kpi__value,
.mini-kpi--dark .mini-kpi__label {
  color: #fff;
}

.mini-kpi__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
}

.mini-kpi__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.order-list {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  gap: 0.5rem;
}

.order-row:last-child {
  border-bottom: none;
}

.order-row__status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--pill);
  flex-shrink: 0;
}

.order-row__status--prep {
  background: #fff3cd;
  color: #856404;
}

.order-row__status--ready {
  background: var(--lime-soft);
  color: var(--forest);
}

.order-row__status--dispatch {
  background: var(--mint);
  color: var(--emerald);
}

.hero__card--dark {
  position: absolute;
  bottom: 0;
  left: -2rem;
  width: 58%;
  background: var(--forest);
  color: #fff;
  border-color: var(--forest-deep);
  box-shadow: 0 20px 50px rgba(15, 15, 15, 0.45);
  z-index: 2;
  padding: 1.15rem 1.25rem;
}

.hero__card--dark .hero__card-title {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero__card--dark .mini-kpi {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero__card--dark .mini-kpi__value {
  color: var(--lime);
  font-size: 1.15rem;
}

.hero__card--dark .mini-kpi__label {
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.55rem 1rem;
  background: var(--mint);
  border-radius: var(--pill);
  border: 1px solid var(--border);
}

.trust-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--forest);
  font-weight: 700;
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
}

.section--mint {
  background: var(--mint);
}

.section--forest {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.9;
}

.section--forest > .container {
  position: relative;
  z-index: 1;
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald);
  margin-bottom: 0.85rem;
}

.section--forest .section__eyebrow {
  color: var(--lime);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section--forest .section__title {
  color: #fff;
}

.section__title em {
  font-style: italic;
  color: var(--emerald);
}

.section--forest .section__title em,
.cta-band__title em {
  color: var(--lime);
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0;
  line-height: 1.7;
}

.section--forest .section__lead {
  color: rgba(255, 255, 255, 0.75);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header .section__lead {
  margin-inline: auto;
}

.section__header--left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section__header--left .section__lead {
  margin-inline: 0;
}

/* ---------- Products ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card--featured {
  background: var(--forest);
  border-color: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.product-card--featured .product-card__icon {
  background: rgba(255, 179, 71, 0.12);
  border-color: rgba(255, 179, 71, 0.25);
}

.product-card__badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--pill);
  background: var(--lime);
  color: var(--forest);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.product-card--featured .product-card__title {
  color: #fff;
}

.product-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.15rem;
  line-height: 1.6;
}

.product-card--featured .product-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.product-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.product-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.product-card--featured .product-card__list li {
  color: rgba(255, 255, 255, 0.85);
}

.product-card__widget {
  background: var(--mint);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.product-card--featured .product-card__widget {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.widget__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.product-card--featured .widget__label {
  color: rgba(255, 255, 255, 0.5);
}

.widget__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.product-card--featured .widget__value {
  color: var(--lime);
}

.widget__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
}

.widget__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--emerald);
  opacity: 0.35;
}

.widget__bar:nth-child(2) { height: 55%; opacity: 0.5; }
.widget__bar:nth-child(3) { height: 80%; opacity: 0.7; }
.widget__bar:nth-child(4) { height: 100%; opacity: 1; }
.widget__bar:nth-child(5) { height: 65%; opacity: 0.6; }

.widget__order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.widget__order-item:last-child {
  border-bottom: none;
}

.widget__send-btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.55rem;
  border-radius: var(--pill);
  background: var(--lime);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.widget__qr {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--forest) 0 4px,
    transparent 4px 8px
  ),
  repeating-linear-gradient(
    var(--forest) 0 4px,
    transparent 4px 8px
  );
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.widget__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0;
}

.widget__cat {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--forest);
}

.widget__cart {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald);
  margin-top: 0.5rem;
}

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 900;
  margin-top: 0.12rem;
}

.product-card--featured .check {
  background: rgba(255, 179, 71, 0.2);
  color: var(--lime);
}

/* ---------- Features ---------- */
.feature-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.feature-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-group__head {
  margin-bottom: 1.25rem;
  position: relative;
}

.feature-group__num {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  opacity: 0.85;
  line-height: 1;
}

.feature-group__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
  padding-right: 2.5rem;
}

.feature-group__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .feature-chip__desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 179, 71, 0.3);
}

.step__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  line-height: 1;
}

.step__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.step__desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Pricing plans grid ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing--plans {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.85rem 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card--featured {
  background: var(--forest);
  border-color: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow);
  transform: scale(1.03);
  z-index: 1;
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing--plans .price-card {
  padding: 1.85rem 1.35rem 1.65rem;
}

.pricing--plans .price-card__amount {
  font-size: 2.15rem;
}

.price-card__monthly {
  font-weight: 600;
  opacity: 0.85;
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--pill);
  white-space: nowrap;
}

.price-card__name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 0.75rem;
}

.price-card--featured .price-card__name {
  color: var(--lime);
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-card--featured .price-card__amount {
  color: #fff;
}

.price-card__period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.35rem 0 1rem;
  font-weight: 500;
}

.price-card--featured .price-card__period {
  color: rgba(255, 255, 255, 0.6);
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  flex: 1;
  line-height: 1.6;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.price-card__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.price-card--featured .price-card__features li {
  color: rgba(255, 255, 255, 0.88);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: 18px 18px;
  pointer-events: none;
}

.cta-band__content {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin: 0 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-band__lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  min-width: 200px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 20rem;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.footer__social a:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(255, 179, 71, 0.08);
}

.footer__col h4 {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.55rem;
}

.footer__col a {
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer__col a:hover {
  color: var(--lime);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

/* Text selection on dark surfaces — lime block, forest text (readable everywhere) */
.section--forest ::selection,
.footer ::selection,
.cta-band ::selection,
.product-card--featured ::selection,
.price-card--featured ::selection,
.hero__card--dark ::selection,
.step ::selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

.section--forest ::-moz-selection,
.footer ::-moz-selection,
.cta-band ::-moz-selection,
.product-card--featured ::-moz-selection,
.price-card--featured ::-moz-selection,
.hero__card--dark ::-moz-selection,
.step ::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-groups {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .products {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .product-card--featured {
    order: -1;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__visual {
    order: -1;
    max-width: 440px;
    margin-inline: auto;
    min-height: 380px;
  }

  .hero__card--dark {
    left: 0;
    width: 65%;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .pricing--plans {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .price-card--featured {
    transform: none;
    order: -1;
  }

  .price-card--featured:hover {
    transform: translateY(-4px);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-band__actions {
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    gap: 1rem;
  }

  .nav--open .nav__actions {
    position: absolute;
    top: calc(var(--nav-h) + 11rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing--plans {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 1.5rem;
  }
}
