:root {
  --navy: #0b1f3a;
  --navy-2: #102b50;
  --gold: #d4a84f;
  --bg: #f5f7fb;
  --text: #14233a;
  --muted: #5d6b7d;
  --white: #ffffff;
  --border: #dde5ef;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.14);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--navy); color: var(--gold); font-weight: 900; }
.brand-text { color: var(--navy); }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--navy); }
.nav-phone { text-decoration: none; background: var(--navy); color: white; padding: 11px 16px; border-radius: 999px; font-weight: 800; }

.hero { background: radial-gradient(circle at top right, #1a3b68 0, var(--navy) 42%, #07172b 100%); color: var(--white); padding: 92px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 800; color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.02; letter-spacing: -.04em; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.12; letter-spacing: -.03em; color: var(--navy); margin-bottom: 18px; }
.hero h2 { color: var(--white); font-size: 28px; }
.lead { font-size: 19px; color: rgba(255,255,255,.82); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.btn-primary { background: var(--gold); color: #1c1608; }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); padding: 8px 12px; border-radius: 999px; color: rgba(255,255,255,.86); font-size: 14px; }
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); }
.card-topline { width: 72px; height: 5px; border-radius: 999px; background: var(--gold); margin-bottom: 26px; }
.hero-card p { color: rgba(255,255,255,.78); }
.contact-person { display: flex; align-items: center; gap: 14px; margin: 28px 0 18px; }
.avatar { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--gold); color: var(--navy); font-weight: 900; }
.contact-person strong, .contact-person span { display: block; }
.contact-person span { color: rgba(255,255,255,.72); }
.big-phone { display: block; color: white; font-size: 32px; font-weight: 900; text-decoration: none; letter-spacing: -.03em; }

.section { padding: 86px 0; background: var(--white); }
.section.alt { background: var(--bg); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading p, .split p, .contact-section p { color: var(--muted); font-size: 17px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .contact-box { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: 0 12px 34px rgba(11, 31, 58, .07); }
.service-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--muted); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.features { display: grid; gap: 14px; }
.feature { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; background: white; border: 1px solid var(--border); border-radius: 20px; padding: 18px; }
.feature strong { color: var(--gold); font-size: 20px; }
.feature span { font-weight: 600; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 44px; align-items: start; }
.contact-box h3 { color: var(--navy); font-size: 28px; margin-bottom: 20px; }
.contact-box a { color: var(--navy); font-weight: 900; }
.small-note { font-size: 13px !important; border-top: 1px solid var(--border); padding-top: 16px; }
.footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { color: white; font-weight: 800; text-decoration: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero-grid, .split, .contact-grid, .cards.three { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .nav-phone { display: none; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 38px; }
  .section { padding: 62px 0; }
  .big-phone { font-size: 26px; }
  .hero-card, .service-card, .contact-box { padding: 24px; border-radius: 22px; }
}
