/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050D1A;
  --surface: #0B1E3D;
  --surface-2: #0F2549;
  --amber: #FF9500;
  --amber-dim: rgba(255, 149, 0, 0.15);
  --text: #E8EFF9;
  --text-muted: #6B829E;
  --border: rgba(107, 130, 158, 0.2);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 13, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(20px, 5vw, 80px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-cta {
  padding: 8px 18px;
  background: var(--amber);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 80vh;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: var(--amber-dim);
  border: 1px solid rgba(255, 149, 0, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

.proof-stat { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero art */
.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.art-block {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.block-1 { background: var(--surface); }
.block-2 { background: var(--surface-2); border-color: rgba(255, 149, 0, 0.3); }
.block-3 { background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 149, 0, 0.2) 100%); border-color: rgba(255, 149, 0, 0.4); }
.block-4 { background: var(--surface-2); }
.block-5 { background: linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, var(--surface) 100%); }
.block-6 { background: var(--surface); border-color: rgba(255, 149, 0, 0.2); }

.art-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== HOW ===== */
.how {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
}

.section-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.3s;
}

.step:hover { border-color: rgba(255, 149, 0, 0.3); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.industries-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.industry-list { display: flex; flex-direction: column; gap: 28px; }

.industry-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.industry-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border: 1px solid rgba(255, 149, 0, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.industry-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.industry-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover { border-color: rgba(255, 149, 0, 0.3); transform: translateY(-4px); }

.pricing-card.featured {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: rgba(255, 149, 0, 0.4);
  position: relative;
}

.card-header {
  margin-bottom: 24px;
}

.card-title {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.card-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(255, 149, 0, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 28px;
}

.per {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.card-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23FF9500' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.card-note {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.closing-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}

.truck-silhouette {
  width: 200px;
  height: 100px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 12px;
  position: relative;
}

.truck-silhouette::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 10px;
  width: 80px;
  height: 50px;
  background: var(--surface);
  border: 1px solid rgba(255, 149, 0, 0.25);
  border-radius: 8px;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: sparkle-pulse 2.5s ease-in-out infinite;
}

.s1 { top: 30%; left: 15%; animation-delay: 0s; }
.s2 { top: 50%; right: 20%; animation-delay: 0.8s; }
.s3 { bottom: 25%; left: 35%; animation-delay: 1.6s; }

@keyframes sparkle-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.3); opacity: 0.4; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 48px; }
  .hero-right { display: none; }
  .industries-top { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-art { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ===== BOOKING FORM ===== */
.booking-section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--border);
}

.booking-inner {
  max-width: 720px;
  margin: 0 auto;
}

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px 36px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-row { display: flex; gap: 16px; }
.form-row--2col > * { flex: 1; min-width: 0; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--amber); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B829E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 80px; }

/* Frequency radio pills */
.frequency-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.freq-option { display: contents; }

.freq-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.freq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.freq-option input[type="radio"]:checked + .freq-pill {
  background: var(--amber-dim);
  border-color: rgba(255, 149, 0, 0.5);
  color: var(--amber);
  font-weight: 600;
}

.freq-pill:hover { border-color: rgba(255, 149, 0, 0.3); }

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.btn-submit:active:not(:disabled) { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-loading { display: none; align-items: center; }

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

/* Error message */
.form-error {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 14px;
}

/* Success state */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  gap: 16px;
}

.success-icon { margin-bottom: 8px; }
.success-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); }
.success-body { font-size: 15px; color: var(--text-muted); max-width: 380px; line-height: 1.6; }

@media (max-width: 480px) {
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-div { display: none; }
  .nav-tag { display: none; }
  .booking-card { padding: 24px 20px; }
  .form-row--2col { flex-direction: column; }
  .form-row { flex-direction: column; }
}