:root {
  --navy: #153459;
  --navy-2: #1f446e;
  --orange: #f58220;
  --orange-dark: #dc6f16;
  --ink: #1f2937;
  --muted: #667085;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --line: #dbe3ef;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 74px; height: 74px; object-fit: contain; }
.brand-name { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.03em; }
.brand-tag { color: var(--muted); font-size: 0.95rem; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; color: #334155; }
.nav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.nav-cta:hover { background: var(--orange-dark) !important; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.25rem;
}

.hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 130, 32, 0.16), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(21, 52, 89, 0.12), transparent 28%),
    linear-gradient(180deg, #fff, #f8fbff 100%);
  padding: 72px 0 52px;
}
.hero-grid, .split-grid, .cta-grid, .contact-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.15fr .85fr; }
.eyebrow {
  display: inline-block;
  color: var(--orange-dark);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.eyebrow.light { color: #ffd3ad; }
h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.1; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 14px; color: #475467; }
.hero-copy p { font-size: 1.1rem; max-width: 760px; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.btn-secondary:hover { border-color: #b8c7da; }
.btn-light { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); color: #fff; }
.card-dark {
  background: linear-gradient(160deg, #16355a, #0f2038);
  border-radius: 32px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; }
.trust-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
.trust-chip {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--navy);
}

.stats-section { padding: 0 0 40px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat-number { color: var(--navy); font-size: 1.5rem; font-weight: 900; margin-bottom: 6px; }
.stat-label { color: var(--muted); font-weight: 600; }

.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head > p { max-width: 420px; }
.cards-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.service-card, .trust-panel, .feature-card, .service-long-card, .contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card { padding: 26px; }
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.split-grid { grid-template-columns: 1fr 1fr; }
.feature-stack { display: grid; gap: 18px; }
.feature-card { padding: 24px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: #475467;
  font-weight: 600;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #e7f1ff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}
.check-list.compact li { margin-bottom: 10px; }
.trust-panel { padding: 28px; }
.trust-panel img { width: 70px; height: 70px; margin-bottom: 16px; }

.cta-band {
  padding: 80px 0;
  background: linear-gradient(145deg, #10253f, #17385d);
  color: #fff;
}
.cta-grid { grid-template-columns: 1.1fr .9fr; }
.cta-band p { color: rgba(255,255,255,0.8); }

.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.85);
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr;
  gap: 26px;
}
.footer-logo { width: 120px; margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,0.75); }
.site-footer h4 { color: #fff; margin-bottom: 14px; }
.site-footer a, .site-footer span { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }

.page-hero {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-bottom: 1px solid var(--line);
}
.long-cards {
  display: grid;
  gap: 18px;
}
.service-long-card { padding: 26px; }
.contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
.contact-card { padding: 30px; }
.contact-form { display: grid; gap: 18px; }
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #334155;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(245,130,32,0.15);
  border-color: var(--orange);
}
.form-row.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-side { display: grid; gap: 18px; }
.contact-side a { color: var(--navy); font-weight: 700; }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.thanks-card {
  max-width: 620px;
  text-align: center;
  padding: 40px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 1000px) {
  .hero-grid,
  .split-grid,
  .cta-grid,
  .contact-grid,
  .section-head,
  .footer-grid,
  .stats-grid,
  .cards-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head { align-items: start; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .nav.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .hero-grid,
  .split-grid,
  .cta-grid,
  .contact-grid,
  .stats-grid,
  .cards-grid,
  .trust-grid,
  .footer-grid,
  .section-head,
  .form-row.two-up {
    grid-template-columns: 1fr;
  }
  .trust-row { grid-template-columns: 1fr; }
  .brand-logo { width: 62px; height: 62px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section, .cta-band { padding: 68px 0; }
}
