:root {
  --navy: #071426;
  --navy-2: #0e2138;
  --charcoal: #20272f;
  --gold: #b7893a;
  --gold-2: #d0a55b;
  --muted: #697380;
  --line: #e6e9ee;
  --bg: #f7f8fa;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 20, 38, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}
.brand img { width: 250px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--navy); font-weight: 700; }
.nav a, .footer-links a { text-decoration: none; }
.nav a:hover, .footer-links a:hover { color: var(--gold); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}
.header-cta:hover { background: var(--gold); color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(183,137,58,0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #0b1d33 55%, #0d1118);
  color: var(--white);
  padding: 96px 0 88px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -90px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(208,165,91,0.22);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
}
h1, h2, h3 { margin: 0; line-height: 1.08; color: inherit; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); letter-spacing: -0.06em; max-width: 840px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; }
.hero-text { margin: 24px 0 0; max-width: 680px; color: #d8dee8; font-size: 1.16rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}
.btn-primary { background: var(--gold); color: var(--white); box-shadow: 0 14px 34px rgba(183,137,58,0.28); }
.btn-primary:hover { background: #9f7730; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.22); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.hero-card {
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-card img { width: 220px; margin: 0 auto; }
.hero-card p { margin: 20px 0 0; text-align: center; font-weight: 900; color: var(--navy); letter-spacing: 0.02em; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 0;
}
.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}
.trust-grid span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }

.section { padding: 86px 0; background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(7, 20, 38, 0.06);
}
.card h3 { color: var(--navy); }
.card p { margin: 12px 0 0; color: var(--muted); }
.card-wide { grid-column: span 2; background: linear-gradient(135deg, #fbfaf7, #fff); border-color: rgba(183,137,58,0.32); }
.note-box {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: var(--bg);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 800;
}
.section-dark { background: var(--navy); color: var(--white); }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 58px; align-items: start; }
.split p:not(.eyebrow) { color: #d8dee8; font-size: 1.15rem; margin: 0; }

.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-grid > div > p { color: var(--muted); font-size: 1.08rem; }
.contact-details { margin-top: 28px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-details p { margin: 0; }
.contact-details p + p { margin-top: 10px; }
.contact-details a, .form-note a { color: var(--navy); font-weight: 800; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label { display: block; margin: 14px 0 7px; font-weight: 900; color: var(--navy); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #d7dde5;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(183,137,58,0.22); border-color: var(--gold); }
.contact-form button { width: 100%; margin-top: 20px; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 0.95rem; }
.hidden { display: none; }

.footer { background: #07101c; color: #d9dee6; padding: 30px 0; font-size: 0.95rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { margin: 0; }
.footer p + p { margin-top: 6px; color: #aab4c1; }
.footer-links { display: flex; gap: 18px; white-space: nowrap; }

.simple-page { min-height: 100vh; display: flex; align-items: center; background: var(--bg); }
.simple-card { background: var(--white); border-radius: 26px; padding: 42px; box-shadow: var(--shadow); max-width: 720px; }
.simple-card img { width: 280px; margin-bottom: 28px; }
.simple-card p { color: var(--muted); }
.simple-card .btn { margin-top: 12px; }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; padding: 12px 0; }
  .brand img { width: 220px; }
  .nav { order: 3; width: 100%; justify-content: center; gap: 18px; padding-bottom: 8px; }
  .header-cta { display: none; }
  .hero { padding: 70px 0; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 360px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 190px; }
  .nav { font-size: 0.92rem; }
  h1 { font-size: 2.75rem; }
  .hero-actions .btn { width: 100%; }
  .trust-grid, .cards { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .section { padding: 66px 0; }
  .contact-form { padding: 20px; }
}
