/* ═══════════════════════════════════════════════════════════
   ORIGIN MKT — SHARED DESIGN SYSTEM
   Reuse: link this file from every public page.
   Add page-specific styles in an inline <style> block after.
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #050507;
  --dark:        #0a0a0e;
  --surface:     #0f0f14;
  --elevated:    #15151c;
  --card:        #1a1a24;

  --gold:        #C9A84C;
  --gold-lt:     #E8C96A;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.25);
  --gold-brd:    rgba(201,168,76,0.30);

  --blue:        #00D4FF;
  --blue-lt:     #33DFFF;
  --blue-dim:    rgba(0,212,255,0.10);
  --blue-glow:   rgba(0,212,255,0.22);
  --blue-brd:    rgba(0,212,255,0.28);

  --green:       #00d48a;
  --green-dim:   rgba(0,212,138,0.10);
  --red:         #ff4d6d;
  --red-dim:     rgba(255,77,109,0.10);
  --orange:      #ff9f43;
  --purple:      #a29bfe;

  --white:       #F4F0EA;
  --muted:       #8a8a9e;
  --subtle:      #44444f;
  --border:      #1e1e2a;

  --r-sm:        4px;
  --r-md:        10px;
  --r-lg:        18px;
  --r-xl:        28px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           0.35s;
  --t-slow:      0.6s;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a           { color: inherit; text-decoration: none; }
img, video  { max-width: 100%; display: block; }
button      { font-family: inherit; cursor: pointer; border: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold-dim); color: var(--gold-lt); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 28px; }
section       { padding: 100px 0; }

/* ── TYPOGRAPHY UTILS ────────────────────────────────────── */
.label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.label.blue            { color: var(--blue); }
.label.blue::before    { background: var(--blue); }
.label.center          { justify-content: center; }
.label.center::before,
.label.center::after   { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(26px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }
.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
  font-weight: 300;
}
.section-desc.center { max-width: 600px; margin: 0 auto; text-align: center; }

.gold  { color: var(--gold); }
.blue  { color: var(--blue); }
.green { color: var(--green); }
.muted { color: var(--muted); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #a8883b);
  color: #080808;
  font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--r-sm); border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  opacity: 0; transition: opacity var(--t);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--gold-glow), 0 0 60px rgba(201,168,76,0.15); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-blue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), #0099cc);
  color: #080808;
  font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--r-sm); cursor: pointer;
  transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--blue-glow); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: transparent; color: var(--white);
  font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t) var(--spring);
}
.btn-ghost:hover { border-color: var(--gold-brd); background: var(--gold-dim); transform: translateY(-3px); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal       { transform: translateY(48px); }
.reveal-l     { transform: translateX(-60px); }
.reveal-r     { transform: translateX(60px); }
.reveal-scale { transform: scale(0.92) translateY(24px); }
.reveal.on, .reveal-l.on, .reveal-r.on, .reveal-scale.on { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(36px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.stagger.on > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.stagger.on > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
.stagger.on > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }
.stagger.on > *:nth-child(4) { opacity:1; transform:none; transition-delay:.35s; }
.stagger.on > *:nth-child(5) { opacity:1; transform:none; transition-delay:.45s; }
.stagger.on > *:nth-child(6) { opacity:1; transform:none; transition-delay:.55s; }
.stagger.on > *:nth-child(7) { opacity:1; transform:none; transition-delay:.65s; }
.stagger.on > *:nth-child(8) { opacity:1; transform:none; transition-delay:.75s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-scale, .stagger > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; padding: 20px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled, #navbar.solid {
  background: rgba(5,5,7,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 14px 0; border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo  { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; transition: filter var(--t), transform var(--t); }
.nav-logo:hover img { filter: drop-shadow(0 0 12px var(--gold-glow)); transform: scale(1.04); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover         { color: var(--white); }
.nav-links a:hover::after  { width: 100%; }
.nav-links a.active        { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: transparent; border: 1px solid var(--gold-brd);
  color: var(--gold);
  font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--r-sm); cursor: pointer; white-space: nowrap;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); }

/* Mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 1000; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 899;
  background: rgba(5,5,7,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Orbitron', monospace; font-size: 17px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white); transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta { margin-top: 12px; padding: 14px 36px; border: 1px solid var(--gold); color: var(--gold); font-size: 11px; letter-spacing: 3px; border-radius: var(--r-sm); }

@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-brd), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Orbitron', monospace; font-size: clamp(32px, 5vw, 68px); font-weight: 800; line-height: 1.05; margin-bottom: 20px; }
.page-hero p   { font-size: 16px; color: var(--muted); line-height: 1.85; max-width: 600px; font-weight: 300; margin-bottom: 32px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span {
  font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  transition: color var(--t);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--subtle); }
.breadcrumb .current { color: var(--gold); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card:hover { border-color: var(--gold-brd); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-brd); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand img { height: 44px; width: auto; margin-bottom: 18px; }
.footer-brand p   { font-size: 13px; color: var(--muted); line-height: 1.85; font-weight: 300; max-width: 280px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color var(--t), color var(--t), background var(--t);
}
.footer-social:hover { border-color: var(--gold-brd); color: var(--gold); background: var(--gold-dim); }
.footer-social svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h4 {
  font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--muted); font-weight: 300;
  transition: color var(--t); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--subtle); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--subtle); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WHATSAPP FAB ────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-fab svg  { width: 28px; height: 28px; fill: white; }

/* ── SECTION CTA BAND ────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
}
.cta-band h2 { font-family: 'Orbitron', monospace; font-size: clamp(22px, 3.5vw, 42px); font-weight: 700; margin-bottom: 14px; }
.cta-band p  { font-size: 15px; color: var(--muted); margin-bottom: 36px; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ACCORDION / FAQ ─────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--white); transition: color var(--t);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform var(--t), color var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.85; font-weight: 300; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 14px;
  outline: none; transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold-brd); background: var(--elevated); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-group input.error,
.form-group textarea.error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,77,109,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 11px; color: var(--red); font-weight: 500; display: none; }
.field-error.visible { display: block; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.divider { height: 1px; background: var(--border); margin: 60px 0; }

.tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  background: var(--gold-dim); border: 1px solid var(--gold-brd);
  border-radius: 99px; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
}
.tag.blue { background: var(--blue-dim); border-color: var(--blue-brd); color: var(--blue); }
.tag.green { background: var(--green-dim); border-color: rgba(0,212,138,0.25); color: var(--green); }

/* ── SHARED JS BEHAVIOUR INDICATOR ──────────────────────── */
/* Pages must include shared-nav.js or inline the nav JS */
