@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --text: #f4f4f4;
  --muted: #a5a5a5;
  --red: #e50914;
  --line: #252529;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: Inter, system-ui, sans-serif; line-height: 1.6;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .12;
  background-image: linear-gradient(45deg, #fff 1px, transparent 1px);
  background-size: 8px 8px; mix-blend-mode: overlay;
}
.nav {
  position: sticky; top: 0; z-index: 10; display: flex; align-items: center;
  justify-content: space-between; padding: 12px 6vw; background: rgba(5,5,5,.88);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.brand img { width: 150px; display: block; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #ddd; text-decoration: none; font-weight: 600; font-size: .9rem; }
nav a:hover { color: white; }
.nav-cta, .button.primary {
  background: var(--red); color: white; padding: 11px 18px; border-radius: 4px;
  box-shadow: 0 8px 25px rgba(229,9,20,.25);
}
.menu { display: none; background: none; border: 0; color: white; font-size: 1.7rem; }
.hero {
  min-height: 82vh; display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 4vw; padding: 70px 8vw;
  background: radial-gradient(circle at 80% 45%, rgba(229,9,20,.16), transparent 36%),
              linear-gradient(135deg, #090909, #030303);
  border-bottom: 1px solid var(--line);
}
.hero-copy { max-width: 680px; }
.eyebrow { color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .22em; margin: 0 0 12px; }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; line-height: .95; }
h1 { font-size: clamp(4rem, 9vw, 8rem); margin: 0 0 22px; letter-spacing: -.03em; }
h1 span { color: var(--red); }
h2 { font-size: clamp(2.7rem, 5vw, 5rem); margin: 0 0 18px; }
.lead { color: var(--muted); max-width: 580px; font-size: 1.08rem; }
.actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.button { display: inline-block; text-decoration: none; font-weight: 800; padding: 12px 19px; border-radius: 4px; }
.button.ghost { border: 1px solid #444; color: white; }
.hero-logo { display: grid; place-items: center; }
.hero-logo img { width: min(100%, 560px); filter: drop-shadow(0 25px 50px rgba(229,9,20,.12)); }
.section { padding: 100px 8vw; }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: linear-gradient(145deg, #121214, #090909); border: 1px solid var(--line);
  padding: 30px 24px; min-height: 260px; position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; height: 3px; left: 0; right: 0; bottom: 0;
  background: var(--red); transform: scaleX(.25); transform-origin: left; transition: .25s;
}
.card:hover::after { transform: scaleX(1); }
.icon { color: var(--red); font-size: 2rem; }
.card h3 { font-size: 2rem; margin: 22px 0 10px; }
.card p, .split p, .contact p { color: var(--muted); }
.pricing { background: #050505; }
.pricing .section-heading p:last-child { color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 1050px; margin: 0 auto; }
.price-card { background: linear-gradient(145deg, #131315, #090909); border: 1px solid var(--line); padding: 38px; position: relative; }
.price-card.featured { border-color: var(--red); box-shadow: 0 18px 55px rgba(229,9,20,.12); }
.package-label, .quality-label { color: var(--red) !important; font-size: .75rem; font-weight: 800; letter-spacing: .18em; }
.price-card h3 { font-size: 2.7rem; margin: 8px 0 24px; }
.price-card ul { padding-left: 20px; color: #c4c4c4; min-height: 200px; }
.price-card li { margin-bottom: 9px; }
.price-list { margin: 28px 0; border-top: 1px solid var(--line); }
.price-list p { display: flex; justify-content: space-between; align-items: center; margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); color: #ddd; }
.price-list strong { color: white; font-family: "Barlow Condensed"; font-size: 1.7rem; }
.full-width { width: 100%; text-align: center; }
.pricing-note { color: var(--muted); text-align: center; margin: 28px auto 0; font-size: .9rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; background: #090909; }
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 28px; }
.checklist li::before { content: "✓"; color: var(--red); font-weight: 900; margin-right: 12px; }
.quote { border: 1px solid #303034; padding: 70px 40px; text-align: center; background: #050505; }
.quote p { color: white; font-family: "Barlow Condensed"; font-size: 2.8rem; font-weight: 800; letter-spacing: .08em; }
.quote .quality-label { font-family: Inter, sans-serif; font-size: .75rem; margin-bottom: 18px; }
.quote small { color: var(--muted); }
.contact { text-align: center; background: linear-gradient(180deg, #080808, #111); }
.contact > * { margin-left: auto; margin-right: auto; }
.phone { display: inline-block; color: white; text-decoration: none; font-family: "Barlow Condensed"; font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; letter-spacing: .02em; border-bottom: 3px solid var(--red); }
.email { display: block; width: fit-content; margin: 20px auto 0; color: #ddd; text-decoration: none; font-weight: 700; overflow-wrap: anywhere; }
.email:hover { color: white; }
.contact-actions { display: flex; justify-content: center; gap: 12px; margin: 28px auto; flex-wrap: wrap; }
.name { font-weight: 700; color: white !important; letter-spacing: .08em; text-transform: uppercase; }
footer { display: flex; justify-content: space-between; padding: 24px 8vw; color: #777; font-size: .8rem; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card ul { min-height: auto; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 60px; }
}
@media (max-width: 650px) {
  .nav { padding: 10px 5vw; }
  .menu { display: block; }
  nav { display: none; position: absolute; top: 69px; left: 0; right: 0; background: #080808; padding: 20px 5vw; flex-direction: column; border-bottom: 1px solid var(--line); }
  nav.open { display: flex; align-items: stretch; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 75px 6vw; }
  h1 { font-size: 4rem; }
  .phone { font-size: clamp(2.35rem, 12vw, 4rem); }
  .price-card { padding: 28px 22px; }
  footer { flex-direction: column; gap: 8px; }
}
