:root {
  --bg: #090d14;
  --panel: #111824;
  --panel-2: #161f2d;
  --text: #f4f7fb;
  --muted: #a7b2c3;
  --line: rgba(255,255,255,.1);
  --accent: #ff6a00;
  --accent-2: #ff9a3d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,106,0,.13), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand strong, h1, h2, h3 { font-family: Rajdhani, Inter, sans-serif; }
.brand strong { display:block; font-size: 1.25rem; line-height: 1; }
.brand small { color: var(--accent-2); letter-spacing: .25em; }
.wing {
  width: 44px; height: 44px; border: 1px solid var(--accent);
  display: grid; place-items: center; font-weight: 800; transform: skew(-8deg);
}
nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; }
.nav-cta { border: 1px solid var(--accent); padding: 10px 16px; }
.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: .94; max-width: 900px; margin: 0 0 28px; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; margin: 0 0 22px; }
h3 { font-size: 1.7rem; line-height: 1.1; margin: 12px 0; }
.lead { max-width: 700px; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 20px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; font-weight: 800; border: 0; cursor: pointer;
}
.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#101010; }
.secondary { border: 1px solid var(--line); background: transparent; }
.full { width: 100%; }
.availability { color: var(--muted); font-size: .9rem; }
.status-card {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.status-row { display:flex; gap:10px; align-items:center; font-size:.75rem; letter-spacing:.12em; color:var(--muted); }
.status-row span:last-child { margin-left:auto; color:#72e38d; }
.status-dot { width:10px; height:10px; border-radius:50%; background:#72e38d; box-shadow:0 0 16px #72e38d; }
.status-card h2 { font-size:2.2rem; margin-top:55px; }
.status-card p { color:var(--muted); }
.status-card a { color:var(--accent-2); font-weight:700; }
.trust-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:22px; justify-content:center; padding:18px 20px;
  color:var(--muted); font-size:.86rem; text-transform:uppercase; letter-spacing:.12em;
}
.section { width:min(calc(100% - 32px), var(--max)); margin:0 auto; padding:110px 0; }
.section-heading { max-width:760px; margin-bottom:45px; }
.section-heading > p:last-child, .split p, .contact-copy > p { color:var(--muted); }
.card-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.service-card { background:var(--panel); border:1px solid var(--line); padding:30px; min-height:245px; }
.service-card > span { color:var(--accent); font-weight:800; }
.service-card p { color:var(--muted); }
.split { display:grid; grid-template-columns:1fr 1fr; gap:70px; border-top:1px solid var(--line); }
.contact-section {
  display:grid; grid-template-columns:.85fr 1.15fr; gap:70px;
  background:linear-gradient(145deg, var(--panel), var(--panel-2));
  width:min(calc(100% - 32px), calc(var(--max) + 60px)); padding:70px 30px; margin-bottom:80px;
}
.contact-details { display:flex; flex-direction:column; gap:12px; margin-top:30px; color:var(--accent-2); }
.request-form { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.request-form label { display:flex; flex-direction:column; gap:7px; font-size:.88rem; font-weight:700; }
.request-form label:nth-last-of-type(1), .request-form label:nth-last-of-type(2) { grid-column:1/-1; }
input, select, textarea {
  width:100%; border:1px solid var(--line); background:#0b111a; color:var(--text);
  padding:14px; font:inherit; outline:none;
}
input:focus, select:focus, textarea:focus { border-color:var(--accent); }
.form-note { grid-column:1/-1; color:var(--muted); font-size:.78rem; margin:0; }
footer {
  width:min(calc(100% - 32px), var(--max)); margin:0 auto; padding:34px 0 50px;
  border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; color:var(--muted);
}
footer strong { color:var(--text); }
footer p { margin:4px 0; }

@media (max-width: 800px) {
  nav a:not(.nav-cta) { display:none; }
  .hero { grid-template-columns:1fr; gap:30px; padding:80px 0; min-height:auto; }
  .status-card h2 { margin-top:35px; }
  .card-grid, .split, .contact-section { grid-template-columns:1fr; }
  .section { padding:80px 0; }
  .contact-section { gap:35px; }
}
@media (max-width: 560px) {
  h1 { font-size:3.35rem; }
  .card-grid, .request-form { grid-template-columns:1fr; }
  .request-form label { grid-column:1/-1; }
  footer { flex-direction:column; }
}
