:root {
  --navy: #11142f;
  --blue: #29266d;
  --red: #c9252d;
  --white: #ffffff;
  --light: #f4f5f7;
  --text: #22242a;
  --muted: #676b75;
  --line: #dedfe3;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 82px; display:flex; align-items:center; justify-content:space-between; gap:25px; }
.brand img { width: 225px; height: auto; display:block; }
.nav { display:flex; align-items:center; gap:24px; font-weight:700; font-size:.92rem; }
.nav a:hover { color: var(--red); }
.nav-phone { padding: 10px 15px; background:var(--blue); color:#fff; border-radius:5px; }
.nav-phone:hover { color:#fff !important; background:var(--red); }
.menu-toggle { display:none; border:0; background:none; font-size:30px; color:var(--blue); }

.hero {
  position:relative;
  min-height: 670px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(201,37,45,.36), transparent 28%),
    linear-gradient(115deg, #080a19 0%, #11142f 52%, #29266d 100%);
}
.hero-overlay { position:absolute; inset:0; pointer-events:none; }
.hero-content { position:relative; z-index:2; color:#fff; padding:90px 0; max-width:760px; }
.eyebrow, .section-kicker {
  color:var(--red);
  font-weight:900;
  letter-spacing:.18em;
  font-size:.82rem;
  margin:0 0 12px;
}
.hero h1 { font-size:clamp(3rem,7vw,6rem); line-height:.95; margin:0 0 28px; letter-spacing:-.045em; }
.hero h1 span { color:#fff; }
.hero-copy { max-width:650px; font-size:1.2rem; color:#e8e9ee; }
.hero-buttons { display:flex; flex-wrap:wrap; gap:14px; margin:32px 0 20px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:50px; padding:0 23px; border-radius:4px; font-weight:900; border:2px solid transparent; cursor:pointer; }
.btn-primary { background:var(--red); color:#fff; }
.btn-primary:hover { background:#a91d25; }
.btn-outline { border-color:#fff; color:#fff; }
.btn-outline:hover { background:#fff; color:var(--navy); }
.hero-phone { color:#fff; opacity:.9; }
.hero-phone:hover { text-decoration:underline; }

.intro { background:var(--light); border-bottom:1px solid var(--line); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; padding:65px 0; align-items:center; }
.intro h2, .section-heading h2, .about-grid h2, .quote-grid h2 { margin:0; font-size:clamp(2rem,4vw,3.3rem); line-height:1.08; color:var(--navy); }
.intro p:last-child { color:var(--muted); font-size:1.08rem; margin:0; }

.section { padding:95px 0; }
.section-heading { max-width:760px; margin-bottom:45px; }
.section-heading > p:last-child { color:var(--muted); font-size:1.05rem; margin-bottom:0; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card { padding:32px; border:1px solid var(--line); border-top:4px solid var(--blue); background:#fff; transition:transform .2s, box-shadow .2s; }
.card:hover { transform:translateY(-5px); box-shadow:0 12px 35px rgba(0,0,0,.08); }
.card-icon { color:var(--red); font-weight:900; letter-spacing:.12em; font-size:.85rem; }
.card h3 { color:var(--navy); font-size:1.35rem; margin:12px 0 8px; }
.card p { color:var(--muted); margin:0; }

.section-dark { background:var(--navy); color:#fff; }
.section-heading.light h2 { color:#fff; }
.section-heading.light > p:last-child { color:#c9cad1; }
.application-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.application { padding:27px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.04); font-size:1.15rem; font-weight:800; }
.application::before { content:""; display:inline-block; width:9px; height:9px; margin-right:12px; background:var(--red); border-radius:50%; }

.about-grid { display:grid; grid-template-columns: .8fr 1.7fr; gap:70px; align-items:center; }
.about-grid p { color:var(--muted); font-size:1.05rem; }
.about-mark { font-size:clamp(7rem,18vw,15rem); line-height:.8; font-weight:1000; color:var(--light); -webkit-text-stroke:2px var(--blue); letter-spacing:-.08em; }
.tagline { color:var(--red) !important; font-size:1.4rem !important; font-weight:900; }

.quote-section { background:linear-gradient(135deg,#f3f4f6,#fff); padding:95px 0; border-top:1px solid var(--line); }
.quote-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
.quote-grid > div:first-child p:not(.section-kicker) { color:var(--muted); max-width:500px; }
.big-phone { display:inline-block; font-size:2rem; font-weight:900; color:var(--blue); margin-top:15px; }
.big-phone:hover { color:var(--red); }
.quote-form { background:#fff; padding:32px; border:1px solid var(--line); box-shadow:0 15px 45px rgba(0,0,0,.07); }
.quote-form label { display:block; font-weight:800; color:var(--navy); margin-bottom:16px; }
.quote-form input, .quote-form textarea {
  display:block; width:100%; margin-top:7px; padding:13px 14px;
  border:1px solid #cfd1d7; border-radius:3px; font:inherit; color:var(--text);
}
.quote-form input:focus, .quote-form textarea:focus { outline:2px solid rgba(201,37,45,.2); border-color:var(--red); }
.btn-full { width:100%; }
.form-note { font-size:.78rem; color:var(--muted); margin:12px 0 0; }

.footer { background:#090b1c; color:#c9cad1; padding:45px 0 20px; }
.footer-grid { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.footer-logo { width:220px; filter:brightness(0) invert(1); }
.footer-contact { display:flex; gap:25px; font-weight:800; }
.footer-contact a:hover { color:#fff; }
.copyright { border-top:1px solid rgba(255,255,255,.12); margin-top:30px; padding-top:18px; font-size:.82rem; color:#858896; }

@media (max-width: 900px) {
  .nav { display:none; position:absolute; top:82px; left:0; right:0; background:#fff; padding:20px; flex-direction:column; align-items:stretch; border-bottom:1px solid var(--line); }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .nav-phone { text-align:center; }
  .cards { grid-template-columns:repeat(2,1fr); }
  .application-grid { grid-template-columns:repeat(2,1fr); }
  .intro-grid, .quote-grid { grid-template-columns:1fr; gap:35px; }
  .about-grid { grid-template-columns:1fr; gap:25px; }
  .about-mark { font-size:7rem; }
}
@media (max-width: 600px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .brand img { width:190px; }
  .hero { min-height:600px; }
  .hero-content { padding:70px 0; }
  .hero-copy { font-size:1rem; }
  .section { padding:70px 0; }
  .cards, .application-grid { grid-template-columns:1fr; }
  .footer-grid { flex-direction:column; align-items:flex-start; }
  .footer-contact { flex-direction:column; gap:8px; }
}

.service-area { color: var(--blue) !important; font-size: 1rem !important; margin-top: 22px; }
.footer-area { color:#9da0ad; font-size:.9rem; margin-top:8px; }

.why-section { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.why-card { background:#fff; border:1px solid var(--line); padding:30px 25px; border-bottom:4px solid var(--red); }
.why-number { color:var(--red); font-weight:900; letter-spacing:.12em; font-size:.8rem; }
.why-card h3 { color:var(--navy); margin:12px 0 8px; font-size:1.2rem; line-height:1.2; }
.why-card p { color:var(--muted); margin:0; font-size:.96rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns:1fr; } }

.equipment-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.equipment-item { padding:28px 24px; border:1px solid var(--line); background:#fff; min-height:205px; transition:transform .2s, box-shadow .2s; }
.equipment-item:hover { transform:translateY(-4px); box-shadow:0 10px 28px rgba(0,0,0,.07); }
.equipment-icon { display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center; background:var(--navy); color:#fff; border-radius:50%; font-weight:900; margin-bottom:10px; }
.equipment-item h3 { color:var(--navy); margin:5px 0 7px; font-size:1.12rem; }
.equipment-item p { color:var(--muted); margin:0; font-size:.94rem; }
@media (max-width: 900px) { .equipment-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 600px) { .equipment-grid { grid-template-columns:1fr; } }

.form-title { color:var(--navy); font-size:1.55rem; font-weight:900; margin:0 0 22px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.quote-form select { display:block; width:100%; margin-top:7px; padding:13px 14px; border:1px solid #cfd1d7; border-radius:3px; background:#fff; font:inherit; color:var(--text); }
.quote-form fieldset { border:1px solid var(--line); padding:18px; margin:0 0 16px; }
.quote-form legend { padding:0 8px; font-weight:800; color:var(--navy); }
.check-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px 14px; }
.quote-form .check { display:flex; align-items:flex-start; gap:8px; margin:0; font-weight:600; font-size:.9rem; color:var(--muted); }
.quote-form .check input { width:auto; margin:3px 0 0; accent-color:var(--red); }
.quote-prompt { color:var(--muted); font-size:1rem !important; margin-top:22px !important; }
@media (max-width: 600px) { .form-row, .check-grid { grid-template-columns:1fr; gap:0; } }

.hero::after {
  content:"";
  position:absolute;
  right:-12vw;
  top:10%;
  width:55vw;
  height:55vw;
  max-width:760px;
  max-height:760px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  box-shadow:0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(201,37,45,.025);
  transform:rotate(-18deg);
}
.hero-badges { display:flex; flex-wrap:wrap; gap:9px; margin:20px 0 0; }
.hero-badges span { border:1px solid rgba(255,255,255,.24); background:rgba(255,255,255,.06); padding:8px 11px; border-radius:999px; font-size:.78rem; font-weight:800; color:#f0f1f5; }
.builds-section { background:#fff; }
.build-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.build-placeholder { min-height:270px; padding:30px; display:flex; flex-direction:column; justify-content:flex-end; border:1px solid var(--line); background:
  linear-gradient(135deg, rgba(17,20,47,.96), rgba(41,38,109,.86)),
  repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.04) 18px 20px);
  color:#fff; position:relative; overflow:hidden; }
.build-placeholder::before { content:"CODE-307"; position:absolute; top:25px; right:-15px; font-size:4rem; font-weight:1000; letter-spacing:-.08em; color:rgba(255,255,255,.05); transform:rotate(-8deg); }
.build-placeholder-icon { font-size:2.2rem; margin-bottom:auto; }
.build-placeholder strong { font-size:1.35rem; }
.build-placeholder small { color:#c9cad1; margin-top:4px; }
@media (max-width: 900px) { .build-grid { grid-template-columns:1fr; } }

.brands-section { background:var(--light); border-top:1px solid var(--line); }
.brand-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.brand-card { min-height:145px; padding:28px; background:#fff; border:1px solid var(--line); border-top:4px solid var(--blue); display:flex; flex-direction:column; justify-content:center; }
.brand-card strong { color:var(--navy); font-size:1.45rem; letter-spacing:-.02em; }
.brand-card span { color:var(--muted); margin-top:4px; font-size:.92rem; }
.brands-note { margin-top:22px; padding:20px 22px; background:var(--navy); color:#fff; display:flex; gap:8px; flex-wrap:wrap; }
.brands-note strong { color:#fff; }
.brands-note span { color:#c9cad1; }
@media (max-width: 900px) { .brand-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 600px) { .brand-grid { grid-template-columns:1fr; } }

.build-card { background:#fff; border:1px solid var(--line); overflow:hidden; }
.build-card img { width:100%; height:270px; object-fit:cover; display:block; }
.build-card-info { padding:24px; }
.build-card-info .section-kicker { margin-bottom:6px; }
.build-card-info h3 { color:var(--navy); margin:0 0 7px; font-size:1.35rem; }
.build-card-info p:last-child { color:var(--muted); margin:0; }
.video-section { background:var(--light); border-top:1px solid var(--line); }
.video-card { max-width:900px; margin:0 auto; background:#080a19; border:1px solid #252842; box-shadow:0 18px 50px rgba(0,0,0,.14); }
.video-card video { width:100%; display:block; max-height:620px; background:#080a19; }
.video-caption { padding:18px 22px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; color:#fff; }
.video-caption strong { font-size:1.05rem; }
.video-caption span { color:#c9cad1; font-size:.9rem; }
@media (max-width:600px) { .build-card img { height:220px; } .video-caption { flex-direction:column; gap:4px; } }

.faq-section { background:#fff; border-top:1px solid var(--line); }
.faq-list { max-width:900px; margin:0 auto; border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { list-style:none; cursor:pointer; padding:22px 50px 22px 20px; position:relative; color:var(--navy); font-weight:900; font-size:1.05rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:20px; top:16px; color:var(--red); font-size:1.7rem; font-weight:400; }
.faq-item[open] summary::after { content:"−"; }
.faq-item[open] summary { background:var(--light); }
.faq-answer { padding:0 50px 20px 20px; color:var(--muted); background:var(--light); }
.faq-answer p { margin:0; }
.faq-cta { max-width:900px; margin:30px auto 0; padding:24px; background:var(--navy); color:#fff; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }
.faq-cta strong, .faq-cta span { display:block; }
.faq-cta strong { font-size:1.25rem; }
.faq-cta span { color:#c9cad1; margin-top:3px; }
.faq-cta-buttons { display:flex; gap:10px; flex-wrap:wrap; }
.btn-outline-dark { border-color:#fff; color:#fff; }
.btn-outline-dark:hover { background:#fff; color:var(--navy); }
@media (max-width:600px) {
  .faq-item summary { padding-left:14px; padding-right:45px; }
  .faq-answer { padding-left:14px; padding-right:25px; }
  .faq-cta { align-items:flex-start; }
}

.project-gallery { margin-top: 34px; }
.gallery-heading { margin-bottom: 18px; }
.gallery-heading h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.55rem; }
.gallery-heading p:last-child { margin: 0; color: var(--muted); }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.gallery-grid a { display:block; overflow:hidden; border-radius:8px; background:#111; aspect-ratio:4/3; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .25s ease; }
.gallery-grid a:hover img { transform:scale(1.04); }
.gallery-grid a:first-child { grid-column:span 2; grid-row:span 2; }
@media (max-width:800px) { .gallery-grid { grid-template-columns:repeat(2,1fr); } .gallery-grid a:first-child { grid-column:span 2; grid-row:span 1; } }
@media (max-width:500px) { .gallery-grid { grid-template-columns:1fr; } .gallery-grid a:first-child { grid-column:span 1; } }

.seo-home-section {
  background: #f3f5f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seo-home-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.seo-home-copy h2 {
  color: var(--navy);
  margin: 8px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.seo-home-copy p:not(.section-kicker) {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 12px;
  line-height: 1.65;
}
.seo-home-copy .btn {
  display: inline-block;
  margin-top: 10px;
}
