:root {
  --primary: #0d1f45;
  --primary-2: #1b3f86;
  --accent: #d4a83f;
  --accent-2: #f0c866;
  --ink: #101a2b;
  --muted: #5f6f87;
  --bg: #f3f6fb;
  --bg-soft: #fbfcff;
  --white: #ffffff;
  --border: #e3e9f5;
  --radius: 16px;
  --shadow-soft: 0 12px 28px rgba(12, 29, 68, 0.08);
  --shadow-card: 0 20px 44px rgba(17, 39, 81, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 200, 102, 0.16), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(35, 85, 174, 0.1), transparent 26%),
    var(--bg-soft);
}

img { max-width: 100%; display: block; }
ul { padding-left: 1.1rem; margin: 0.75rem 0 0; color: var(--muted); }
li { margin-bottom: 0.34rem; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.narrow { width: min(860px, 100%); }
h1, h2, h3 { line-height: 1.18; margin: 0 0 0.7rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.7vw, 3.9rem); max-width: 980px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #0f2148 0%, #17356f 55%, #1f4b95 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 168, 63, 0), rgba(212, 168, 63, 0.9), rgba(212, 168, 63, 0));
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  width: 106px;
  height: 106px;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.main-nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.main-nav a {
  color: #e6eeff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.3rem 0.05rem;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
  border-bottom-color: rgba(240, 200, 102, 0.95);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 0.4rem 0.58rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: clamp(98px, 15vh, 158px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 20, 45, 0.28), rgba(9, 20, 45, 0.08));
  pointer-events: none;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  padding: 3rem 0 1.4rem;
}

.hero-content {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #ffffff 0%, #f7faff 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #7d6320;
  background: #fff4d8;
  border: 1px solid #f3dfac;
  padding: 0.25rem 0.52rem;
  border-radius: 999px;
}

.subtitle {
  max-width: 840px;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--muted);
  margin-bottom: 1.45rem;
}

.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: 12px;
  padding: 0.78rem 1.12rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #2b230f;
  box-shadow: 0 8px 20px rgba(212, 168, 63, 0.34);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-outline {
  color: var(--primary);
  border: 1px solid #c4d4f5;
  background: #f4f8ff;
}
.btn-outline:hover { background: #eaf2ff; }

.section { padding: 4.6rem 0; }
.section,
#home {
  scroll-margin-top: 120px;
}
.section h2 { font-size: clamp(1.65rem, 3.2vw, 2.45rem); color: var(--primary); margin-bottom: 1rem; }
.section p { color: var(--muted); margin-top: 0; }
.section-intro { max-width: 900px; margin-bottom: 1.4rem; font-size: 1.02rem; }
.section-metrics { padding-top: 0.4rem; }

.section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  border-top: 1px solid #e7edf8;
  border-bottom: 1px solid #e7edf8;
}

.grid { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.metric-card {
  background: linear-gradient(140deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1.1rem;
}

.metric-card h3 {
  color: var(--primary-2);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.metric-card p {
  font-size: 0.93rem;
  margin-bottom: 0;
}

.card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #d2def5;
}

.card h3 {
  color: var(--primary-2);
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.bullets > div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem 1.05rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.contact {
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
}

.request-form {
  background: var(--white);
  border: 1px solid #d7e3fb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.form-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.request-form label {
  font-size: 0.86rem;
  color: #203456;
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #ccd9f3;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  padding: 0.68rem 0.72rem;
  background: #fcfdff;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #8aa7e6;
  box-shadow: 0 0 0 3px rgba(74, 120, 214, 0.14);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  display: grid;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.submit-btn {
  border: 0;
  cursor: pointer;
}

.contact-side {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.contact-box {
  margin-top: 1rem;
  border: 1px solid #d7e3fb;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.contact-box p { margin: 0.48rem 0; }
.contact-box h3 {
  color: var(--primary);
  margin-bottom: 0.55rem;
}

.map-wrap {
  border: 1px solid #d7e3fb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: linear-gradient(180deg, #0f2148 0%, #0a1733 100%);
  color: #d5e1ff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px;
}

@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .brand {
    width: 84px;
    height: 84px;
  }
  .main-nav a:hover {
    background: #edf3ff;
    color: var(--primary-2);
  }
  .menu-btn { display: block; }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 4%;
    right: 4%;
    border-radius: 14px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
    background: rgba(255, 255, 255, 0.96);
  }
  .main-nav a {
    width: 100%;
    border-radius: 10px;
    color: var(--primary);
    padding: 0.55rem 0.6rem;
    border-bottom: 0;
  }
  .main-nav.open { display: flex; }

  .cards-3,
  .cards-2,
  .bullets,
  .metrics-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }

  .hero { min-height: 12vh; }
  .section { padding: 3.5rem 0; }
}
