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

:root {
  --bg: #0f1218;
  --bg-2: #161b23;
  --text: #edf0f5;
  --text-2: #7a8799;
  --accent: #e8520a;
  --accent-2: #c43f00;
  --line: #232b38;
  --radius: 8px;
  --font: 'Oswald', system-ui, sans-serif;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Top bar ── */
.top-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 40px; background: var(--accent); font-size: 13px; font-weight: 600; color: #fff;
}
.top-bar a { color: #fff; text-decoration: none; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px; height: 68px;
  background: rgba(15,18,24,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 19px; font-weight: 700; text-decoration: none; color: var(--text); }
.brand span { color: var(--accent); }
.nav-toggle { display: none; }
.menu-button { display: none; cursor: pointer; font-size: 22px; margin-left: auto; color: var(--text); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 14px; transition: .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 20px; border-radius: 6px; font-weight: 700; }
.nav-cta:hover { background: var(--accent-2) !important; }

/* ── Hero ── */
.hero {
  position: relative; min-height: calc(100vh - 108px);
  display: flex; align-items: flex-end;
  background: var(--bg) url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&h=900&fit=crop') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 30%, rgba(0,0,0,.15) 100%); }
.hero-content { position: relative; z-index: 1; padding: 80px 64px; max-width: 720px; }
.eyebrow { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: clamp(52px, 6vw, 88px); line-height: 1.0; font-weight: 900; margin-bottom: 20px; }
.hero-content p { font-size: 17px; color: rgba(237,240,245,.7); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 700; text-decoration: none; transition: .2s; }
.btn-orange { background: var(--accent); color: #fff; }
.btn-orange:hover { background: var(--accent-2); }
.btn-ghost { border: 1.5px solid rgba(237,240,245,.2); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Intro band ── */
.intro-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--accent); background: var(--bg-2); }
.intro-band article { padding: 32px 28px; border-right: 1px solid var(--line); }
.intro-band article:last-child { border-right: none; }
.intro-band strong { display: block; font-size: 34px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.intro-band span { font-size: 13px; color: var(--text-2); }

/* ── Sections ── */
section:not(.hero):not(.intro-band) { padding: 88px 64px; }
.section-heading { margin-bottom: 52px; }
.label { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-heading h2 { font-size: clamp(28px, 3vw, 44px); }

/* ── Services ── */
.services { background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }
.service-card { padding: 44px 36px; background: var(--bg-2); transition: .2s; }
.service-card:hover { background: rgba(232,82,10,.06); }
.snum { display: block; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .1em; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: 14px; line-height: 1.75; }

/* ── Feature strip ── */
.feature-strip { display: grid; grid-template-columns: 1fr 1fr; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-image { background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=900&h=700&fit=crop') center/cover; min-height: 480px; }
.feature-copy { padding: 72px 56px; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; }
.feature-copy h2 { font-size: clamp(26px, 2.5vw, 38px); margin: 12px 0 20px; }
.feature-copy p { color: var(--text-2); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { font-size: 14px; color: var(--text-2); padding-left: 20px; position: relative; }
.check-list li::before { content: '→'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }

/* ── Pricing ── */
.pricing { background: var(--bg); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { padding: 36px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.price-card.main-price { border-color: var(--accent); }
.price-card p { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 14px; }
.price-card strong { display: block; font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.price-card.main-price strong { color: var(--accent); }
.price-card span { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── CTA ── */
.cta { background: var(--bg-2); border-top: 3px solid var(--accent); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(24px, 3vw, 36px); margin: 10px 0 8px; }
.cta p { color: var(--text-2); }

/* ── Sticky call ── */
.sticky-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 24px; border-radius: 50px; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 24px rgba(232,82,10,.4);
}

/* ── Footer ── */
.footer { padding: 28px 64px; border-top: 1px solid var(--line); font-size: 13px; }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .top-bar { padding: 8px 16px; font-size: 12px; }
  .hero-content { padding: 48px 24px; }
  section:not(.hero):not(.intro-band) { padding: 56px 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .intro-band { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-image { min-height: 240px; }
  .feature-copy { padding: 40px 24px; }
  .price-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .site-header { padding: 0 20px; }
  .menu-button { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 16px; margin-left: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .footer { padding: 24px; }
}
