:root {
  --navy: #0a1f44;
  --royal: #1d4ed8;
  --red: #b91c1c;
  --gold: #d4af37;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --line: #dbe5f4;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 31, 68, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
}

.logo {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--red), #ef4444);
  font-weight: 800;
}
.logo strong { display: block; font-size: .98rem; }
.logo small { display: block; opacity: .85; font-size: .75rem; }

nav a { color: white; text-decoration: none; margin-left: .95rem; font-weight: 600; }

.hero {
  position: relative;
  color: white;
  background: radial-gradient(circle at 50% 0%, #2b2b2b 0, #111827 55%, #060a14 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px),
    repeating-linear-gradient(180deg, rgba(185,28,28,.18) 0 18px, rgba(255,255,255,.08) 18px 36px);
  mix-blend-mode: screen;
  opacity: .55;
}
.hero-inner { position: relative; padding: 4.2rem 0 3.8rem; text-align: center; }
.kicker {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.45);
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .85rem;
  background: rgba(255,255,255,.1);
}
.hero h1 {
  margin: .8rem 0;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  max-width: 900px;
}
.hero-copy { max-width: 760px; font-size: 1.05rem; margin: 0 auto; }
.hero-brand-image {
  display: block;
  width: min(520px, 100%);
  margin: 1rem auto 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.5);
  box-shadow: 0 20px 34px rgba(0,0,0,.45);
}
.hero-brand-image-large {
  width: min(620px, 100%);
}
.hero h1 { color: #f8f1c7; }
.kicker { border-color: rgba(212,175,55,.55); background: rgba(212,175,55,.12); }
.hero-actions { margin-top: 1.25rem; display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

.section { padding: 3.6rem 0; }
.section-alt { background: #eef3ff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin: 0 0 .35rem; color: #0b1e47; }
h3 { margin-top: 0; color: #0b1e47; }
.section-intro { color: var(--muted); margin-bottom: 1rem; }

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  border-top: 5px solid var(--red);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
}

.split {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 1rem;
}
.checks { padding-left: 1.1rem; }
.checks li { margin: .35rem 0; }

.contact-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.contact-box a { color: var(--royal); text-decoration: none; }
.muted { color: var(--muted); }

.form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}
.row {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
label { display: grid; gap: .35rem; margin-bottom: .75rem; font-weight: 600; }
input, textarea {
  font: inherit;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: .66rem;
}
input:focus, textarea:focus { outline: 2px solid #93c5fd; border-color: #60a5fa; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: .65rem; }

.btn {
  border: 0;
  border-radius: 10px;
  padding: .7rem 1rem;
  text-decoration: none;
  color: white;
  background: linear-gradient(145deg, var(--red), #dc2626);
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.05); }
.btn-sm { padding: .45rem .85rem; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.65);
}

.site-footer {
  background: #08142f;
  color: white;
  padding: 1rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer a { color: #cfe2ff; text-decoration: none; }

@media (max-width: 800px) {
  .nav { flex-direction: column; align-items: flex-start; }
  nav a { margin: 0 .8rem 0 0; }
  .split { grid-template-columns: 1fr; }
}
