/* ============================================================
   NowForce AI — Master Design System v5.0
   Palette: Matte Black + Champagne Gold (Neumorphism / Soft UI)
   Fonts: Plus Jakarta Sans (display) + Inter (body) + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --black:    #0a0f2e;
  --black2:   #0d1535;
  --black3:   #101a3d;
  --black4:   #141f45;
  --surface:  #172248;
  --surface2: #1c2a55;
  --surface3: #203060;

  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark:  #a8863a;
  --gold-dim:   rgba(201,168,76,0.07);
  --gold-mid:   rgba(201,168,76,0.15);
  --gold-glow:  rgba(201,168,76,0.35);

  --white:  #eef2ff;
  --white2: #c5cce8;
  --grey:   #7a85a8;
  --grey2:  #4a5578;
  --grey3:  #2a3160;
  --green:  #4ade80;
  --red:    #f87171;

  --neu-shadow: 8px 8px 24px rgba(5,8,25,0.7), -4px -4px 14px rgba(100,130,255,0.04);
  --neu-inset:  inset 4px 4px 12px rgba(5,8,25,0.55), inset -3px -3px 8px rgba(100,130,255,0.04);
  --neu-hover:  12px 12px 32px rgba(5,8,25,0.75), -6px -6px 20px rgba(100,130,255,0.06), 0 0 0 1px rgba(201,168,76,0.18);

  --glass-bg:  rgba(22,22,22,0.6);
  --border:    rgba(201,168,76,0.1);
  --border2:   rgba(201,168,76,0.22);
  --border3:   rgba(201,168,76,0.35);

  --fh: 'Plus Jakarta Sans', sans-serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fm: 'JetBrains Mono', monospace;

  --r:    10px;
  --rl:   18px;
  --rxl:  28px;
  --rxxl: 42px;

  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --shadow:    0 12px 48px rgba(5,8,25,0.75);
  --shadow-lg: 0 24px 80px rgba(5,8,25,0.85);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg,var(--gold),#2a4fcc); border-radius: 3px; }
::selection { background: rgba(201,168,76,0.22); color: var(--white); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--fh); line-height: 1.1; letter-spacing: -0.03em; color: var(--white); font-weight: 700; }
h1 { font-size: clamp(3rem,6.5vw,5.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem,4.5vw,3.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem,2vw,1.55rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--grey); font-size: .97rem; line-height: 1.88; font-weight: 400; }
a  { text-decoration: none; color: inherit; }

.gold      { color: var(--gold); }
.gold-grad {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text;
}
.label {
  font-family: var(--fm); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center;
  gap: .6rem; margin-bottom: 1.2rem;
}
.label::before { content:''; width:28px; height:1px; background:linear-gradient(90deg,var(--gold),transparent); }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 7rem 0; position: relative; }
.section-sm{ padding: 4rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── NEUMORPHIC CARD ── */
.neu-card {
  background: var(--surface);
  border-radius: var(--rxl);
  box-shadow: var(--neu-shadow);
  border: 1px solid var(--border);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .3s;
}
.neu-card:hover { box-shadow: var(--neu-hover); transform: translateY(-4px); border-color: var(--border2); }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid var(--border2);
  border-radius: var(--rxl);
  box-shadow: var(--shadow);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fb); font-weight: 600; font-size: .875rem;
  padding: .9rem 2.2rem; border-radius: var(--r);
  transition: all .3s var(--ease); cursor: pointer; border: none;
  letter-spacing: .03em; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg,var(--gold-light),var(--gold),var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,.28), var(--neu-shadow);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(201,168,76,.5), 0 2px 8px rgba(0,0,0,.5); }
.btn-outline {
  background: transparent; color: var(--white2);
  border: 1px solid var(--border2); box-shadow: var(--neu-shadow);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); transform: translateY(-3px); box-shadow: var(--neu-hover); }
.btn-ghost { background: transparent; color: var(--gold); padding-left: 0; }
.btn-ghost:hover { gap: .8rem; }
.btn-lg  { padding: 1.1rem 3rem; font-size: 1rem; }
.btn-sm  { padding: .55rem 1.4rem; font-size: .8rem; }
.btn-group { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.btn-pulse { animation: goldPulse 3s ease-in-out infinite; }
@keyframes goldPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(201,168,76,.3),var(--neu-shadow); }
  50%      { box-shadow: 0 6px 48px rgba(201,168,76,.6),0 2px 8px rgba(0,0,0,.5); }
}

/* ── SCROLL PROGRESS ── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg,var(--gold-light),var(--gold));
  z-index: 9997; width: 0; transition: width .1s;
}

/* ── CURSORS ── */
.cursor-dot  { width:7px;height:7px;border-radius:50%;background:var(--gold);position:fixed;top:0;left:0;z-index:99998;pointer-events:none;transform:translate(-50%,-50%);box-shadow:0 0 10px var(--gold); }
.cursor-ring { width:34px;height:34px;border-radius:50%;border:1px solid rgba(201,168,76,.4);position:fixed;top:0;left:0;z-index:99997;pointer-events:none;transform:translate(-50%,-50%);transition:width .25s,height .25s,opacity .25s; }
.cursor-ring.hov { width:52px;height:52px;border-color:var(--gold);background:rgba(201,168,76,.05); }
@media(hover:none){ .cursor-dot,.cursor-ring{ display:none; } }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
#preloader.done { opacity:0; pointer-events:none; transition:opacity .8s ease .2s; }
.pre-logo-img {
  max-width: 140px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201,168,76,.6)) brightness(1.1);
  animation: preLogoPulse 1.6s ease-in-out infinite alternate;
}
@keyframes preLogoPulse {
  from { filter: drop-shadow(0 0 12px rgba(201,168,76,.4)) brightness(1); }
  to   { filter: drop-shadow(0 0 28px rgba(201,168,76,.9)) brightness(1.15); }
}
.pre-bar { width:200px; height:1px; background:var(--grey3); border-radius:2px; overflow:hidden; }
.pre-fill { height:100%; background:linear-gradient(90deg,var(--gold-light),var(--gold)); width:0; border-radius:2px; animation:preLoad 1.8s var(--ease) forwards; }
@keyframes preLoad { to{ width:100%; } }

/* ── NAVBAR ── */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; transition:all .4s var(--ease); }
#navbar.scrolled {
  background: rgba(13,13,13,.93);
  backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1280px; margin:0 auto; padding:0 2rem; height:74px;
}
.logo {
  display:flex; align-items:center; gap:.6rem;
  font-family:var(--fh); font-weight:800; font-size:1.25rem;
  color:var(--white); letter-spacing:-.04em;
}
.logo-mark {
  width:40px; height:40px; border-radius:11px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold),var(--gold-dark));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--fh); font-size:1.1rem; font-weight:900; color:var(--black);
  flex-shrink:0; box-shadow:0 4px 20px rgba(201,168,76,.35);
}
.logo .ai { color:var(--gold); }
/* ── LOGO IMAGE ─────────────────────────────────────────────── */
/* ── LOGO TREATMENT: Mark + Wordmark ── */
.logo-mark-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.5));
  transition: filter .3s ease;
}
.logo:hover .logo-mark-img {
  filter: drop-shadow(0 0 16px rgba(201,168,76,.8));
}
.logo-wordmark {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}
.logo-ai {
  color: var(--gold);
  margin-left: .1em;
}
@media (max-width: 600px) {
  .logo-wordmark { display: none; }
  .logo-mark-img { height: 32px; }
}
.logo-text {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -.04em;
}
.logo-text .ai { color: var(--gold); }

.nav-links { display:flex; list-style:none; gap:.15rem; align-items:center; }
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:flex; align-items:center; gap:.3rem;
  padding:.5rem .9rem; border-radius:var(--r);
  font-family:var(--fb); font-size:.85rem; font-weight:500;
  color:var(--white2); transition:all .2s; white-space:nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color:var(--gold); background:var(--gold-dim); }
.chv { font-size:.55rem; opacity:.5; transition:transform .2s; }
.nav-links > li:hover .chv { transform:rotate(180deg); }

/* Dropdown — gap-bridge fix */
.dropdown {
  position:absolute; top:100%; left:50%;
  padding-top:.6rem;
  min-width:230px; opacity:0; pointer-events:none;
  transform:translateX(-50%) translateY(-6px);
  transition:opacity .22s,transform .22s var(--ease);
  z-index:100;
}
.dropdown-inner {
  background:var(--surface2);
  border:1px solid var(--border2);
  border-radius:var(--rxl); padding:.7rem;
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.nav-links > li:hover .dropdown { opacity:1; pointer-events:all; transform:translateX(-50%) translateY(0); }
.dropdown a {
  display:block; padding:.6rem 1rem; border-radius:var(--r);
  font-family:var(--fb); font-size:.84rem; color:var(--grey);
  transition:all .15s; white-space:nowrap;
}
.dropdown a:hover { color:var(--gold); background:var(--gold-dim); }

.nav-cta { display:flex; align-items:center; gap:.9rem; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:.4rem; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position:fixed; inset:0; z-index:999;
  background:var(--black);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:1.5rem; opacity:0; pointer-events:none; transition:opacity .35s;
}
.mobile-nav.open { opacity:1; pointer-events:all; }
.mobile-nav a { font-family:var(--fh); font-size:1.8rem; font-weight:700; color:var(--white2); transition:color .2s; }
.mobile-nav a:hover { color:var(--gold); }
.mobile-close-btn { position:absolute; top:1.5rem; right:2rem; background:none; border:none; color:var(--grey); font-size:1.5rem; cursor:pointer; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 46vh;
  display: flex; align-items: center;
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.07), transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(40,70,220,0.1), transparent 60%),
    var(--black2);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(201,168,76,0.04) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 100%, black 20%, transparent 80%);
}
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(2.4rem,5.5vw,4.8rem); margin-bottom:1.2rem; }
.page-hero p { max-width:620px; margin:0 auto; font-size:1.05rem; }
.page-hero .label { justify-content:center; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height:1px; background:linear-gradient(90deg,transparent,var(--border2),transparent);
  margin:0; border:none;
}

/* ── STAT BAR ── */
.stats-bar {
  background:var(--black2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stat-bar-item {
  padding:3.5rem 2rem; text-align:center;
  border-right:1px solid var(--border);
}
.stat-bar-item:last-child { border-right:none; }
.stat-bar-num { font-family:var(--fh); font-size:clamp(2.5rem,4.5vw,4rem); font-weight:900; color:var(--gold); letter-spacing:-.05em; line-height:1; margin-bottom:.5rem; }
.stat-bar-label { font-family:var(--fm); font-size:.68rem; color:var(--grey2); text-transform:uppercase; letter-spacing:.15em; }

/* ── FEATURE CARD ── */
.feat-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--rxl); padding:2rem;
  box-shadow:var(--neu-shadow);
  transition:box-shadow .4s,transform .4s,border-color .3s;
}
.feat-card:hover { box-shadow:var(--neu-hover); transform:translateY(-4px); border-color:var(--border2); }
.feat-icon {
  width:46px; height:46px; border-radius:12px;
  background:var(--gold-dim); border:1px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.2rem; box-shadow:var(--neu-shadow);
}
.feat-icon svg { width:20px; height:20px; stroke:var(--gold); stroke-width:1.5; fill:none; }
.feat-card h3 { font-size:1.05rem; margin-bottom:.5rem; }
.feat-card p  { font-size:.86rem; }

/* ── PROCESS STEP ── */
.process-step {
  padding:2.2rem 1.8rem; background:var(--surface);
  border:1px solid var(--border); position:relative;
  transition:background .3s,border-color .3s;
}
.process-step:hover { background:var(--surface2); border-color:var(--border2); }
.process-num { font-family:var(--fh); font-size:2.5rem; font-weight:900; color:var(--border2); letter-spacing:-.04em; line-height:1; margin-bottom:1rem; }
.process-step:hover .process-num { color:var(--gold); }
.process-step h4 { font-size:1rem; margin-bottom:.4rem; }
.process-step p  { font-size:.82rem; }

/* ── PHOTO CARD (with overlay) ── */
.photo-card { position:relative; border-radius:var(--rxl); overflow:hidden; cursor:pointer; box-shadow:var(--neu-shadow); border:1px solid var(--border); transition:box-shadow .4s,transform .4s,border-color .3s; }
.photo-card:hover { box-shadow:var(--neu-hover); transform:translateY(-4px); border-color:var(--border2); }
.photo-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.6) brightness(.65); transition:filter .6s,transform .7s; display:block; }
.photo-card:hover img { filter:saturate(.85) brightness(.75); transform:scale(1.05); }
.photo-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,13,13,.92) 0%,rgba(13,13,13,.25) 55%,transparent 100%); }
.photo-content { position:absolute; bottom:0; left:0; right:0; padding:1.8rem; }
.photo-tag {
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:var(--fm); font-size:.62rem;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold); background:rgba(201,168,76,.1);
  border:1px solid rgba(201,168,76,.2);
  padding:.28rem .7rem; border-radius:100px;
  margin-bottom:.75rem;
}
.photo-content h3 { font-size:1.1rem; margin-bottom:.4rem; color:var(--white); }
.photo-content p  { font-size:.82rem; color:rgba(255,255,255,.55); line-height:1.65; margin-bottom:.9rem; }

/* ── ACCORDION ── */
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-trigger {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:1.5rem 0; background:none; border:none; cursor:pointer;
  font-family:var(--fh); font-size:1rem; font-weight:600;
  color:var(--white2); text-align:left; gap:1rem; transition:color .2s;
}
.accordion-trigger:hover { color:var(--gold); }
.acc-icon {
  width:28px; height:28px; border-radius:7px;
  background:var(--surface); border:1px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--gold); flex-shrink:0;
  transition:transform .3s,background .2s; box-shadow:var(--neu-shadow);
}
.accordion-item.open .acc-icon { transform:rotate(45deg); background:var(--gold-dim); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.accordion-body-inner { padding:0 0 1.5rem; font-size:.9rem; color:var(--grey); line-height:1.82; }

/* ── TESTIMONIAL ── */
.t-card {
  flex:0 0 380px; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--rxl);
  padding:2rem; box-shadow:var(--neu-shadow); position:relative;
}
.t-card::before { content:'"'; position:absolute; top:1.2rem; right:1.8rem; font-family:var(--fh); font-size:4rem; font-weight:900; color:rgba(201,168,76,.08); line-height:1; }
.t-stars { color:var(--gold); font-size:.85rem; letter-spacing:.1em; margin-bottom:1rem; }
.t-quote { font-size:.9rem; color:var(--grey); line-height:1.82; margin-bottom:1.5rem; font-style:italic; }
.t-author { display:flex; align-items:center; gap:.9rem; }
.t-avatar { width:44px; height:44px; border-radius:50%; overflow:hidden; border:1px solid var(--border2); flex-shrink:0; }
.t-avatar img { width:100%; height:100%; object-fit:cover; }
.t-name { font-family:var(--fh); font-weight:700; font-size:.9rem; color:var(--white); margin-bottom:.1rem; }
.t-role { font-family:var(--fm); font-size:.64rem; color:var(--grey2); text-transform:uppercase; letter-spacing:.08em; }
.carousel-btn {
  width:44px; height:44px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border2);
  color:var(--gold); font-size:1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--neu-shadow); transition:all .3s;
}
.carousel-btn:hover { border-color:var(--gold); box-shadow:var(--neu-hover); }

/* ── TAG / CHIP ── */
.tag {
  font-family:var(--fm); font-size:.63rem;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); background:var(--gold-dim);
  border:1px solid var(--border2);
  padding:.25rem .7rem; border-radius:100px;
  display:inline-block;
}
.chip {
  font-family:var(--fm); font-size:.65rem;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--grey2); background:var(--surface);
  border:1px solid var(--border);
  padding:.4rem .9rem; border-radius:100px;
  box-shadow:var(--neu-shadow);
}

/* ── FILTER BUTTONS ── */
.filter-btn {
  font-family:var(--fm); font-size:.7rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.5rem 1.1rem; border-radius:100px;
  border:1px solid var(--border); background:transparent;
  color:var(--grey); cursor:pointer; transition:all .2s;
  box-shadow:var(--neu-shadow);
}
.filter-btn:hover,.filter-btn.active { border-color:var(--gold); color:var(--gold); background:var(--gold-dim); }

/* ── GLASS FORM ── */
.glass-form {
  background:rgba(22,22,22,.72);
  backdrop-filter:blur(30px) saturate(120%);
  -webkit-backdrop-filter:blur(30px) saturate(120%);
  border:1px solid rgba(201,168,76,.14);
  border-radius:var(--rxxl); padding:2.8rem;
  box-shadow:var(--shadow-lg),0 0 80px rgba(201,168,76,.05);
  position:relative;
}
.glass-form::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:60%; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.form-label { font-family:var(--fm); font-size:.66rem; text-transform:uppercase; letter-spacing:.12em; color:var(--grey2); display:block; margin-bottom:.5rem; }
.form-control {
  width:100%; padding:.85rem 1.1rem;
  background:rgba(13,13,13,.6); border:1px solid var(--border2);
  border-radius:var(--r); color:var(--white);
  font-family:var(--fb); font-size:.9rem;
  transition:border-color .25s,box-shadow .25s;
  backdrop-filter:blur(8px); box-shadow:var(--neu-inset);
}
.form-control:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,.1),var(--neu-inset); }
.form-control::placeholder { color:var(--grey2); }
textarea.form-control { resize:vertical; min-height:120px; }
select.form-control { appearance:none; cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888074'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; }
.form-group { margin-bottom:1rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:600px){ .form-row { grid-template-columns:1fr; } }

/* ── MARQUEE ── */
.marquee-section { border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden; background:var(--black2); }
.marquee-row { padding:.85rem 0; overflow:hidden; }
.marquee-row + .marquee-row { border-top:1px solid var(--border); }
.marquee-track { display:flex; gap:3rem; white-space:nowrap; width:max-content; animation:marqueeScroll 28s linear infinite; }
.marquee-track-r { animation-direction:reverse; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item { font-family:var(--fm); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--grey2); display:inline-flex; align-items:center; gap:.7rem; }
.mq-dot  { width:4px; height:4px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.mq-item.hi { color:var(--gold); }

/* ── INTEGRATIONS ── */
.int-item {
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  padding:1.4rem 1.8rem; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--rxl);
  box-shadow:var(--neu-shadow); transition:all .3s var(--ease); min-width:110px;
}
.int-item:hover { border-color:var(--border2); box-shadow:var(--neu-hover); transform:translateY(-3px); }
.int-icon { font-size:1.8rem; }
.int-name { font-family:var(--fm); font-size:.66rem; color:var(--grey2); text-transform:uppercase; letter-spacing:.1em; }

/* ── CTA BANNER ── */
.cta-banner {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--rxxl); padding:5rem 4rem; text-align:center;
  position:relative; overflow:hidden; box-shadow:var(--neu-shadow);
}
.cta-banner::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:40%; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.cta-banner::after  { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 50% 0%,rgba(201,168,76,.04),transparent 60%); }
@media(max-width:600px){ .cta-banner{ padding:3.5rem 2rem; border-radius:var(--rxl); } }

/* ── FOOTER ── */
footer { background:var(--black2); border-top:1px solid var(--border); padding:5rem 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; padding-bottom:4rem; }
.footer-brand p { font-size:.86rem; color:var(--grey2); margin-top:.9rem; max-width:280px; }
.footer-col h5 { font-family:var(--fh); font-size:.9rem; font-weight:700; color:var(--white2); margin-bottom:1.2rem; }
.footer-col ul { list-style:none; }
.footer-col ul li a { font-size:.84rem; color:var(--grey2); transition:color .2s; display:block; padding:.25rem 0; }
.footer-col ul li a:hover { color:var(--gold); }
.newsletter-label { font-family:var(--fm); font-size:.64rem; text-transform:uppercase; letter-spacing:.12em; color:var(--grey2); margin-bottom:.6rem; margin-top:1.5rem; }
.newsletter-form { display:flex; gap:.5rem; }
.newsletter-input { flex:1; padding:.65rem 1rem; background:var(--surface); border:1px solid var(--border2); border-radius:var(--r); color:var(--white); font-family:var(--fb); font-size:.84rem; box-shadow:var(--neu-inset); }
.newsletter-input:focus { outline:none; border-color:var(--gold); }
.newsletter-input::placeholder { color:var(--grey2); }
.footer-social { display:flex; gap:.6rem; margin-top:1.2rem; }
.social-btn { width:36px; height:36px; border-radius:9px; background:var(--surface); border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; font-family:var(--fh); font-weight:800; font-size:.85rem; color:var(--grey2); transition:all .3s; box-shadow:var(--neu-shadow); }
.social-btn:hover { border-color:var(--gold); color:var(--gold); box-shadow:var(--neu-hover); }
.footer-bottom { border-top:1px solid var(--border); padding:1.5rem 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.75rem; }
.footer-bottom p { font-size:.8rem; color:var(--grey2); }
.footer-links { display:flex; gap:1.5rem; }
.footer-links a { font-size:.8rem; color:var(--grey2); transition:color .2s; }
.footer-links a:hover { color:var(--gold); }

/* ── FLOATING CTA ── */
#floatCTA { position:fixed; bottom:2rem; right:2rem; z-index:998; display:flex; flex-direction:column; align-items:flex-end; gap:.6rem; }
.float-subs { display:flex; flex-direction:column; gap:.5rem; opacity:0; pointer-events:none; transform:translateY(10px); transition:all .3s; }
.float-subs.open { opacity:1; pointer-events:all; transform:translateY(0); }
.float-sub { display:flex; align-items:center; gap:.7rem; padding:.65rem 1.1rem; background:rgba(22,22,22,.92); backdrop-filter:blur(16px); border:1px solid var(--border2); border-radius:var(--r); font-size:.82rem; color:var(--white2); box-shadow:var(--shadow); transition:all .3s; white-space:nowrap; }
.float-sub:hover { border-color:var(--gold); color:var(--gold); }
.float-main { width:54px; height:54px; border-radius:14px; background:linear-gradient(135deg,var(--gold-light),var(--gold)); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 24px rgba(201,168,76,.4),var(--shadow); font-size:1.3rem; transition:all .3s; position:relative; }
.float-main:hover { transform:scale(1.08); }
.float-ping { position:absolute; top:-3px; right:-3px; width:12px; height:12px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 0 rgba(201,168,76,.5); animation:ping 2s ease-out infinite; }
@keyframes ping { 75%,100%{ box-shadow:0 0 0 10px transparent; } }

/* ── REVEAL ── */
.reveal        { opacity:1; transform:none; transition:opacity .8s var(--ease),transform .8s var(--ease); }
.reveal-left   { opacity:1; transform:none; transition:opacity .8s var(--ease),transform .8s var(--ease); }
.reveal-right  { opacity:1; transform:none; transition:opacity .8s var(--ease),transform .8s var(--ease); }
.reveal-scale  { opacity:1; transform:none; transition:opacity .8s var(--ease),transform .8s var(--ease); }
.revealed { opacity:1 !important; transform:none !important; }
.d1 { transition-delay:.12s !important; }
.d2 { transition-delay:.24s !important; }
.d3 { transition-delay:.36s !important; }
.d4 { transition-delay:.48s !important; }
.d5 { transition-delay:.60s !important; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr !important; }
  .hamburger { display:flex; }
  .nav-links,.nav-cta { display:none; }
  .section { padding:4.5rem 0; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats-bar .grid-4 { grid-template-columns:1fr 1fr; }
  .stat-bar-item { border-bottom:1px solid var(--border); }
}
@media(max-width:600px){
  .container { padding:0 1.2rem; }
  h1 { font-size:clamp(2.2rem,8vw,3rem); }
  .footer-grid { grid-template-columns:1fr; }
  .stats-bar .grid-4 { grid-template-columns:1fr 1fr; }
  .page-hero { padding:7rem 0 3.5rem; min-height:auto; }
}


