/* ═══════════════════════════════════
   WrenchLine Landing Page
   Industrial Charcoal + Rust Orange
   Typography: Bebas Neue + DM Sans
   ═══════════════════════════════════ */

:root {
  --bg: #1C1C1C;
  --bg-alt: #242424;
  --bg-card: #2A2A2A;
  --fg: #F5F0E8;
  --fg-muted: #9E9A93;
  --accent: #E85D2D;
  --accent-dim: rgba(232, 93, 45, 0.12);
  --border: rgba(245, 240, 232, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.logo-accent { color: var(--accent); }

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  padding: 100px 40px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,93,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-top: 16px;
}

.badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 2px;
}

/* ── STATS ── */
.stats {
  padding: 48px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

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

/* ── SERVICES ── */
.services {
  padding: 100px 40px;
  background: var(--bg);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-color: rgba(232, 93, 45, 0.3);
  background: var(--bg-alt);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step {
  flex: 1;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 30px;
  flex-shrink: 0;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-text {
  font-size: 26px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 820px;
  font-weight: 400;
}

.quote-context {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 60px;
}

.testimonial-stats {
  display: flex;
  gap: 60px;
}

.tstat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.tstat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  display: block;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  padding: 60px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

/* ── PRICING ── */
.pricing {
  padding: 100px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card--primary {
  border-color: rgba(232, 93, 45, 0.3);
}

.pricing-card-header {
  flex: 1;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-dollar {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.pricing-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--fg);
  line-height: 1;
  letter-spacing: 0.02em;
}

.pricing-period {
  font-size: 16px;
  color: var(--fg-muted);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}

.pricing-note a {
  color: var(--accent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #cf4e22;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* ── BOOK / CONTACT ── */
.book {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E9A93' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

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

.form-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

.form-success {
  background: rgba(232, 93, 45, 0.12);
  border: 1px solid rgba(232, 93, 45, 0.3);
  border-radius: 2px;
  padding: 16px;
  text-align: center;
}

.form-success p {
  font-size: 14px;
  color: var(--fg);
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 14px;
  color: var(--fg);
}

.contact-card-value a {
  color: var(--fg);
  text-decoration: none;
}

.contact-card-value a:hover {
  color: var(--accent);
}
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .site-header nav { display: none; }

  .hero { padding: 60px 20px 50px; }
  .hero-inner { flex-direction: column; gap: 30px; }
  .hero-badge { align-items: flex-start; flex-direction: row; gap: 10px; }

  .stats { padding: 36px 20px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }

  .services, .process, .testimonial, .closing, .pricing, .book { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .book-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { margin-top: 0; }

  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; }

  .testimonial-stats { flex-direction: column; gap: 32px; }
  .quote-text { font-size: 20px; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 56px; }
  .section-heading { font-size: 36px; }
  .closing h2 { font-size: 40px; }
  .service-card { padding: 28px; }
}