* {
  box-sizing: border-box;
}

:root {
  --blue: #0f2747;
  --blue-2: #173b6d;
  --red: #d62828;
  --light: #f4f7fb;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #091a30;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
}

.brand-text h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.brand-text p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--blue);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn-primary:hover {
  background: #b91c1c;
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 2px solid #dbe4f0;
}

.btn-secondary:hover {
  background: #f8fafc;
}

.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,39,71,0.92), rgba(23,59,109,0.82)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #dbeafe;
}

.eyebrow.dark {
  color: var(--red);
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1.05;
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: 18px;
  color: #eef4ff;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.hero-card p {
  color: #eef4ff;
}

.hero-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.hero-card li {
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--blue);
  color: #fff;
}

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

.section-heading h2,
.section-dark h2,
.contact-section h2 {
  margin: 0 0 10px;
  font-size: 38px;
}

.section-heading p,
.section-dark p {
  color: var(--muted);
}

.section-dark p {
  color: #dbeafe;
}

.grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 39, 71, 0.06);
}

.card h3 {
  margin-top: 0;
  color: var(--blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.about-box {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}

.about-box h3 {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 16px;
}

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(15,39,71,0.08);
}

.contact-card p {
  margin: 0 0 16px;
  font-size: 18px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
}

.full-btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.site-footer {
  background: #091a30;
  color: #fff;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p,
.copyright {
  margin: 0;
  color: #d1d5db;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .desktop-btn {
    display: none;
  }

  .hero-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .brand-text h1 {
    font-size: 22px;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding: 72px 0;
  }

  .hero-copy h2 {
    font-size: 32px;
  }

  .section-heading h2,
  .section-dark h2,
  .contact-section h2 {
    font-size: 30px;
  }

  .topbar-inner {
    font-size: 13px;
  }
}
