@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: #080808;
  --panel: #101010;
  --panel-2: #161616;
  --text: #f2f2f2;
  --muted: #a8a8a8;
  --red: #d11218;
  --red-dark: #8f0b0f;
  --silver: #cfcfcf;
  --line: #2a2a2a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209, 18, 24, .25);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.brand span { display: grid; line-height: 1; }
.brand strong, h1, h2, h3, .eyebrow, .unit-label, .price, .nav-cta, .phone-big {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: .045em;
}
.brand strong { font-size: 1.45rem; }
.brand small { color: var(--red); letter-spacing: .25em; margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
.nav-links > a:not(.nav-cta) { color: #d3d3d3; }
.nav-links > a:not(.nav-cta):hover { color: white; }
.nav-cta { border: 1px solid var(--red); color: white; padding: 10px 16px; font-weight: 700; }
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.6rem; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 15%, rgba(209,18,24,.17), transparent 32%),
    linear-gradient(110deg, #070707 0%, #0a0a0a 55%, #121212 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding-block: 70px;
}
.hero-copy { max-width: 760px; }
.eyebrow { color: var(--red); font-size: 1rem; font-weight: 800; letter-spacing: .16em; margin: 0 0 16px; }
.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  line-height: .83;
  text-transform: uppercase;
}
.hero h1 span { color: var(--red); }
.hero-text { color: #c3c3c3; font-size: 1.12rem; max-width: 650px; margin: 28px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #ed2027; }
.btn-secondary { border-color: #444; color: white; background: #101010; }
.hero-points { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; color: #a7a7a7; font-size: .9rem; }
.hero-points span::before { content: "◆"; color: var(--red); margin-right: 8px; font-size: .6rem; }

.hero-card {
  border: 1px solid #3c3c3c;
  background: linear-gradient(145deg, rgba(27,27,27,.95), rgba(9,9,9,.95));
  box-shadow: 0 35px 80px rgba(0,0,0,.5);
  padding: 54px 34px;
  text-align: center;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(209,18,24,.38);
  transform: translate(12px, 12px);
  z-index: -1;
}
.hero-card p { margin: 0; font-family: "Barlow Condensed"; font-size: 2rem; font-weight: 800; letter-spacing: .09em; }
.hero-card strong { display: block; color: var(--red); margin-top: 6px; letter-spacing: .08em; }
.hero-card small { display: block; margin-top: 15px; color: #888; text-transform: uppercase; letter-spacing: .2em; }

.quick-strip { border-block: 1px solid var(--line); background: #0d0d0d; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-grid > div { padding: 26px 30px; border-right: 1px solid var(--line); }
.quick-grid > div:first-child { border-left: 1px solid var(--line); }
.quick-grid strong { display: block; font-family: "Barlow Condensed"; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .06em; }
.quick-grid span { display: block; color: #999; margin-top: 3px; font-size: .9rem; }

.section { padding-block: 100px; }
.section-heading { max-width: 700px; margin: 0 auto 45px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: .95;
  text-transform: uppercase;
}
.section-heading p:not(.eyebrow) { color: #999; }

.unit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.unit-card {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 28px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.unit-card:hover { transform: translateY(-5px); border-color: #555; }
.unit-card.featured { border-color: var(--red); }
.popular { position: absolute; right: 0; top: 0; background: var(--red); padding: 6px 10px; font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.unit-label { color: var(--red); font-weight: 800; margin: 0; }
.unit-card h3 { font-size: 2rem; margin: 6px 0 10px; text-transform: uppercase; }
.unit-card > p:not(.unit-label) { color: #a7a7a7; }
.price { margin-top: auto; padding-top: 24px; border-top: 1px solid #303030; }
.price span, .price small { display: block; color: #aaa; font-family: Inter; letter-spacing: 0; }
.price strong { color: var(--red); font-size: 2.1rem; }
.select-unit {
  margin-top: 18px;
  min-height: 44px;
  background: transparent;
  color: white;
  border: 1px solid #444;
  cursor: pointer;
  font-weight: 700;
}
.select-unit:hover { border-color: var(--red); }

.dark-section { background: #0e0e0e; border-block: 1px solid var(--line); padding-block: 100px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #292929; }
.benefit { padding: 34px; border-right: 1px solid #292929; }
.benefit:last-child { border-right: 0; }
.benefit span { color: var(--red); font-family: "Barlow Condensed"; font-size: 2.3rem; font-weight: 800; }
.benefit h3 { text-transform: uppercase; font-size: 1.45rem; margin: 12px 0; }
.benefit p { color: #999; margin: 0; }

.faq-list { max-width: 850px; margin: auto; }
details { border-top: 1px solid #2c2c2c; padding: 20px 0; }
details:last-child { border-bottom: 1px solid #2c2c2c; }
summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 1.05rem; }
summary::after { content: "+"; float: right; color: var(--red); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
details p { color: #9b9b9b; max-width: 700px; }

.contact-section {
  padding-block: 100px;
  background:
    radial-gradient(circle at 12% 15%, rgba(209,18,24,.15), transparent 27%),
    #0d0d0d;
  border-top: 1px solid #262626;
}
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; align-items: start; }
.contact-grid h2 { font-size: clamp(3rem, 5vw, 5rem); line-height: .92; margin: 0 0 20px; text-transform: uppercase; }
.contact-grid > div > p:not(.eyebrow) { color: #aaa; max-width: 530px; }
.phone-big { display: block; margin-top: 30px; color: white; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1; }
.contact-grid > div > small { color: #777; }

.contact-form { padding: 32px; background: #111; border: 1px solid #2c2c2c; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: .82rem; color: #aaa; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: #090909;
  color: white;
  border: 1px solid #333;
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); }
.form-note { color: #777; font-size: .8rem; margin: 0; }

footer { border-top: 1px solid #2a2a2a; padding-block: 32px; background: #070707; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-grid strong { font-family: "Barlow Condensed"; font-size: 1.5rem; letter-spacing: .08em; }
.footer-grid p { margin: 3px 0 0; color: #777; font-size: .9rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; color: #aaa; font-size: .9rem; }

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.78);
  z-index: 99;
}
.modal.open { display: grid; }
.modal-card { width: min(560px, 100%); background: #101010; border: 1px solid #3b3b3b; padding: 30px; position: relative; }
.modal-card h3 { font-size: 2.1rem; margin: 0 0 15px; text-transform: uppercase; }
.modal-card textarea { width: 100%; background: #080808; color: white; border: 1px solid #333; padding: 14px; margin-bottom: 16px; }
.modal-close { position: absolute; right: 14px; top: 10px; background: none; border: 0; color: white; font-size: 2rem; cursor: pointer; }

@media (max-width: 980px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 35px; }
  .unit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid #292929; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    padding: 20px;
    background: #0d0d0d;
    border: 1px solid #333;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-grid { min-height: auto; padding-block: 55px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-grid > div:first-child { border-left: 0; }
  .unit-grid, .benefit-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid #292929; }
  .benefit:last-child { border-bottom: 0; }
  .section, .dark-section, .contact-section { padding-block: 70px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.request-success {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #2f7d32;
  background: rgba(47, 125, 50, .12);
  color: #d9f4da;
  font-weight: 600;
}

.request-success.show {
  display: block;
}

.form-submit:disabled {
  opacity: .65;
  cursor: wait;
}
