:root {
  --navy: #0b1f3a;
  --navy-2: #12365f;
  --gold: #c89b3c;
  --gold-light: #f3d891;
  --ink: #122033;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 31, 58, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,0.9);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-light);
  box-shadow: 0 12px 26px rgba(11,31,58,0.18);
}
.logo-text { font-size: 1.15rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 600; color: #26364d; }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #101827;
  font-weight: 800;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 26px rgba(200,155,60,0.25);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); box-shadow: none; }
.btn-small { min-height: 42px; padding: 0 18px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(200,155,60,0.18), transparent 32%),
    linear-gradient(135deg, #07182d 0%, #0b1f3a 52%, #12365f 100%);
  color: var(--white);
  padding: 92px 0 78px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
.hero h1 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.7rem); line-height: 0.96; letter-spacing: -0.07em; max-width: 820px; }
.hero-text { margin: 26px 0 0; max-width: 660px; color: #d8e2ef; font-size: 1.18rem; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; max-width: 720px; }
.trust-row div { padding: 16px; border: 1px solid rgba(255,255,255,0.13); border-radius: 18px; background: rgba(255,255,255,0.06); }
.trust-row strong { display: block; color: var(--white); }
.trust-row span { color: #b8c7da; font-size: 0.9rem; }
.hero-card { background: rgba(255,255,255,0.96); color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.card-topline { width: 70px; height: 5px; border-radius: 999px; background: var(--gold); margin-bottom: 24px; }
.hero-card h2 { margin: 0 0 18px; color: var(--navy); line-height: 1.15; font-size: 1.8rem; }
.hero-card ul { padding-left: 20px; margin: 0 0 26px; color: #314158; }
.hero-card li { margin: 10px 0; }
.text-link { color: var(--navy); font-weight: 800; }

.section { padding: 86px 0; }
.logos-strip { padding: 24px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center; color: var(--muted); font-weight: 800; font-size: 0.92rem; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.narrow { max-width: 640px; }
.section-heading h2, .highlight h2, .cta-card h2, .contact-section h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; letter-spacing: -0.045em; color: var(--navy); }
.section-heading p:not(.eyebrow), .highlight p, .cta-card p, .contact-section p { color: var(--muted); font-size: 1.05rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: 0.2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(12,31,58,0.09); }
.icon { width: 48px; height: 48px; border-radius: 15px; background: #fff7e4; color: #9b6d0f; display: grid; place-items: center; font-weight: 800; margin-bottom: 18px; }
.service-card h3, .process-step h3, .feature-list h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.22rem; }
.service-card p, .process-step p, .feature-list p { margin: 0; color: var(--muted); }

.highlight { background: linear-gradient(180deg, var(--bg), #fff); }
.highlight-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.feature-list { display: grid; gap: 18px; }
.feature-list div { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; padding: 26px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); }
.process-step span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: var(--navy); color: var(--gold-light); font-weight: 800; margin-bottom: 24px; }

.cta-section { padding: 30px 0 92px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 42px; border-radius: 30px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); box-shadow: var(--shadow); }
.cta-card h2 { color: var(--white); }
.cta-card p { color: #d4e0ee; margin-bottom: 0; }

.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-details { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-details p { margin: 10px 0; }
.contact-details a { color: var(--navy); font-weight: 700; }
.contact-form { display: grid; gap: 16px; padding: 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 40px rgba(12,31,58,0.08); }
label { display: grid; gap: 7px; font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid #d7dde7;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(200,155,60,0.22); border-color: var(--gold); }
textarea { resize: vertical; }

.footer { background: #07182d; color: #c8d5e5; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 38px; }
.footer-logo .logo-text { color: var(--white); }
.footer h3 { color: var(--white); margin: 0 0 16px; }
.footer a, .footer span { display: block; color: #c8d5e5; margin: 8px 0; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; }
.disclaimer { max-width: 520px; text-align: right; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; inset: 76px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .highlight-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .disclaimer { text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 66px 0 56px; }
  .section { padding: 64px 0; }
  .cards-grid, .process-grid, .strip-grid { grid-template-columns: 1fr; }
  .hero-card, .contact-form, .cta-card { padding: 24px; }
  .hero-actions .btn { width: 100%; }
}
