/* ============================================================
   FULLER COMMERCE — SHARED STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1e2836;
  --navy2:   #2d3a4f;
  --orange:  #e8520a;
  --orange2: #ff6a18;
  --white:   #ffffff;
  --off:     #f4f2ef;
  --gray:    #8a95a3;
  --font-d:  'Barlow Condensed', sans-serif;
  --font-b:  'Barlow', sans-serif;
}

body {
  font-family: var(--font-b);
  background: #0f1520;
  color: var(--white);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(15,21,32,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-links .nav-cta:hover { background: var(--orange2) !important; }

/* ---- VIDEO BG ---- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#bg-video {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,22,0.55);
  z-index: 1;
}

.bg canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  z-index: 2;
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(15,21,32,0.15) 0%, rgba(15,21,32,0.6) 100%);
  z-index: 3;
}

/* ---- SHARED FORM STYLES ---- */
.form-heading {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-b);
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.22); }
input:focus, select:focus, textarea:focus { border-color: rgba(232,82,10,0.65); background: rgba(255,255,255,0.09); }

select { appearance: none; cursor: pointer; color: rgba(255,255,255,0.4); }
select option { background: #1e2836; color: white; }
textarea { resize: none; height: 100px; }

.btn {
  background: var(--orange);
  color: white;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-full { width: 100%; justify-content: center; }
.btn:hover { background: var(--orange2); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  width: 52px; height: 52px;
  background: rgba(232,82,10,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}

.success h3 {
  font-family: var(--font-d);
  font-size: 22px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white; margin-bottom: 8px;
}

.success p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }

/* ---- SECTION UTILS ---- */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- FOOTER ---- */
footer {
  background: rgba(10,14,22,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 10;
}

footer img { height: 28px; filter: brightness(0.8); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* ---- MOBILE ---- */
@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .nav-links .nav-hide { display: none; }
}
