/* loymint — landing styles. Dark-first, built to the validated charte v6.
   Tokens mirror docs/design Charte v6 (lime accent #A3E635, Geist, vault world). */

:root {
  --accent: #A3E635;
  --accent-soft: #BEF264;
  --accent-deep: #65A30D;
  --accent-rgb: 163, 230, 53;
  --on-accent: #0A0A0F;

  --bg: #0A0A0F;
  --bg-grad: radial-gradient(120% 80% at 50% -10%, #15131F 0%, #0A0A0F 60%);
  --surface: #141420;
  --surface-2: #1C1C28;
  --surface-3: #23232F;
  --line: #26262F;
  --line-soft: #1E1E29;
  --hairline: rgba(255, 255, 255, 0.06);

  --text: #F5F5F7;
  --text-2: #A1A1AA;
  --text-3: #6B6B76;

  --ok: #A3E635;
  --info: #60A5FA;
  --warn: #FBBF24;
  --bad: #F87171;

  --font: "Geist", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;

  --glow: 0 0 60px -12px rgba(var(--accent-rgb), 0.55);
  --shadow-card: 0 18px 50px -18px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.5);

  --r-sm: 10px;
  --r-card: 22px;
  --r-surface: 14px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--bg-grad);
  background-attachment: fixed;
  font-feature-settings: "ss01", "cv01";
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(var(--accent-rgb), 0.3); }

h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.08; font-weight: 600; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px 1px rgba(var(--accent-rgb), 0.9);
}

/* ---------- wordmark + mark ---------- */
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 24px; width: auto; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: all 0.22s var(--ease);
}
.btn-primary {
  background: var(--accent); color: var(--on-accent); border-color: var(--accent);
  box-shadow: 0 8px 26px -10px rgba(var(--accent-rgb), 0.7);
}
.btn-primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); box-shadow: 0 12px 34px -10px rgba(var(--accent-rgb), 0.85); transform: translateY(-1px); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-3); border-color: #34343f; }
.btn-block { width: 100%; }
.btn.loading { color: transparent; pointer-events: none; position: relative; }
.btn.loading::after {
  content: ""; position: absolute; width: 16px; height: 16px;
  border: 2px solid rgba(10, 10, 15, 0.35); border-top-color: var(--on-accent);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- nav ---------- */
.main-nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.main-nav.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-links { display: none; align-items: center; gap: 30px; }
.nav-link { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* language toggle */
.lang-toggle { position: relative; }
.lang-toggle-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2);
  font: 600 13px var(--font); padding: 8px 12px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle-trigger:hover { color: var(--text); border-color: #34343f; }
.lang-toggle-trigger svg { width: 14px; height: 14px; opacity: 0.7; }
.lang-popover {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 6px; box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 60;
}
.lang-toggle.open .lang-popover { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  background: transparent; border: 0; color: var(--text-2); cursor: pointer;
  font: 500 14px var(--font); padding: 9px 11px; border-radius: 8px; text-align: left;
}
.lang-option:hover { background: var(--surface-3); color: var(--text); }
.lang-option.active { color: var(--text); }
.lang-popover-check { opacity: 0; color: var(--accent); }
.lang-popover-check.visible { opacity: 1; }

/* burger + mobile menu */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0 9px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.burger span { height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.burger-open span:nth-child(2) { opacity: 0; }
.burger.burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 68px 0 0; z-index: 49;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-size: 18px; font-weight: 500; color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.section-pad { padding: 92px 0; }
.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 42px); margin: 16px 0 14px; }
.section-head p { color: var(--text-2); font-size: 17px; }
.sub { color: var(--text-2); }

/* ---------- hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(40px, 7vw, 68px); margin: 20px 0 22px; letter-spacing: -0.035em; }
.hero-copy h1 .o { color: var(--accent); font-style: normal; }
.hero-lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-2); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent); }

/* store download badges (official App Store / Google Play SVGs) */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badge-link { display: inline-flex; border-radius: 12px; transition: transform 0.2s var(--ease), opacity 0.2s; }
.store-badge-link:hover { transform: translateY(-2px); opacity: 0.88; }
.store-badge-link img { display: block; height: 50px; width: auto; }
.store-badge-link.gp img { height: 50px; } /* Google badge carries its own clearspace */
.store-badges-lg { justify-content: center; margin-top: 30px; }
.store-badges-lg .store-badge-link img { height: 54px; }

/* hero visual — fanned loyalty cards over a glow */
.hero-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.hero-stage::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.30), transparent 62%);
  filter: blur(24px); z-index: 0;
}
.card-fan { position: relative; z-index: 1; width: 340px; height: 380px; }
.card-fan .lcard { position: absolute; left: 0; right: 0; margin: 0 auto; }
.card-fan .lcard:nth-child(1) { top: 158px; transform: rotate(-7deg) translateX(-30px); opacity: 0.7; filter: saturate(0.92); }
.card-fan .lcard:nth-child(2) { top: 82px; transform: rotate(4deg) translateX(26px); opacity: 0.88; }
.card-fan .lcard:nth-child(3) { top: 6px; transform: rotate(-2deg); animation: floatCard 6s ease-in-out infinite; }

@keyframes floatCard { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }

/* ---------- loyalty card component (charte v6 — brand is the hero) ---------- */
.lcard {
  position: relative; width: 340px; aspect-ratio: 1.585 / 1; border-radius: var(--r-card); padding: 20px;
  overflow: hidden; isolation: isolate;
  background: linear-gradient(160deg, #1E1E2A, #131320); border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; justify-content: space-between;
}
.lcard::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%);
}
.lcard > * { position: relative; z-index: 1; }
.lc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.lc-id { display: flex; align-items: center; gap: 11px; }
.lc-logo {
  width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  font-weight: 700; font-size: 18px; color: #fff;
  background: var(--brand, #2A6FDB); box-shadow: 0 0 26px -4px var(--brand, #2A6FDB);
}
.lc-brand { font-weight: 600; font-size: 16px; color: #F5F5F7; letter-spacing: -0.01em; }
.lc-sub { font-size: 12px; color: var(--text-3); font-family: var(--mono); margin-top: 2px; }
.lc-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.lc-num { font-family: var(--mono); font-size: 15px; letter-spacing: 0.14em; color: var(--text-2); }
.lc-points {
  display: inline-flex; align-items: baseline; gap: 4px;
  background: rgba(var(--accent-rgb), 0.16); color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 4px 10px; border-radius: 999px; font-family: var(--mono); font-size: 13px; font-weight: 500;
}
.lc-points b { font-size: 15px; }
.lc-state {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 500; font-family: var(--mono);
  background: var(--surface); border: 1px solid var(--line); color: var(--text-2);
}
.lc-state .led { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); }
.lc-state.synced { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 35%, transparent); }
.lc-state.synced .led { background: var(--ok); box-shadow: 0 0 8px var(--ok); }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 26px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-2); }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-surface); padding: 28px;
}
.step-num {
  font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px; padding: 3px 10px; display: inline-block;
}
.step h3 { font-size: 19px; margin: 16px 0 9px; }
.step p { color: var(--text-2); font-size: 14.5px; }

/* ---------- features grid ---------- */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-surface);
  padding: 26px; transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.feat:hover { border-color: #34343f; transform: translateY(-3px); background: var(--surface-2); }
.feat-ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.26); margin-bottom: 16px;
}
.feat-ic svg { width: 22px; height: 22px; color: var(--accent); }
.feat h3 { font-size: 17px; margin-bottom: 8px; }
.feat p { color: var(--text-2); font-size: 14px; }

/* ---------- security section ---------- */
.security { overflow: hidden; }
.security::before {
  content: ""; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), transparent 65%);
  filter: blur(30px); z-index: 0; pointer-events: none;
}
.security .wrap { position: relative; z-index: 1; }
.sec-panel {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 44px;
}
.sec-points { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 34px; }
.sec-point { display: flex; gap: 14px; }
.sec-point .sp-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-3); border: 1px solid var(--line); }
.sec-point .sp-ic svg { width: 19px; height: 19px; color: var(--accent); }
.sec-point h3 { font-size: 16px; margin-bottom: 5px; }
.sec-point p { color: var(--text-2); font-size: 13.5px; }
.sec-quote {
  margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--hairline);
  font-size: 15px; color: var(--text-2);
}
.sec-quote b { color: var(--text); font-weight: 600; }

/* ---------- brands (two-sided) ---------- */
.brands-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.brands-list { display: grid; gap: 16px; }
.brand-point { display: flex; gap: 13px; align-items: flex-start; }
.brand-point svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }
.brand-point h3 { font-size: 16px; margin-bottom: 4px; }
.brand-point p { color: var(--text-2); font-size: 14px; }
.brands-visual {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px; box-shadow: var(--shadow-card);
}
.tier { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.tier:last-child { border-bottom: 0; }
.tier-badge {
  flex: none; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px; background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.tier h4 { margin: 0 0 2px; font-size: 14.5px; font-weight: 600; }
.tier p { margin: 0; font-size: 13px; color: var(--text-2); }

/* ---------- faq ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: transparent; border: 0; cursor: pointer; color: var(--text);
  font: 600 16.5px var(--font); text-align: left; padding: 22px 40px 22px 0;
  position: relative; display: block;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--accent); transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 40px 24px 0; color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* ---------- waitlist CTA ---------- */
.waitlist { padding: 96px 0; }
.waitlist-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 26px; padding: 64px 32px;
}
.waitlist-card::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 540px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28), transparent 64%);
  filter: blur(26px);
}
.waitlist-card > * { position: relative; z-index: 1; }
.waitlist-card h2 { font-size: clamp(28px, 4.6vw, 44px); margin: 18px 0 14px; }
.waitlist-card p { color: var(--text-2); font-size: 17px; max-width: 480px; margin: 0 auto; }
.waitlist-fine { margin-top: 22px; font-size: 12px; color: var(--text-3); }

/* ---------- footer ---------- */
.site-footer { margin-top: auto; border-top: 1px solid var(--hairline); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-3); font-size: 14px; max-width: 300px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-meta {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  padding-top: 28px; border-top: 1px solid var(--hairline);
}
.footer-meta p { font-size: 13px; color: var(--text-3); }
.footer-made { display: inline-flex; align-items: center; gap: 6px; }
.footer-made svg { width: 14px; height: 14px; color: var(--accent); }
.footer-lang { display: inline-flex; gap: 4px; }
.footer-lang a { width: 34px; height: 30px; display: grid; place-items: center; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--text-3); }
.footer-lang a.lang-active { background: var(--surface-3); color: var(--text); }

/* ---------- reveal animations ---------- */
.animate-up { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.animate-up.visible { opacity: 1; transform: translateY(0); }
.animate-scale { opacity: 0; transform: scale(0.97); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-scale.visible { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .animate-up, .animate-scale, .card-fan .lcard:nth-child(3) { animation: none !important; transition: none !important; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.mobile-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-cta .btn { box-shadow: 0 14px 40px -10px rgba(var(--accent-rgb), 0.8); }

/* ---------- contact modal ---------- */
.field { background: var(--bg); border: 1px solid var(--line); color: var(--text); font: 400 15px var(--font); padding: 13px 15px; border-radius: 11px; outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
.field::placeholder { color: var(--text-3); }
.field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.22); }
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative; width: 100%; max-width: 460px; max-height: calc(100vh - 40px); overflow-y: auto;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 22px; padding: 38px 32px; box-shadow: var(--shadow-card);
  transform: translateY(12px) scale(0.98); transition: transform 0.25s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal h2 { font-size: 26px; margin: 14px 0 8px; }
.modal .sub { font-size: 15px; margin-bottom: 22px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 9px;
  background: var(--surface-3); border: 1px solid var(--line); color: var(--text-2);
  font-size: 22px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--text); background: #2c2c38; }
.contact-fields { display: flex; flex-direction: column; gap: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.modal textarea.field { resize: vertical; min-height: 110px; line-height: 1.5; }
.contact-fields .form-msg { display: none; margin-top: 2px; font-size: 13px; color: var(--warn); }
.contact-success { display: none; text-align: center; padding: 10px 0; }
.contact-success .fs-ic { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: rgba(var(--accent-rgb), 0.16); border: 1px solid rgba(var(--accent-rgb), 0.4); }
.contact-success .fs-ic svg { width: 26px; height: 26px; color: var(--accent); }
.contact-success p { color: var(--text); font-size: 16px; font-weight: 500; }

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] .faq-q { padding: 22px 0 22px 40px; text-align: right; }
[dir="rtl"] .faq-q::after { right: auto; left: 6px; }
[dir="rtl"] .faq-a-inner { padding: 0 0 24px 40px; }
[dir="rtl"] .lang-popover { right: auto; left: 0; }
[dir="rtl"] .eyebrow,
[dir="rtl"] .step-num,
[dir="rtl"] .tier-badge,
[dir="rtl"] .footer-col-title { letter-spacing: normal; }
[dir="rtl"] .lcard { direction: ltr; text-align: left; }
[dir="rtl"] .modal-close { right: auto; left: 16px; }

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-meta { flex-direction: row; align-items: center; justify-content: space-between; }
  .field-row { flex-wrap: nowrap; }
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
  .burger, .mobile-cta { display: none; }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 84px 0 56px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .sec-points { grid-template-columns: repeat(2, 1fr); gap: 26px 40px; }
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .section-pad { padding: 110px 0; }
}
@media (max-width: 879px) {
  .nav-actions .lang-toggle { display: none; }
}
