/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: #f5f7f3;
  color: #111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --g: #3b8c52;
  --g2: #52a96d;
  --g3: #1f5c36;
  --n: #1e1848;
  --n2: #2e2460;
  --off: #f5f7f3;
  --white: #ffffff;
  --muted: #6d7a6f;
  --border: #dde4db;
  --card: #ffffff;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 99px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(245, 247, 243, 0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.stuck { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,.06); }

.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  opacity: 0; transform: translateY(-8px) scale(.98);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s;
}
.nav.loaded .nav-logo { opacity: 1; transform: none; }
.nav-logo img {
  width: 36px; height: 36px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(59,140,82,.3);
}
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--n); letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--g); }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--n);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; text-transform: uppercase;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .45s ease, transform .45s ease;
}
.nav.loaded .nav-links a { opacity: .8; transform: none; }
.nav-links a:hover { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-dl {
  display: flex; align-items: center; gap: 7px;
  background: var(--n); color: #fff;
  padding: 9px 20px; border-radius: 99px;
  text-decoration: none; font-size: .82rem; font-weight: 700;
  letter-spacing: .01em; transition: all .22s;
}
.nav-dl:hover { background: var(--g); transform: translateY(-1px); }
.nav-dl svg { width: 14px; height: 14px; fill: #fff; }

/* ── BURGER ── */
.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: none;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--n); border-radius: 2px; transition: .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 68px 0 0; background: var(--white);
  z-index: 199; flex-direction: column; padding: 32px 6%; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--n); font-size: 1.3rem; font-weight: 700;
  border-bottom: 1px solid var(--border); padding-bottom: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 99px;
  font-size: .9rem; font-weight: 700; text-decoration: none;
  letter-spacing: .01em; transition: all .22s; cursor: pointer; border: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-dark {
  background: var(--n); color: #fff; box-shadow: 0 6px 20px rgba(30,24,72,.25);
}
.btn-dark:hover {
  background: var(--n2); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30,24,72,.3);
}
.btn-outline {
  background: transparent; color: var(--n); border: 2px solid var(--n);
}
.btn-outline:hover { background: var(--n); color: #fff; transform: translateY(-2px); }
.btn-green {
  background: var(--g); color: #fff; box-shadow: 0 6px 20px rgba(59,140,82,.3);
}
.btn-green:hover {
  background: var(--g3); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59,140,82,.4);
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }
.s-tag {
  display: inline-block;
  background: rgba(59,140,82,.1); color: var(--g3);
  padding: 5px 14px; border-radius: 99px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 18px; border: 1px solid rgba(59,140,82,.2);
}
.s-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 900; color: var(--n);
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 18px;
}
.s-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 540px;
}
.center { text-align: center; }
.center .s-sub { margin: 0 auto; }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 110px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(59,140,82,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(30,24,72,.05) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g3);
  opacity: 0; animation: up .7s .1s ease forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--g); border-radius: 2px;
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 900; line-height: 1.05;
  color: var(--n); letter-spacing: -.03em;
  margin-bottom: 24px;
  opacity: 0; animation: up .7s .2s ease forwards;
}
.hero-h1 em { font-style: italic; color: var(--g); }
.hero-h1 .line2 { display: block; color: var(--g); }
.hero-p {
  font-size: 1.02rem; color: var(--muted); line-height: 1.75;
  max-width: 440px; margin-bottom: 38px; font-weight: 400;
  opacity: 0; animation: up .7s .3s ease forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: up .7s .4s ease forwards;
}
.hero-trust {
  display: flex; align-items: center; gap: 14px; margin-top: 30px;
  opacity: 0; animation: up .7s .5s ease forwards;
}
.hero-trust-dots { display: flex; gap: -4px; }
.hero-trust-dots span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff;
  background: var(--g); display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff; margin-left: -8px;
}
.hero-trust-dots span:first-child { margin-left: 0; }
.hero-trust p { font-size: .78rem; color: var(--muted); font-weight: 500; }
.hero-trust strong { color: var(--n); font-weight: 700; }

/* ── PHONE MOCKUP ── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: up .9s .3s ease forwards;
}
.phone-scene { position: relative; width: 300px; }
.phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(59,140,82,.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.1);opacity:1} }
.phone-frame {
  position: relative; width: 260px; margin: 0 auto;
  animation: drift 7s ease-in-out infinite;
}
@keyframes drift { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-18px) rotate(1.5deg)} }
.phone-frame img {
  width: 100%; border-radius: 36px;
  box-shadow: 0 40px 80px rgba(30,24,72,.22), 0 16px 40px rgba(0,0,0,.1),
    inset 0 0 0 1px rgba(255,255,255,.15);
  display: block;
}
.bubble {
  position: absolute; background: #fff; border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  padding: 10px 16px; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(8px) scale(.98);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s;
}
.bubble.pop-anim {
  animation: popIn .6s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes popIn {
  0% { opacity:0; transform:scale(.9) translateY(12px); }
  60% { transform:scale(1.03) translateY(-6px); }
  100% { opacity:1; transform:none; }
}
.bubble .icon {
  width: 32px; height: 32px; border-radius: 9px; background: var(--g);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.bubble .b-label { font-size: .68rem; color: var(--muted); font-weight: 500; }
.bubble .b-val { font-size: .9rem; font-weight: 800; color: var(--n); }
.b1 { top: 8%; left: -38%; animation: bdrift 5s ease-in-out infinite; }
.b2 { bottom: 18%; right: -32%; animation: bdrift 6s 1s ease-in-out infinite reverse; }
@keyframes bdrift { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; padding: 20px 0;
  background: var(--n);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--g); opacity: .7; flex-shrink: 0;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── FEATURES GRID ── */
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
  margin-top: 64px; box-shadow: 0 4px 40px rgba(0,0,0,.05);
}
.feat-item {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.feat-item:nth-child(even) { border-right: none; }
.feat-item:nth-child(5), .feat-item:nth-child(6) { border-bottom: none; }
.feat-item:hover { background: rgba(59,140,82,.03); }
.feat-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--border); line-height: 1;
  pointer-events: none;
}
.feat-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--g), var(--g2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(59,140,82,.3);
  transition: transform .35s ease;
}
.feat-item:hover .feat-icon-wrap { transform: translateY(-6px) rotate(-6deg) scale(1.03); }
.feat-name { font-size: 1rem; font-weight: 800; color: var(--n); margin-bottom: 10px; }
.feat-desc { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── NUMBERS ── */
.nums-section {
  background: var(--n); padding: 80px 5%;
}
.nums-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,.06); border-radius: 20px; overflow: hidden;
}
.num-block {
  padding: 48px 32px; background: var(--n);
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.num-block:last-child { border-right: none; }
.num-val {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 900;
  color: var(--g2); letter-spacing: -.02em;
}
.num-label { font-size: .82rem; color: rgba(255,255,255,.45); font-weight: 500; line-height: 1.5; }

/* ── HOW IT WORKS ── */
#how { background: var(--off); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 64px; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900; color: var(--n);
  position: relative; z-index: 2; transition: all .3s;
}
.step:hover .step-num { background: var(--g); border-color: var(--g); color: #fff; transform: scale(1.1); }
.step-title { font-size: .95rem; font-weight: 800; color: var(--n); margin-bottom: 10px; }
.step-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
#compare { background: #fff; }
.tbl-wrap { overflow-x: auto; border-radius: 20px; box-shadow: 0 4px 40px rgba(0,0,0,.07); margin-top: 56px; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--n); }
th {
  padding: 20px 22px; font-size: .78rem; font-weight: 700; text-align: center;
  color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase;
}
th:first-child { text-align: left; }
th.hl { background: var(--g); color: #fff; }
tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
tbody tr:last-child { border: none; }
tbody tr:hover { background: #fafcfa; }
td { padding: 16px 22px; font-size: .86rem; text-align: center; color: var(--muted); }
td:first-child { text-align: left; font-weight: 700; color: var(--n); }
td.hl-cell { background: rgba(59,140,82,.05); }
.ck { color: var(--g); font-weight: 800; font-size: .9rem; }
.no { color: #d4d8d0; font-size: .9rem; }
.pt { color: #e8a020; font-size: .75rem; font-weight: 700; }

/* ── ABOUT ── */
#about { background: var(--off); }
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.values-list { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.value-row {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.value-row:first-child { border-top: 1px solid var(--border); }
.v-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59,140,82,.1); display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0; margin-top: 2px;
}
.v-title { font-size: .9rem; font-weight: 800; color: var(--n); margin-bottom: 4px; }
.v-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.about-card-col { display: flex; flex-direction: column; gap: 20px; }
.a-card {
  background: var(--n); border-radius: 20px; padding: 36px 32px; color: #fff;
  position: relative; overflow: hidden;
}
.a-card::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.a-card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.a-card-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.a-card-desc { font-size: .85rem; line-height: 1.65; opacity: .7; }
.a-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g); color: #fff; padding: 5px 12px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; margin-top: 14px;
}
.a-badge.dim { background: rgba(255,255,255,.1); }
.a-card2 {
  background: linear-gradient(135deg, var(--g3), var(--g));
  border-radius: 20px; padding: 36px 32px; color: #fff;
}
.a-card2-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.a-card2-desc { font-size: .85rem; line-height: 1.65; opacity: .85; }

/* ── LEGAL ── */
#legal { background: #fff; }
.legal-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.leg-card {
  background: var(--off); border-radius: 20px; padding: 40px 36px;
  border: 1px solid var(--border); transition: all .25s;
}
.leg-card:hover { border-color: rgba(59,140,82,.3); box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.leg-top { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.leg-ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--n);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.leg-head { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 900; color: var(--n); }
.leg-sub { font-size: .83rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.leg-points {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.leg-points li {
  display: flex; gap: 10px; font-size: .83rem; color: var(--muted);
}
.leg-points li::before {
  content: '→'; color: var(--g); font-weight: 700; flex-shrink: 0; margin-right: 8px;
}
.leg-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--g3); font-size: .82rem; font-weight: 800; text-decoration: none;
  border-bottom: 2px solid var(--g); padding-bottom: 2px; transition: gap .2s;
}
.leg-btn:hover { gap: 12px; }

/* ── CTA ── */
#cta {
  background: var(--n); padding: 120px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.04);
  pointer-events: none; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-ring1 { width: 400px; height: 400px; }
.cta-ring2 { width: 650px; height: 650px; }
.cta-ring3 { width: 900px; height: 900px; }
.cta-tag {
  display: inline-block;
  background: rgba(82,169,109,.15); color: var(--g2);
  padding: 6px 16px; border-radius: 99px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 28px; border: 1px solid rgba(82,169,109,.25);
}
.cta-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1.05; margin-bottom: 20px;
}
.cta-h em { font-style: italic; color: var(--g2); }
.cta-p {
  font-size: 1rem; color: rgba(255,255,255,.5);
  max-width: 460px; margin: 0 auto 48px; line-height: 1.7;
}
.store-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.07); color: #fff;
  padding: 14px 26px; border-radius: 16px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .22s;
}
.store-btn:hover {
  background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}
.store-ico { font-size: 1.5rem; }
.store-label small {
  display: block; font-size: .65rem; opacity: .5;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px;
}
.store-label strong { font-size: .95rem; font-weight: 700; }

/* ── FOOTER ── */
footer {
  background: #0e0d1a; color: #fff;
  padding: 64px 5% 36px;
}
.ft-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ft-logo img { width: 32px; height: 32px; border-radius: 9px; }
.ft-logo span { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 900; color: #fff; }
.ft-logo span em { color: var(--g2); font-style: normal; }
.ft-tagline { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; }
.ft-col h5 {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.ft-col a {
  display: block; text-decoration: none; font-size: .85rem;
  color: rgba(255,255,255,.45); margin-bottom: 12px; transition: color .2s;
}
.ft-col a:hover { color: var(--g2); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
}
.ft-copy { font-size: .76rem; color: rgba(255,255,255,.25); }
.ft-contact { display: flex; gap: 24px; }
.ft-contact a {
  text-decoration: none; font-size: .76rem; color: rgba(255,255,255,.3); transition: color .2s;
}
.ft-contact a:hover { color: var(--g2); }

/* ── KEYFRAMES ── */
@keyframes up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 100px 6% 70px; }
  .hero-p { margin: 0 auto 38px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-right { order: 2; margin-top: 16px; }
  .b1, .b2 { display: none; }
  .phone-scene { width: 220px; }
  .phone-frame { width: 200px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-item:nth-child(even) { border-right: 1px solid var(--border); }
  .feat-item:nth-child(5) { border-bottom: 1px solid var(--border); }
  .feat-item:nth-child(6) { border-bottom: none; }
  .nums-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .about-2col { grid-template-columns: 1fr; }
  .legal-2 { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-dl { display: none; }
}
@media (max-width: 600px) {
  .nums-grid { grid-template-columns: repeat(2, 1fr); }
  .num-block { padding: 32px 20px; }
  .steps-row { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
}