/* ========================================
   NIXXFIX — PREMIUM DESIGN SYSTEM v3
   Brand color: #FFE500 | Font: Urbanist
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* ── Brand Yellow ── */
  --y:          #FFE500;
  --y-dark:     #CCB800;          /* pressed / text on light */
  --y-deeper:   #A89500;          /* label text */
  --y-dim:      rgba(255,229,0,0.13);
  --y-border:   rgba(255,229,0,0.30);
  --y-glow:     0 8px 32px rgba(255,229,0,0.28);
  --y-glow-lg:  0 16px 48px rgba(255,229,0,0.36);

  /* backward-compat aliases used throughout pages */
  --amber:        var(--y);
  --amber-90:     #FFE933;
  --amber-dim:    var(--y-dim);
  --amber-border: var(--y-border);
  --amber-glow:   var(--y-glow);

  /* ── Dark Surfaces (ink = near-black navy) ── */
  --ink:   #0C1520;
  --ink-2: #111D2C;
  --ink-3: #182436;
  --ink-4: #1E2F42;

  /* ── Neutral text ── */
  --slate:       #8597AA;
  --slate-light: #B8C6D1;

  /* ── Light surfaces ── */
  --mist:  #F0F3F7;
  --white: #FFFFFF;

  /* ── Dark borders ── */
  --b1: rgba(255,255,255,0.06);
  --b2: rgba(255,255,255,0.10);
  --b3: rgba(255,255,255,0.18);

  /* ── Light borders ── */
  --lb1: rgba(12,21,32,0.06);
  --lb2: rgba(12,21,32,0.11);

  /* ── Shadows ── */
  --s1: 0 2px 8px  rgba(12,21,32,0.06);
  --s2: 0 6px 24px rgba(12,21,32,0.09);
  --s3: 0 16px 48px rgba(12,21,32,0.13);
  --s4: 0 32px 80px rgba(12,21,32,0.18);

  /* ── Radii ── */
  --r1: 8px;
  --r2: 14px;
  --r3: 22px;
  --r4: 32px;
  --r5: 48px;

  /* ── Typography ── */
  --f: 'Urbanist', sans-serif;

  /* ── Easing ── */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--f); }
ul   { list-style: none; }
input, textarea, select { font-family: var(--f); }

/* ===== LAYOUT ===== */
.wrap      { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1360px; margin: 0 auto; padding: 0 20px; }
section { padding: 96px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6vw, 82px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--slate); line-height: 1.72; font-size: 16px; }

/* ── Label pill ── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--y-dim); border: 1px solid var(--y-border);
  color: var(--y-deeper);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.label::before {
  content: ''; width: 5px; height: 5px;
  background: var(--y); border-radius: 50%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 100px;
  font-family: var(--f); font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  transition: all 0.28s var(--ease);
  position: relative; overflow: hidden;
}

/* Primary — yellow */
.btn-amber {
  background: var(--y);
  color: var(--ink);
  box-shadow: var(--y-glow);
}
.btn-amber::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.btn-amber:hover  { transform: translateY(-2px); box-shadow: var(--y-glow-lg); }
.btn-amber:hover::after { opacity: 1; }
.btn-amber:active { transform: translateY(0); }

/* Ghost on dark */
.btn-ghost-dark {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1.5px solid var(--b3);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.30); }

/* Ghost on light */
.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--lb2);
}
.btn-ghost-light:hover { background: var(--mist); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ===== NAVBAR ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 8px 0;          /* tight — logo height controls bar height */
  transition: all 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(12,21,32,0.90);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  padding: 6px 0;
  border-bottom: 1px solid var(--b1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* Logo — big, no top/bottom dead space */
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  line-height: 0;   /* kills inline-block gap under img */
}
.nav-logo img {
  height: 160px;          /* prominent logo size */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin: -40px; padding: 0;
}
/* fallback text logo (shown if img missing) */
.nav-logo-fallback {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f); font-size: 20px; font-weight: 900;
  color: var(--white); letter-spacing: -0.04em;
}
.nav-logo-box {
  width: 34px; height: 34px; background: var(--y); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-fallback em { font-style: normal; color: var(--y); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.nav-links a:hover   { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active  { color: var(--y); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-right .btn { padding: 9px 20px; font-size: 14px; }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; width: 30px; cursor: pointer; }
.ham span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--ink); flex-direction: column;
  padding: 80px 32px 40px; gap: 6px;
}
.mob-menu.open { display: flex; }
.mob-logo {
  position: absolute; top: 22px; left: 32px;
}
.mob-logo img { height: 36px; width: auto; }
.mob-menu a {
  font-family: var(--f); font-size: 26px; font-weight: 800;
  color: rgba(255,255,255,0.45); padding: 10px 0;
  border-bottom: 1px solid var(--b1);
  transition: color 0.2s; letter-spacing: -0.03em;
}
.mob-menu a:hover { color: var(--y); }
.mob-close {
  position: absolute; top: 22px; right: 28px;
  color: var(--white); font-size: 26px; cursor: pointer;
  background: none; border: none;
}
.mob-cta { margin-top: 24px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--ink); position: relative; overflow: hidden;
  padding-top: 90px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,229,0,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(24,36,54,0.9) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 60px 0 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,229,0,0.10); border: 1px solid rgba(255,229,0,0.28);
  color: var(--y); padding: 7px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--y); }
.hero-h1  { color: var(--white); margin-bottom: 22px; max-width: 780px; animation: fadeUp 0.9s 0.3s var(--ease) both; }
.hero-h1 em { font-style: normal; color: var(--y); }
.hero-sub  { font-size: 18px; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; margin-bottom: 44px; animation: fadeUp 0.9s 0.45s var(--ease) both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp 0.9s 0.6s var(--ease) both; }
.hero-trust   { display: flex; gap: 32px; flex-wrap: wrap; animation: fadeUp 0.9s 0.75s var(--ease) both; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--y); font-size: 13px;
}
.hero-trust-label { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.3; }
.hero-trust-label strong { display: block; color: rgba(255,255,255,0.85); font-weight: 700; }

/* ===== SECTION HEADERS ===== */
.sec-header { margin-bottom: 60px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-lead { margin: 14px auto 0; max-width: 560px; }
.sec-title      { color: var(--ink); margin-bottom: 0; }
.sec-title.light{ color: var(--white); }
.sec-lead       { font-size: 17px; color: var(--slate); line-height: 1.72; margin-top: 14px; max-width: 540px; }
.sec-lead.light { color: rgba(255,255,255,0.50); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border: 1px solid var(--lb1);
  border-radius: var(--r3); padding: 32px;
  transition: all 0.3s var(--ease);
}
.card:hover { box-shadow: var(--s3); transform: translateY(-4px); border-color: var(--lb2); }

.card-dark  { background: var(--ink-3); border: 1px solid var(--b1); }
.card-dark:hover { border-color: var(--b2); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

.card-mist  { background: var(--mist); border: 1px solid var(--lb1); }
.card-mist:hover { box-shadow: var(--s2); transform: translateY(-3px); }

/* ===== ICON BOXES ===== */
.icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--y-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--y-dark); font-size: 22px; margin-bottom: 18px;
  transition: all 0.3s var(--ease-spring);
}
.card:hover .icon-box,
.card-dark:hover .icon-box,
.card-mist:hover .icon-box {
  background: rgba(255,229,0,0.22);
  transform: scale(1.1);
}
.icon-box-dark { background: rgba(255,229,0,0.08); color: var(--y); }

/* ===== STATS ===== */
.stat-num { font-size: 44px; font-weight: 900; color: var(--ink); letter-spacing: -0.05em; line-height: 1; }
.stat-num span { color: var(--y); }
.stat-num.light { color: var(--white); }
.stat-label { font-size: 14px; color: var(--slate); margin-top: 5px; font-weight: 600; }

/* ===== DIVIDERS ===== */
.divider      { border: none; border-top: 1px solid var(--lb1); margin: 0; }
.divider-dark { border-top-color: var(--b1); }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.check-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink); font-weight: 500;
}
.check-row::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--y-dim); color: var(--y-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; margin-top: 2px;
}

/* ===== STORE BUTTONS ===== */
.store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px 24px; color: var(--white);
  transition: all 0.28s var(--ease);
}
.store-btn:hover { background: rgba(255,229,0,0.10); border-color: rgba(255,229,0,0.38); }
.store-btn i { font-size: 26px; }
.store-btn-text small  { display: block; font-size: 11px; opacity: 0.5; font-weight: 400; }
.store-btn-text strong { display: block; font-size: 16px; font-weight: 800; }

.store-btn-light { background: var(--mist); border-color: var(--lb1); color: var(--ink); }
.store-btn-light:hover { background: var(--white); border-color: rgba(255,229,0,0.40); box-shadow: var(--s2); }
.store-btn-light .store-btn-text small  { color: var(--slate); opacity: 1; }
.store-btn-light .store-btn-text strong { color: var(--ink); }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white); border: 1px solid var(--lb1);
  border-radius: var(--r2); overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: rgba(255,229,0,0.35); box-shadow: var(--s2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--ink);
  user-select: none; gap: 16px;
}
.faq-q i { color: var(--y-dark); font-size: 12px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  font-size: 15px; color: var(--slate); line-height: 1.72; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== TESTIMONIALS ===== */
.testi {
  background: var(--mist); border: 1px solid var(--lb1);
  border-radius: var(--r3); padding: 28px;
  transition: all 0.3s var(--ease);
}
.testi:hover { box-shadow: var(--s3); transform: translateY(-4px); border-color: rgba(255,229,0,0.22); }
.testi-stars  { color: var(--y-dark); font-size: 14px; margin-bottom: 14px; }
.testi-text   { font-size: 15px; line-height: 1.72; font-style: italic; margin-bottom: 20px; color: var(--ink); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--lb1); flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name   { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.testi-role   { font-size: 12px; color: var(--slate); font-weight: 500; }

/* ===== MARQUEE ===== */
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left:  0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
.marquee-dark::before { background: linear-gradient(to right, var(--ink), transparent); }
.marquee-dark::after  { background: linear-gradient(to left,  var(--ink), transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ===== CTA BANNER ===== */
.cta-band {
  background: var(--ink); border-radius: var(--r4); padding: 72px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cta-band::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,0,0.14), transparent 70%);
}
.cta-band::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,0,0.07), transparent 70%);
}
.cta-band-text h2  { color: var(--white); margin-bottom: 10px; }
.cta-band-text p   { color: rgba(255,255,255,0.50); font-size: 16px; max-width: 480px; }
.cta-band-actions  { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
footer { background: var(--ink); padding: 80px 0 0; border-top: 1px solid var(--b1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 60px; }

.footer-logo-img { height: 170px; width: auto; max-width: 280px; object-fit: contain; margin-bottom: -20px; 
  margin-left: -20px;
  margin-top: -40px;

  
  display: block; }

/* fallback text logo */
.footer-logo-text {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f); font-size: 20px; font-weight: 900;
  color: var(--white); letter-spacing: -0.04em; margin-bottom: 14px;
}
.footer-logo-box { width: 34px; height: 34px; background: var(--y); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: var(--ink); }
.footer-logo-text em { font-style: normal; color: var(--y); }

.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.40); line-height: 1.72; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 13px;
  transition: all 0.25s var(--ease);
}
.soc-btn:hover { background: rgba(255,229,0,0.14); color: var(--y); border-color: rgba(255,229,0,0.32); }

.footer-col h6 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--y); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.40); margin-bottom: 10px; }
.footer-contact-row i { color: var(--y-dark); margin-top: 2px; flex-shrink: 0; font-size: 13px; }

.footer-bottom { border-top: 1px solid var(--b1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--y); }

/* ===== BACK TO TOP ===== */
#btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--y); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all 0.3s var(--ease); box-shadow: var(--y-glow);
}
#btt.on { opacity: 1; pointer-events: auto; transform: translateY(0); }
#btt:hover { transform: translateY(-3px); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--ink); padding: 170px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,0,0.10), transparent 65%);
}
.page-hero-title { color: var(--white); max-width: 640px; }
.page-hero-sub   { font-size: 18px; color: rgba(255,255,255,0.50); max-width: 520px; margin-top: 16px; line-height: 1.72; }

/* ===== LEGAL PAGES ===== */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 80px 32px 100px; }
.legal-wrap h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; }
.legal-date { font-size: 14px; color: var(--slate); margin-bottom: 48px; font-weight: 500; }
.legal-wrap h2 { font-size: 22px; color: var(--ink); margin: 44px 0 12px; }
.legal-wrap h3 { font-size: 17px; color: var(--ink); margin: 28px 0 8px; }
.legal-wrap p  { font-size: 15px; color: #4A5568; line-height: 1.8; margin-bottom: 16px; }
.legal-wrap ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-wrap ul li { font-size: 15px; color: #4A5568; line-height: 1.7; list-style: disc; padding-left: 4px; }
.legal-divider { border: none; border-top: 1px solid var(--lb1); margin: 44px 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes float    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(255,229,0,0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(255,229,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,229,0,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band    { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .ham { display: flex; }
  .wrap, .wrap-wide { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-band { padding: 44px 28px; }
  .hero-h1 { font-size: clamp(36px, 8vw, 60px); }
  h2 { font-size: clamp(28px, 6vw, 44px); }
  .nav-logo img { height: 56px; max-width: 180px; }
}
@media (max-width: 480px) {
  .hero-actions      { flex-direction: column; }
  .hero-trust        { flex-direction: column; gap: 16px; }
  .cta-band-actions  { flex-direction: column; }
}

/* ===== UTILITY GRID & HELPERS ===== */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center  { text-align: center; }
.text-amber   { color: var(--y); }
.text-white   { color: var(--white); }
.text-slate   { color: var(--slate); }
.bg-ink       { background: var(--ink); }
.bg-mist      { background: var(--mist); }
.bg-white     { background: var(--white); }
.rounded-full { border-radius: 100px; }
.w-full       { width: 100%; }
.img-cover    { width: 100%; height: 100%; object-fit: cover; }
.mt-4  { margin-top: 16px; }  .mt-6 { margin-top: 24px; }  .mt-8 { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 20px; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-sm { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .grid-2-sm { grid-template-columns: 1fr !important; }
}