:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #ff3c00;
  --accent-glow: rgba(255, 60, 0, 0.15);
  --border: #222222;
  --font-body: 'Space Grotesk', sans-serif;
  --font-display: 'Syne', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 60, 0, 0.3);
  background: rgba(255, 60, 0, 0.05);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ---- SERVICES ---- */
.services {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 700px;
}

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

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

.service-card:hover {
  border-color: var(--accent);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- LANES ---- */
.lanes {
  padding: 120px 24px;
}

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

.lane-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.lane-row:last-child {
  margin-bottom: 0;
}

.lane-row.reverse {
  direction: rtl;
}

.lane-row.reverse > * {
  direction: ltr;
}

.lane-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.lane-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.lane-desc {
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lane-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lane-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: var(--bg-elevated);
}

.lane-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lane-visual-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  padding: 24px;
  opacity: 0.7;
}

.lane-visual-text span {
  color: var(--accent);
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing h2 span {
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #e63500;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-large {
  font-size: 1rem;
  padding: 18px 40px;
}

/* ---- PRICING GRID (inside services section) ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: var(--accent);
}

.pricing-card--featured {
  border-color: rgba(255, 60, 0, 0.4);
}

.pricing-card-top {
  padding: 32px 28px 24px;
}

.pricing-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card-top p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-card-bottom {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- MONTHLY PACKAGES ---- */
.packages {
  padding-top: 24px;
}

.packages-eyebrow {
  margin-bottom: 12px;
}

.packages-subtitle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 48px;
}

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

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

.package-card--highlighted {
  border-color: var(--accent);
  background: var(--bg-elevated);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.package-header h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

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

.package-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.package-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---- PORTFOLIO ---- */
.portfolio {
  padding: 120px 24px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-bottom: 48px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.portfolio-card:hover {
  border-color: var(--accent);
}

.portfolio-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.portfolio-thumb--1 { background: linear-gradient(135deg, #1a0a00 0%, #2d1200 60%, #1a0a00 100%); }
.portfolio-thumb--2 { background: linear-gradient(135deg, #050d1a 0%, #0a1f35 60%, #050d1a 100%); }
.portfolio-thumb--3 { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a35 60%, #0d0d1a 100%); }
.portfolio-thumb--4 { background: linear-gradient(135deg, #0a0a00 0%, #1a1a00 60%, #0a0a00 100%); }
.portfolio-thumb--5 { background: linear-gradient(135deg, #0d0005 0%, #1f000a 60%, #0d0005 100%); }
.portfolio-thumb--6 { background: linear-gradient(135deg, #050505 0%, #0f1a0f 60%, #050505 100%); }

.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px);
  pointer-events: none;
}

.portfolio-play {
  font-size: 2.5rem;
  color: var(--fg);
  opacity: 0.4;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.portfolio-thumb:hover .portfolio-play {
  opacity: 0.9;
  transform: scale(1.15);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 1;
}

.portfolio-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-meta {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-meta h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.portfolio-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.portfolio-cta-note {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- CONTACT ---- */
.contact {
  padding: 120px 24px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-title span {
  color: var(--accent);
}

.contact-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  padding-top: 2px;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.contact-quickquote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
}

.contact-quickquote h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-quickquote > p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.quote-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.quote-option {
  cursor: pointer;
  display: block;
}

.quote-option input[type="radio"] {
  display: none;
}

.quote-option-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}

.quote-option input[type="radio"]:checked + .quote-option-label {
  border-color: var(--accent);
  background: rgba(255, 60, 0, 0.05);
}

.quote-option-label:hover {
  border-color: rgba(255, 60, 0, 0.4);
}

.quote-option-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.quote-option-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.quote-result {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quote-result-price {
  display: flex;
  flex-direction: column;
}

.quote-result-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.quote-result-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

/* ---- CLOSING CTA & FOOTER UPDATES ---- */
.closing-cta {
  margin-top: 36px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--fg);
}

.footer-link--ig:hover {
  color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-stats {
    gap: 32px;
  }

  .lane-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lane-row.reverse {
    direction: ltr;
  }

  .lane-visual {
    order: -1;
  }

  .services {
    padding: 80px 20px;
  }

  .lanes {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }

  .packages-row {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio {
    padding: 80px 20px;
  }

  .contact {
    padding: 80px 20px;
  }

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}