:root {
  --blue: #0a3d62;
  --blue-strong: #0d4e7a;
  --gold: #c9a227;
  --gold-strong: #b8941f;
  --ink: #17324d;
  --muted: #667085;
  --line: #e8edf3;
  --soft-blue: rgba(10, 61, 98, 0.06);
  --soft-gold: rgba(201, 162, 39, 0.12);
  --shadow: 0 24px 60px rgba(13, 31, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 237, 243, 0.9);
}

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

.brand img {
  height: 58px;
  width: auto;
}

.desktop-nav,
.mobile-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover,
.contact-list a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-strong);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-gold {
  width: 100%;
  border: 0;
  background: var(--gold);
  color: var(--blue);
}

.btn-gold:hover {
  background: var(--gold-strong);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 0 16px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(10, 61, 98, 0.1), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(10, 61, 98, 0.04), #fff 45%, rgba(201, 162, 39, 0.05));
}

.hero-grid,
.two-col,
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.hero-copy h1,
.content-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--blue);
  line-height: 1.08;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p,
.content-copy p,
.section-heading p,
.service-card p,
.contact-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow-blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.eyebrow-gold {
  color: var(--gold);
  background: var(--soft-gold);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.logo-frame {
  position: relative;
  border-radius: var(--radius-lg);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 36px;
  background: linear-gradient(90deg, rgba(10, 61, 98, 0.18), rgba(201, 162, 39, 0.2));
  filter: blur(28px);
}

.logo-frame img {
  position: relative;
  width: min(100%, 460px);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.stats-card {
  position: relative;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.08), rgba(201, 162, 39, 0.12));
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-blue {
  background: var(--soft-blue);
}

.stat-blue strong {
  color: var(--blue);
}

.stat-gold {
  background: var(--soft-gold);
}

.stat-gold strong {
  color: var(--gold);
}

.content-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tag-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 54px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 61, 98, 0.18);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 1.3rem;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.contact-list h4,
.site-footer h4 {
  margin: 0 0 8px;
  color: var(--blue);
}

.contact-card {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 2rem;
}

.contact-card form,
.contact-card label {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card span {
  font-weight: 600;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--blue);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer div > a,
.site-footer div > p {
  display: block;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    height: 48px;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .stats-grid,
  .form-row,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-card,
  .service-card {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}
