/* ============================================================
   Ziyava — marketing site
   Palette: deep green-black base, warm cream type,
   WhatsApp-green + candlelight-gold accents.
   ============================================================ */

:root {
  --bg:        #0A100C;
  --bg-2:      #0D1410;
  --panel:     #111A14;
  --line:      rgba(236, 242, 233, 0.09);
  --line-soft: rgba(236, 242, 233, 0.055);

  --text:      #F1EEE3;
  --muted:     #A6B3A9;
  --dim:       #78857C;

  --green:     #3ADF7C;
  --green-2:   #1FBE68;
  --green-ink: #052613;
  --green-dim: rgba(58, 223, 124, 0.14);

  --gold:      #E7B54D;
  --red:       #FF7A6B;

  /* authentic WhatsApp dark-mode colors for the phone mock */
  --wa-bg:     #0B141A;
  --wa-panel:  #202C33;
  --wa-out:    #005C4B;
  --wa-text:   #E9EDEF;
  --wa-dim:    #8696A0;
  --wa-blue:   #53BDEB;

  --radius:    18px;
  --radius-lg: 28px;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-disp: "Fraunces", Georgia, "Times New Roman", serif;

  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  --shadow-green: 0 10px 32px -10px rgba(46, 210, 115, 0.45);
}

/* ---------------- base ---------------- */

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* fine grain so large dark areas never look flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(58, 223, 124, 0.28); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-thumb { background: #223129; border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-track { background: var(--bg); }

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}
.container--narrow { width: min(760px, calc(100% - 48px)); }

/* ---------------- shared type ---------------- */

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.section__title {
  margin: 0 0 20px;
  font-family: var(--font-disp);
  font-weight: 560;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section__lead {
  margin: 0 0 56px;
  max-width: 620px;
  font-size: 17.5px;
  color: var(--muted);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--band {
  background: var(--bg-2);
  border-block: 1px solid var(--line-soft);
}

b { color: var(--text); font-weight: 600; }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4CE98C, #1FBE68);
  color: var(--green-ink);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  box-shadow: var(--shadow-green);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 40px -12px rgba(46, 210, 115, 0.55); }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: rgba(58, 223, 124, 0.5); background: rgba(58, 223, 124, 0.06); filter: none; }

.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--wide  { justify-content: center; width: 100%; }
.btn--big   { padding: 17px 34px; font-size: 17px; }

/* ---------------- nav ---------------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 16, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 30px; height: 30px; }
.brand__name {
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }

.nav__badge {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(231, 181, 77, 0.14);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 2px;
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
}

/* slow drifting glow field behind the hero */
.aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora i {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.aurora i:nth-child(1) {
  width: 620px; height: 620px; top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(46, 222, 120, 0.16), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  width: 520px; height: 520px; top: 60px; right: -160px;
  background: radial-gradient(circle, rgba(231, 181, 77, 0.10), transparent 65%);
  animation: drift2 26s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  width: 460px; height: 460px; bottom: -220px; left: 34%;
  background: radial-gradient(circle, rgba(48, 178, 158, 0.12), transparent 65%);
  animation: drift1 30s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 { to { transform: translate(70px, 40px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(-60px, 60px) scale(0.94); } }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero__title {
  margin: 0 0 24px;
  font-family: var(--font-disp);
  font-weight: 560;
  font-size: clamp(2.7rem, 5.4vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  font-weight: 470;
  background: linear-gradient(100deg, #5BEB97, #E7B54D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 36px;
  max-width: 540px;
  font-size: 18px;
  color: var(--muted);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  max-width: 460px;
  font-size: 13.5px;
  color: var(--dim);
}
.hero__trust svg { width: 15px; height: 15px; flex: none; margin-top: 3px; }

/* ---------------- phone mock ---------------- */

.hero__demo {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(360px, 88vw);
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #232B26, #0E1310 55%);
  border: 1px solid rgba(240, 244, 238, 0.12);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.75),
    0 0 80px -30px rgba(46, 210, 115, 0.25);
}

.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 108px; height: 24px;
  border-radius: 999px;
  background: #060907;
  z-index: 5;
}

.phone__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 660px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.022), transparent 42%),
    var(--wa-bg);
}
/* faint WhatsApp-style doodle wallpaper */
.phone__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23E9EDEF' stroke-width='1.1'%3E%3Ccircle cx='22' cy='24' r='7'/%3E%3Cpath d='M70 18c6 0 10 4 10 9s-4 9-10 9'/%3E%3Cpath d='M20 78l8 8m0-8l-8 8'/%3E%3Ccircle cx='92' cy='88' r='5'/%3E%3Cpath d='M52 56c0-5 4-8 8-8s8 3 8 8-4 8-8 8'/%3E%3C/g%3E%3C/svg%3E");
}

.wa-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wa-text);
  background: #101B22;
}
.wa-status__icons { display: inline-flex; gap: 5px; align-items: center; }
.wa-status__icons svg { width: 15px; height: 11px; }

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 10px;
  background: #101B22;
  border-bottom: 1px solid rgba(233, 237, 239, 0.06);
  position: relative;
  z-index: 2;
}
.wa-header__back { width: 20px; height: 20px; color: var(--wa-dim); flex: none; }
.wa-header__avatar {
  width: 36px; height: 36px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3ADF7C, #147A4B);
  color: #05230F;
  font-weight: 700;
  font-size: 16px;
}
.wa-header__meta { min-width: 0; line-height: 1.25; }
.wa-header__meta strong {
  display: block;
  font-size: 14px;
  color: var(--wa-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-header__meta span { font-size: 12px; color: var(--wa-dim); }
.wa-header__meta span.is-typing { color: var(--green); }
.wa-header__dots { width: 4px; height: 16px; margin-left: auto; color: var(--wa-dim); flex: none; }

.wa-chat {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
}
.wa-chat::-webkit-scrollbar { display: none; }

.wa-day { display: flex; justify-content: center; margin-bottom: 8px; }
.wa-day span {
  padding: 4px 12px;
  border-radius: 8px;
  background: #182229;
  color: var(--wa-dim);
  font-size: 11.5px;
}

/* message bubbles */
.msg {
  position: relative;
  max-width: 82%;
  padding: 7px 10px 6px;
  border-radius: 10px;
  font-size: 13.6px;
  line-height: 1.42;
  color: var(--wa-text);
  animation: msg-in 0.34s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
  word-wrap: break-word;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.msg--in  { align-self: flex-start; background: var(--wa-panel); border-top-left-radius: 3px; }
.msg--out { align-self: flex-end;   background: var(--wa-out);   border-top-right-radius: 3px; }

.msg--rtl { direction: rtl; text-align: right; }

.msg b { color: inherit; font-weight: 600; }

.msg__meta {
  float: right;
  margin: 8px -2px -2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: rgba(233, 237, 239, 0.55);
  user-select: none;
}
.msg--rtl .msg__meta { float: left; margin: 8px 8px -2px -2px; }
.msg__ticks { width: 15px; height: 10px; color: rgba(233, 237, 239, 0.55); transition: color 0.4s ease; }
.msg__ticks.is-read { color: var(--wa-blue); }

/* staff message label */
.msg__staff {
  display: block;
  margin-bottom: 2px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
}

/* typing indicator */
.msg--typing { padding: 11px 14px; }
.typing-dots { display: inline-flex; gap: 4px; }
.typing-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wa-dim);
  animation: blink 1.2s infinite both;
}
.typing-dots i:nth-child(2) { animation-delay: 0.18s; }
.typing-dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes blink { 0%, 70%, 100% { opacity: 0.25; transform: translateY(0); } 35% { opacity: 1; transform: translateY(-2px); } }

/* voice note bubble */
.msg--voice { display: flex; align-items: center; gap: 9px; min-width: 190px; }
.voice__play { width: 30px; height: 30px; flex: none; color: rgba(233, 237, 239, 0.85); }
.voice__wave { display: flex; align-items: center; gap: 2px; flex: 1; height: 22px; }
.voice__wave i {
  width: 2.6px;
  border-radius: 2px;
  background: rgba(233, 237, 239, 0.55);
}
.voice__time { font-size: 11px; color: rgba(233, 237, 239, 0.6); }

/* image (dish) bubble */
.msg--img { padding: 4px; max-width: 68%; }
.dish {
  border-radius: 8px;
  overflow: hidden;
}
.dish__art {
  height: 128px;
  display: grid;
  place-items: center;
  font-size: 52px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 220, 150, 0.22), transparent 55%),
    linear-gradient(150deg, #3C3327, #191410);
}
.dish__cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  font-size: 12.5px;
  background: rgba(0, 0, 0, 0.28);
}
.dish__cap b { font-weight: 600; }
.dish__cap span { color: var(--green); font-weight: 600; white-space: nowrap; }

.wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 12px;
  position: relative;
  z-index: 2;
}
.wa-input__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--wa-panel);
  color: var(--wa-dim);
  font-size: 13.5px;
}
.wa-input__field svg { width: 19px; height: 19px; }
.wa-input__mic {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #00A884;
  color: #06110D;
}
.wa-input__mic svg { width: 20px; height: 20px; }

/* ---------------- floating chips + manager toast ---------------- */

.chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(17, 26, 20, 0.9);
  border: 1px solid rgba(58, 223, 124, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.3);
  pointer-events: none;
}
.chip.is-on { opacity: 1; transform: none; }
.chip span { font-size: 15px; }

.chip--1 { top: 17%;  left: -34px; }
.chip--2 { top: 43%;  right: -40px; }
.chip--3 { top: 62%;  left: -48px; }
.chip--4 { bottom: 10%; right: -30px; }

.toast {
  position: absolute;
  top: -18px;
  right: -46px;
  z-index: 7;
  width: 272px;
  border-radius: 16px;
  background: rgba(16, 24, 19, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.25);
  pointer-events: none;
}
.toast.is-on { opacity: 1; transform: none; }

.toast__app {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.toast__app svg { width: 15px; height: 15px; }

.toast__body { display: flex; gap: 10px; align-items: flex-start; }
.toast__badge {
  flex: none;
  margin-top: 2px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 122, 107, 0.16);
  color: var(--red);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.toast__body strong { display: block; font-size: 13.5px; margin-bottom: 2px; }
.toast__body p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ---------------- stats strip ---------------- */

.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  padding: 30px 20px;
  text-align: center;
}
.strip__item + .strip__item { border-left: 1px solid var(--line-soft); }
.strip__item strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 560;
  color: var(--green);
  margin-bottom: 3px;
}
.strip__item span { font-size: 13.5px; color: var(--dim); }

/* ---------------- feature cards ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(58, 223, 124, 0.35);
  background: linear-gradient(170deg, rgba(58, 223, 124, 0.05), rgba(255, 255, 255, 0.012));
}

.card__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--green-dim);
  color: var(--green);
}
.card__icon svg { width: 23px; height: 23px; }

.card h3 {
  margin: 0 0 10px;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------------- steps ---------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: var(--font-disp);
  font-size: 18px;
  color: var(--green-ink);
  background: linear-gradient(135deg, #4CE98C, #1FBE68);
  box-shadow: var(--shadow-green);
}
.step h3 { margin: 0 0 10px; font-size: 17.5px; font-weight: 600; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------------- team / handover ---------------- */

.team {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.team .section__lead { margin-bottom: 30px; }

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.ticks li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 10.3 2.6 2.7L14 7.4' fill='none' stroke='%233ADF7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}

.team__visual { display: grid; gap: 16px; }

.notif {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.notif--high { border-color: rgba(255, 122, 107, 0.3); }

.notif__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.notif__badge {
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255, 122, 107, 0.16);
  color: var(--red);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.notif__badge--normal { background: var(--green-dim); color: var(--green); }
.notif__row strong { font-size: 14.5px; }
.notif__row time { margin-left: auto; font-size: 12px; color: var(--dim); }
.notif p { margin: 0; font-size: 13.5px; color: var(--muted); }

.digest {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(231, 181, 77, 0.08), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(231, 181, 77, 0.25);
}
.digest__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.digest__head span { font-size: 24px; }
.digest__head strong { display: block; font-size: 15px; }
.digest__head em { font-style: normal; font-size: 12.5px; color: var(--dim); }
.digest ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}
.digest li { font-size: 13.5px; color: var(--muted); }
.digest li b { color: var(--gold); font-weight: 600; }

/* ---------------- pricing ---------------- */

.pricing { text-align: center; }
.pricing .section__lead { margin-inline: auto; }

.price-card {
  position: relative;
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 42px 38px 34px;
  border-radius: var(--radius-lg);
  text-align: left;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(150deg, rgba(76, 233, 140, 0.65), rgba(231, 181, 77, 0.35), rgba(76, 233, 140, 0.1)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8), 0 0 70px -40px rgba(46, 210, 115, 0.5);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4CE98C, #1FBE68);
  color: var(--green-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card h3 { margin: 6px 0 4px; font-size: 18px; font-weight: 600; text-align: center; }

.price-card__price {
  margin: 0 0 26px;
  text-align: center;
  font-family: var(--font-disp);
  font-size: 34px;
  font-weight: 560;
}
.price-card__price span {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dim);
  margin-top: 2px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 12px;
}
.price-card li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--green-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 10.3 2.6 2.7L14 7.4' fill='none' stroke='%233ADF7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}

.price-card__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--dim);
}

/* ---------------- FAQ ---------------- */

.faq { display: grid; gap: 12px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(58, 223, 124, 0.35); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 15.5px;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; border-radius: 16px; }

.faq__plus {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq__plus::before { width: 13px; height: 2px; }
.faq__plus::after  { width: 2px;  height: 13px; }
.faq details[open] .faq__plus::after { transform: rotate(90deg); }

.faq details p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 640px;
}

/* ---------------- final CTA ---------------- */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 84px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.cta__glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 120%, rgba(46, 222, 120, 0.16), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(231, 181, 77, 0.07), transparent 45%);
  pointer-events: none;
}
.cta h2 {
  position: relative;
  margin: 0 0 16px;
  font-family: var(--font-disp);
  font-weight: 560;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.1;
}
.cta h2 em {
  font-style: italic;
  font-weight: 470;
  background: linear-gradient(100deg, #5BEB97, #E7B54D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta p {
  position: relative;
  margin: 0 auto 34px;
  max-width: 480px;
  color: var(--muted);
  font-size: 16.5px;
}
.cta .btn { position: relative; }
.cta__mail {
  position: relative;
  margin-top: 22px !important;
  font-size: 13.5px !important;
  color: var(--dim) !important;
}
.cta__mail a { color: var(--green); }
.cta__mail a:hover { text-decoration: underline; }

/* ---------------- footer ---------------- */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 34px;
  background: var(--bg-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}

.footer__brand p {
  margin: 16px 0 0;
  max-width: 320px;
  font-size: 14px;
  color: var(--dim);
}

.footer__col { display: grid; gap: 11px; align-content: start; }
.footer__col strong {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.2s ease;
  width: fit-content;
}
.footer__col a:hover { color: var(--green); }
.footer__muted { font-size: 14.5px; color: var(--dim); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--dim);
}

/* ---------------- scroll reveal ---------------- */

/* hidden-until-scrolled applies ONLY when JS is running (html.js),
   so content is never lost without JavaScript */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* stagger siblings inside grids */
.cards .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.cards .reveal:nth-child(4) { transition-delay: 0.08s; }
.cards .reveal:nth-child(5) { transition-delay: 0.16s; }
.cards .reveal:nth-child(6) { transition-delay: 0.24s; }
.strip__grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.strip__grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.strip__grid .reveal:nth-child(4) { transition-delay: 0.21s; }

/* ---------------- responsive ---------------- */

@media (max-width: 1080px) {
  .chip--1 { left: -8px; }
  .chip--3 { left: -14px; }
  .chip--2 { right: -10px; }
  .chip--4 { right: -6px; }
  .toast { right: -8px; }
}

@media (max-width: 980px) {
  .hero { padding-top: 140px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__lead { max-width: 560px; }
  .hero__demo { margin-top: 8px; }
  .chip, .toast { display: none; }

  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; gap: 48px; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(3) { border-left: none; }
  .strip__item:nth-child(n + 3) { border-top: 1px solid var(--line-soft); }

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

@media (max-width: 720px) {
  .nav__links { display: none; }
  .section { padding: 76px 0; }
  .cards { grid-template-columns: 1fr; }
  .phone__screen { height: 600px; }
  .digest ul { grid-template-columns: 1fr; }
  .cta { padding: 64px 22px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 36px); }
  .hero { padding-top: 122px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .strip__grid { grid-template-columns: 1fr; }
  .strip__item + .strip__item { border-left: none; border-top: 1px solid var(--line-soft); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------------- reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora i { animation: none; }
  .msg { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .chip, .toast { transition: none; }
  .btn, .card { transition: none; }
  .typing-dots i { animation: none; }
}
