/* ==========================================================================
   BachatPe — Deep Saffron Dark  ·  fintech UI system
   ========================================================================== */

:root {
  --bg:            #07070a;
  --bg-2:          #0b0a0f;
  --bg-3:          #100d12;

  --surface:       rgba(255, 255, 255, 0.035);
  --surface-2:     rgba(255, 255, 255, 0.06);
  --stroke:        rgba(255, 255, 255, 0.08);
  --stroke-2:      rgba(255, 255, 255, 0.14);

  --primary:       #ff8a3d;
  --primary-2:     #ffb457;
  --primary-deep:  #e8681a;
  --violet:        #8b7cf6;
  --teal:          #2dd4bf;
  --green:         #34d399;
  --amber:         #fbbf24;

  --text:          #f8f6f3;
  --muted:         #a5a09a;
  --faint:         #6d6862;

  --serif: "DM Serif Display", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
h4, h5     { font-family: var(--sans);  font-weight: 700; line-height: 1.3; }

.text-muted { color: var(--muted); }
.accent     { color: var(--primary); }

.grad-text {
  background: linear-gradient(100deg, var(--primary-2), var(--primary) 45%, #ff6b9d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- shared atoms ------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.section-head.center .eyebrow::before { display: none; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(255, 138, 61, 0.09);
  border: 1px solid rgba(255, 138, 61, 0.24);
  color: var(--primary-2);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.glass {
  background: linear-gradient(158deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 12px;
  font-family: var(--sans); font-weight: 700; font-size: 0.94rem;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .18s cubic-bezier(.4,0,.2,1), box-shadow .18s ease,
              background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-deep));
  color: #17100a;
  box-shadow: 0 8px 26px -8px rgba(255, 138, 61, 0.6);
}
.btn-primary:hover { box-shadow: 0 14px 34px -10px rgba(255, 138, 61, 0.75); }

.btn-ghost {
  background: var(--surface); border-color: var(--stroke); color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255,138,61,.5); color: var(--primary-2); }

.btn-dark { background: #14100b; color: #fff; }
.btn-dark:hover { background: #000; }

/* Google Play badge (real SVG asset) */
.play-badge { display: inline-block; transition: transform .18s ease, filter .18s ease; }
.play-badge img { width: 168px; height: auto; }
.play-badge:hover { transform: translateY(-2px); filter: brightness(1.12); }
.play-badge.sm img { width: 140px; }

/* ---------- header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--stroke);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 15px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.28rem; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.brand .wm-pe { color: var(--primary); }

.main-nav ul { list-style: none; display: flex; gap: 6px; }
.main-nav a {
  display: block; padding: 8px 15px; border-radius: 9px;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: color .16s ease, background .16s ease;
}
.main-nav a:hover { color: var(--text); background: var(--surface); }
.main-nav a.active { color: var(--text); background: var(--surface-2); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--stroke);
  color: var(--text); font-size: 1.15rem; cursor: pointer;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 68px 0 auto 0; display: none;
    background: rgba(9, 8, 12, 0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke); padding: 18px 24px 26px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 13px 16px; font-size: 1rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .play-badge { display: none; }
}

/* ---------- ambient background ------------------------------------------- */
.glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .5; z-index: 0;
}
.glow.a { width: 520px; height: 520px; background: rgba(255,138,61,.22);  top: -160px; right: -120px; }
.glow.b { width: 420px; height: 420px; background: rgba(139,124,246,.16); bottom: -180px; left: -140px; }
.glow.c { width: 360px; height: 360px; background: rgba(45,212,191,.10);  top: 40%; left: 45%; }

.grid-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
}

/* ---------- hero --------------------------------------------------------- */
.hero { position: relative; padding: 76px 0 88px; overflow: hidden; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4rem); margin: 6px 0 22px; }
.hero h1 .line { display: block; }
.hero .lead { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin-bottom: 30px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.84rem; color: var(--faint); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; flex: none; color: var(--green); }

/* phone + floating cards */
.hero-visual { position: relative; width: 100%; max-width: 318px; margin-inline: auto; }
.phone-frame {
  position: relative; width: 100%;
  border-radius: 34px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px -25px rgba(0,0,0,.85), 0 0 0 8px rgba(255,255,255,.02);
}
.phone-frame img { width: 100%; }

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(18, 16, 20, .82);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.8);
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-size: 1rem;
}
.float-card .fc-body  { display: flex; flex-direction: column; }
.float-card .fc-label { font-size: 0.63rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); line-height: 1.5; }
.float-card .fc-value { font-size: 0.92rem; font-weight: 700; line-height: 1.3; white-space: nowrap; }

.float-card.one   { top: 12%;   left: -96px;  animation-delay: -1s; }
.float-card.two   { top: 47%;   right: -104px; animation-delay: -3.2s; }
.float-card.three { bottom: 9%; left: -84px;  animation-delay: -5s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-11px); }
}

@media (max-width: 1120px) {
  .float-card.one   { left: -56px; }
  .float-card.two   { right: -60px; }
  .float-card.three { left: -48px; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { order: -1; }
  .float-card.one   { left: -20px; }
  .float-card.two   { right: -20px; }
  .float-card.three { display: none; }
}
@media (max-width: 420px) {
  .float-card { padding: 10px 13px; }
  .float-card.one   { left: -10px; }
  .float-card.two   { right: -10px; }
}

/* ---------- stat strip --------------------------------------------------- */
.stat-strip { position: relative; z-index: 2; padding: 0 0 82px; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--stroke);
  border: 1px solid var(--stroke); border-radius: var(--r-lg); overflow: hidden;
}
.stat {
  background: linear-gradient(170deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  padding: 30px 26px; text-align: center;
}
.stat .num { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1; color: var(--primary-2); }
.stat .lbl { font-size: 0.83rem; color: var(--muted); margin-top: 9px; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- sections ----------------------------------------------------- */
section { padding: 92px 0; position: relative; }
section.alt { background: linear-gradient(180deg, var(--bg), var(--bg-2) 40%, var(--bg)); }
section.tight { padding: 64px 0; }

.section-head { max-width: 660px; margin-bottom: 52px; position: relative; z-index: 2; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.95rem, 4.2vw, 2.85rem); margin-bottom: 16px; }
.section-head p  { color: var(--muted); font-size: 1.02rem; }

/* ---------- bento grid --------------------------------------------------- */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  position: relative; z-index: 2;
}
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: 30px;
  background: linear-gradient(158deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--stroke);
  transition: transform .3s cubic-bezier(.4,0,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.bento-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255,138,61,.13), transparent 62%);
  opacity: 0; transition: opacity .3s ease;
}
.bento-card:hover { transform: translateY(-5px); border-color: var(--stroke-2); box-shadow: 0 26px 60px -30px rgba(0,0,0,.9); }
.bento-card:hover::after { opacity: 1; }

.bento-card .b-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.25rem; margin-bottom: 18px;
}
.bento-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.bento-card p  { color: var(--muted); font-size: 0.95rem; }

.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }

.bento-card.feature-lg { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; padding: 34px; }
.bento-card.feature-lg .b-art img { width: 100%; max-width: 280px; margin-left: auto; filter: drop-shadow(0 18px 34px rgba(0,0,0,.5)); }

/* centred section illustration */
.section-art { display: grid; place-items: center; margin: -14px 0 44px; position: relative; z-index: 2; }
.section-art img { width: 100%; max-width: 340px; filter: drop-shadow(0 22px 44px rgba(0,0,0,.55)); }

.tint-orange { background: rgba(255,138,61,.13); color: var(--primary-2); }
.tint-violet { background: rgba(139,124,246,.14); color: var(--violet); }
.tint-teal   { background: rgba(45,212,191,.13);  color: var(--teal); }
.tint-green  { background: rgba(52,211,153,.13);  color: var(--green); }
.tint-amber  { background: rgba(251,191,36,.13);  color: var(--amber); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-2, .span-4, .span-6 { grid-column: span 1; }
  .bento-card.feature-lg { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.feature-lg { grid-column: span 1; grid-template-columns: 1fr; }
  .bento-card.feature-lg .b-art img { margin: 0 auto; max-width: 180px; }
}

/* ---------- marquee ------------------------------------------------------ */
.marquee-wrap {
  position: relative; overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee { display: flex; gap: 14px; width: max-content; animation: slide 38s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--stroke);
  font-size: 0.86rem; color: var(--muted);
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } .float-card { animation: none; } }

/* ---------- how it works ------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.step {
  position: relative; padding: 32px 28px; border-radius: var(--r-lg);
  background: linear-gradient(158deg, rgba(255,255,255,.05), rgba(255,255,255,.014));
  border: 1px solid var(--stroke);
}
.step .n {
  font-family: var(--serif); font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,138,61,.55); margin-bottom: 16px;
}
.step h4 { font-size: 1.12rem; margin-bottom: 9px; }
.step p  { color: var(--muted); font-size: 0.94rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- alternating feature rows ------------------------------------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.feature-row + .feature-row { margin-top: 96px; }
.feature-row.reverse .fr-text { order: 2; }
.feature-row h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 8px 0 16px; }
.feature-row p  { color: var(--muted); margin-bottom: 16px; }

.fr-visual { position: relative; display: grid; place-items: center; min-height: 300px; }
.fr-visual .halo {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,.16), transparent 66%); filter: blur(26px);
}
.fr-visual img.art {
  position: relative; width: 100%; max-width: 380px;
  filter: drop-shadow(0 24px 46px rgba(0,0,0,.55));
}
.fr-visual img.shot {
  position: relative; width: 100%; max-width: 260px; border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 34px 74px -22px rgba(0,0,0,.85);
}
.fr-visual.violet .halo { background: radial-gradient(circle, rgba(139,124,246,.18), transparent 66%); }
.fr-visual.teal   .halo { background: radial-gradient(circle, rgba(45,212,191,.16), transparent 66%); }
.fr-visual.green  .halo { background: radial-gradient(circle, rgba(52,211,153,.16), transparent 66%); }

.check-list { list-style: none; margin-top: 8px; }
.check-list li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 11px 0; border-top: 1px solid var(--stroke); font-size: 0.94rem;
}
.check-list li:first-child { border-top: none; }
.check-list li::before {
  content: "✓"; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 6px;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 900;
  background: rgba(255,138,61,.14); color: var(--primary-2);
}
@media (max-width: 900px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 38px; }
  .feature-row.reverse .fr-text { order: initial; }
  .feature-row + .feature-row { margin-top: 64px; }
}

/* ---------- promise / values grid ---------------------------------------- */
.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position: relative; z-index: 2; }
.promise {
  display: flex; gap: 16px; padding: 24px 26px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--stroke);
  transition: border-color .25s ease, transform .25s ease;
}
.promise:hover { border-color: var(--stroke-2); transform: translateY(-3px); }
.promise .p-icon { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; font-size: 1.05rem; }
.promise h4 { font-size: 1rem; margin-bottom: 6px; }
.promise p  { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 760px) { .promise-grid { grid-template-columns: 1fr; } }

/* never-list */
.never-list { list-style: none; display: grid; gap: 12px; position: relative; z-index: 2; }
.never-list li {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--stroke);
  font-size: 0.95rem;
}
.never-list li .x {
  width: 24px; height: 24px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: rgba(248,113,113,.13); color: #f87171; font-weight: 900; font-size: .8rem;
}

/* ---------- CTA banner --------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; padding: 84px 0; }
.cta-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 62px 40px; border-radius: 30px;
  background: linear-gradient(140deg, rgba(255,138,61,.16), rgba(139,124,246,.10) 55%, rgba(255,255,255,.03));
  border: 1px solid rgba(255,138,61,.24);
  overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,.3), transparent 65%);
  filter: blur(70px); top: -220px; left: 50%; transform: translateX(-50%);
}
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.cta-inner p  { color: var(--muted); max-width: 540px; margin: 0 auto 30px; }
.cta-actions  { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ---------- page hero ---------------------------------------------------- */
.page-hero { position: relative; padding: 84px 0 62px; text-align: center; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.35rem); max-width: 800px; margin: 16px auto 20px; }
.page-hero .lead { max-width: 640px; margin: 0 auto; font-size: 1.08rem; color: var(--muted); }

/* ---------- contact ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; position: relative; z-index: 2; }

.contact-card {
  padding: 26px; border-radius: var(--r); margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--stroke);
}
.contact-card .c-label { font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.contact-card a.email { font-size: 1.12rem; font-weight: 700; color: var(--primary-2); word-break: break-all; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }

.contact-form {
  padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(158deg, rgba(255,255,255,.05), rgba(255,255,255,.014));
  border: 1px solid var(--stroke);
}
.form-row { margin-bottom: 18px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  background: rgba(0,0,0,.32); border: 1px solid var(--stroke);
  color: var(--text); font-family: var(--sans); font-size: 0.94rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: rgba(255,138,61,.6);
  box-shadow: 0 0 0 3px rgba(255,138,61,.12);
}
.form-row textarea { min-height: 132px; resize: vertical; }
.form-row.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status { margin-top: 14px; font-size: 0.9rem; min-height: 20px; }
.form-status.success { color: var(--green); }
.form-status.error   { color: #f87171; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .form-two { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------------------------------------------------------- */
.faq-wrap { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item {
  border-radius: var(--r); margin-bottom: 12px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--stroke);
  transition: border-color .22s ease, background .22s ease;
}
.faq-item.open { border-color: rgba(255,138,61,.3); background: var(--surface-2); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-icon {
  flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--muted);
  font-size: .9rem; transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,138,61,.16); color: var(--primary-2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 24px; }
.faq-answer p { color: var(--muted); font-size: 0.94rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---------- footer ------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--stroke); background: var(--bg-2); padding: 62px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.28rem; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 10px; }
.footer-brand .wm-pe { color: var(--primary); }
.footer-grid > div > p { color: var(--muted); font-size: 0.92rem; max-width: 300px; }
.footer-col h5 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color .16s ease; }
.footer-col a:hover { color: var(--primary-2); }
.footer-bottom {
  border-top: 1px solid var(--stroke); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: var(--faint);
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--primary-2); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- legal / policy pages ----------------------------------------- */
.legal-layout {
  display: grid; grid-template-columns: 232px 1fr; gap: 56px;
  align-items: start; position: relative; z-index: 2;
}

.legal-toc { position: sticky; top: 96px; }
.legal-toc h5 {
  font-size: 0.7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 14px;
}
.legal-toc ul { list-style: none; border-left: 1px solid var(--stroke); }
.legal-toc a {
  display: block; padding: 7px 0 7px 16px; margin-left: -1px;
  border-left: 1px solid transparent;
  font-size: 0.87rem; color: var(--muted); line-height: 1.4;
  transition: color .16s ease, border-color .16s ease;
}
.legal-toc a:hover { color: var(--text); border-left-color: var(--stroke-2); }
.legal-toc a.active { color: var(--primary-2); border-left-color: var(--primary); }

.legal-body { max-width: 720px; }
.legal-body section {
  padding: 0; margin-bottom: 46px; scroll-margin-top: 96px;
}
.legal-body h2 {
  font-size: 1.5rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--stroke);
}
.legal-body h3 { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin: 22px 0 8px; }
.legal-body p { color: var(--muted); margin-bottom: 14px; font-size: 0.97rem; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.86em;
  padding: 2px 7px; border-radius: 6px;
  background: rgba(255,138,61,.11); color: var(--primary-2);
  border: 1px solid rgba(255,138,61,.2);
}
.legal-body ul { list-style: none; margin: 0 0 16px; }
.legal-body ul li {
  position: relative; padding: 6px 0 6px 22px;
  color: var(--muted); font-size: 0.95rem;
}
.legal-body ul li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--primary);
  opacity: .75;
}
.legal-body ul.plain li::before { display: none; }

.legal-note {
  padding: 20px 24px; border-radius: var(--r); margin: 20px 0;
  background: rgba(255,138,61,.06); border: 1px solid rgba(255,138,61,.2);
}
.legal-note p:last-child { margin-bottom: 0; }
.legal-note .n-title { font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: 0.95rem; }

.legal-meta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; margin-top: 8px;
  background: var(--surface); border: 1px solid var(--stroke);
  font-size: 0.82rem; color: var(--muted);
}

.legal-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 52px; }
.legal-summary .ls-card {
  padding: 22px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--stroke);
}
.legal-summary .ls-icon { font-size: 1.3rem; margin-bottom: 10px; display: block; }
.legal-summary h4 { font-size: 0.97rem; margin-bottom: 6px; }
.legal-summary p  { color: var(--muted); font-size: 0.87rem; }

@media (max-width: 940px) {
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
  .legal-toc ul { display: flex; flex-wrap: wrap; gap: 6px; border-left: none; }
  .legal-toc a { padding: 7px 14px; border: 1px solid var(--stroke); border-radius: 999px; margin: 0; font-size: 0.82rem; }
  .legal-toc a.active { border-color: rgba(255,138,61,.5); }
  .legal-summary { grid-template-columns: 1fr; }
}

/* ---------- scroll reveal ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
