/* ============================================
   STATUS DIGITAL MARKETING — Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --amber: #f59e0b;
  --amber-light: #fbbf24;

  --surface: #0d1117;
  --surface-2: #161b22;
  --surface-3: #1e293b;
  --bg-dark: #020617;
  --bg-dark-2: #0f172a;
  --bg-light: #fafaf9;
  --bg-light-2: #f5f5f4;

  --border: #1e293b;
  --border-light: #e5e7eb;
  --text: #e2e8f0;
  --text-dark: #1e293b;
  --dim: #64748b;
  --dim-light: #94a3b8;

  --green: #3fb950;
  --yellow: #d29922;
  --purple: #bc8cff;
  --red: #f85149;
  --cyan: #06b6d4;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-sm: 0.5rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px -20px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(249,115,22,0.15);

  --max-w: 72rem;
  --nav-h: 3.25rem;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 10001;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange-light));
  transform-origin: left;
  transition: width 0.1s linear;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 3px;
  z-index: 9999;
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  height: var(--nav-h);
  gap: 0.5rem;
}
.nav-brand {
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-right: auto;
}
.nav-brand span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dim-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--orange);
  color: #020617;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 3px);
  right: 0;
  width: 280px;
  height: calc(100vh - var(--nav-h) - 3px);
  background: rgba(17,24,39,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9998;
  overflow-y: auto;
}
.nav-mobile.open {
  display: block;
  transform: translateX(0);
}
.nav-mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dim-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  margin-left: 0;
  padding: 0.75rem 1rem;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #020617, #431407, #0f172a);
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(249,115,22,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orbs */
@keyframes glowBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  top: -8rem; left: -8rem;
  width: 28rem; height: 28rem;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  animation: glowBreathe 8s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: -4rem; right: -6rem;
  width: 20rem; height: 20rem;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
  animation: glowBreathe 8s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-glow-3 {
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 32rem; height: 32rem;
  background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
  animation: glowBreathe 8s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  background: var(--orange-glow);
  color: var(--orange-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(249,115,22,0.2);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--orange-light), var(--orange), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--dim-light);
  max-width: 36rem;
  margin: 1rem auto 2rem;
  line-height: 1.7;
}

/* Dual CTA */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
}
.hero-stat-value .accent { color: var(--orange); }
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn-primary {
  padding: 0.875rem 1.75rem;
  background: var(--orange);
  color: #020617;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.25);
}
.btn-outline {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Shimmer effect */
@keyframes shimmer-once {
  from { transform: translateX(-100%); }
  to { transform: translateX(200%); }
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.btn:hover::after {
  animation: shimmer-once 0.6s ease-out forwards;
}

/* Mouse-aware glow */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.3),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.btn-primary:hover::before { opacity: 1; }

/* Small variant */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ============================================
   SECTION PATTERN
   ============================================ */
.section { padding: 5rem 0; }
.section-dark { background: var(--bg-dark-2); color: var(--text); }
.section-light { background: var(--bg-light); color: var(--text-dark); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-light .section-label { color: var(--orange-dark); }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.section-dark .section-header h2 { color: #fff; }
.section-light .section-header h2 { color: var(--text-dark); }
.section-header p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-header p { color: var(--dim-light); }
.section-light .section-header p { color: var(--dim); }

/* ============================================
   FEATURE CARDS (Light sections)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12);
  border-color: rgba(249,115,22,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(249,115,22,0.08);
  color: var(--orange);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.7;
}

/* ============================================
   INDUSTRY CARDS (Dark sections)
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: rgba(13,17,23,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.industry-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
  width: 2.75rem; height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--orange-glow);
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.industry-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.industry-card p {
  font-size: 0.8125rem;
  color: var(--dim-light);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS — TIMELINE
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange-light), var(--orange));
  z-index: 0;
}
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline::before {
    display: none;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-badge {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--orange);
  color: #020617;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px var(--bg-light), 0 0 0 6px rgba(249,115,22,0.2);
}
.timeline-step h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}
.timeline-step p {
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF / CLIENTS
   ============================================ */
.logo-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.logo-marquee img {
  height: 2.5rem;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.5;
  transition: all 0.3s;
}
.logo-marquee img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-stat-value {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
}
.proof-stat-value .accent { color: var(--orange); }
.proof-stat-label {
  font-size: 0.8125rem;
  color: var(--dim-light);
  margin-top: 0.25rem;
}

/* ============================================
   TERMINAL / CONSOLE BLOCK
   ============================================ */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.05);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.r { background: var(--red); }
.terminal-dot.y { background: var(--yellow); }
.terminal-dot.g { background: var(--green); }
.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.terminal-body {
  padding: 1rem 1.25rem;
  overflow-x: auto;
}
.terminal-line {
  white-space: pre;
  min-height: 1.3em;
}

/* Terminal syntax colors */
.tc { color: var(--cyan); }
.to { color: var(--orange); }
.tg { color: var(--green); }
.ty { color: var(--yellow); }
.tp { color: var(--purple); }
.tr { color: var(--red); }
.td { color: var(--dim); }
.tb { font-weight: 700; }
.tw { color: #fff; }

/* ============================================
   DOBEPROS TECH SECTION
   ============================================ */
.tech-section {
  background: linear-gradient(180deg, #0f172a 0%, #172554 40%, #1e1b4b 60%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(249,115,22,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.3) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .tech-grid { grid-template-columns: 1fr; }
}

.tech-card {
  background: rgba(13,17,23,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.tech-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.tech-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.tech-card .tech-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.tech-tag-enricher { background: rgba(59,130,246,0.15); color: #60a5fa; }
.tech-tag-tracking { background: rgba(168,85,247,0.15); color: #c084fc; }
.tech-tag-trajectory { background: rgba(52,211,153,0.15); color: #34d399; }
.tech-card p {
  font-size: 0.8125rem;
  color: var(--dim-light);
  line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .forms-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}
.form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}
.form-card > p {
  font-size: 0.875rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea {
  min-height: 5rem;
  resize: vertical;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
}
.form-error {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.25rem;
  display: none;
}
.form-error.visible { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success svg {
  width: 3rem; height: 3rem;
  color: var(--green);
  margin: 0 auto 1rem;
}
.form-success h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.875rem;
  color: var(--dim);
}

/* Submit button loading */
.btn-submit { width: 100%; }
.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-submit .spinner {
  display: none;
  width: 1rem; height: 1rem;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #020617;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-text { display: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #431407, #0f172a, #1e1b4b);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(249,115,22,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  font-size: 1rem;
  color: var(--dim-light);
  margin-bottom: 2rem;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
  font-weight: 900;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo span { color: var(--orange); }
.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.footer-brand .footer-hours {
  font-size: 0.75rem;
  color: var(--dim);
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.8125rem;
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  background: var(--bg-dark);
  min-height: 100vh;
}
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.legal-content .legal-updated {
  font-size: 0.8125rem;
  color: var(--dim);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-size: 0.9375rem;
  color: var(--dim-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 0.9375rem;
  color: var(--dim-light);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
}
.legal-content a:hover { color: var(--orange-light); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--dim-light);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.legal-back:hover { color: #fff; text-decoration: none; }
