:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #1d4ed8;
  --border: #e2e8f0;
  --footer-bg: #0f234a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section-sm {
  padding: 1.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: grid;
  grid-template-columns: 36px auto;
  column-gap: 0.5rem;
  align-items: center;
}

.brand img {
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
}

.brand-title {
  font-weight: 700;
  line-height: 1;
}

.brand small {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 0.93rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.3rem 0.6rem;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.45rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  color: #2563eb;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  margin-bottom: 0.8rem;
}

.section-intro {
  color: var(--muted);
  margin: 0.8rem 0 1rem;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-card {
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--surface);
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.quick-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.top-banner {
  padding-top: 0.2rem;
  padding-bottom: 1.2rem;
}

.top-banner-grid {
  background: linear-gradient(120deg, #0d1f4f 0%, #17367a 50%, #0f2b64 100%);
  border-radius: 1rem;
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid #1e3a8a;
}

.top-banner-content {
  color: #e2e8f0;
}

.top-banner .eyebrow {
  color: #facc15;
}

.top-banner-content h1 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}

.top-banner-content .section-intro {
  color: #cbd5e1;
  margin-bottom: 0.9rem;
}

.banner-points {
  display: grid;
  gap: 0.45rem;
}

.banner-points span {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #dbeafe;
  font-size: 0.92rem;
}

.banner-points i {
  color: #22d3ee;
  margin-top: 0.1rem;
}

.top-banner-media {
  display: block;
}

.banner-main-image,
.banner-side-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #2f4c8d;
  background: rgba(255, 255, 255, 0.08);
}

.icon-wrap {
  min-width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.icon-wrap.small {
  min-width: 36px;
  height: 36px;
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-grid article {
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.7rem;
  display: flex;
  gap: 0.6rem;
}

.feature-grid p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.section-image img {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: #fff;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.section-soft {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: #fff;
  padding: 1rem;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-head .icon-wrap.small {
  min-width: 34px;
  height: 34px;
  font-size: 0.95rem;
}

.service-head h3 {
  font-size: 1.08rem;
}

.card p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  padding: 2.3rem 0;
  background: linear-gradient(90deg, #091a46, #0c2f7d);
  color: #fff;
}

.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-band p {
  margin-top: 0.3rem;
  color: #dbeafe;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-list p {
  margin: 0.65rem 0;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.trusted {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 0.85rem 0 1rem;
}

.trusted p {
  text-align: center;
  color: #475569;
  font-weight: 600;
  font-size: 0.9rem;
}

.trusted-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.trusted-list .brand-logo {
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border: 0;
  border-radius: 0.65rem;
  padding: 0.5rem 0.6rem;
  width: 100%;
  max-width: 165px;
  height: 58px;
  object-fit: contain;
}

.brand-logo {
  filter: saturate(1.02);
  opacity: 0.98;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.site-footer {
  background: var(--footer-bg);
  color: #dbeafe;
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-grid.big {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer a {
  color: #bfd5ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.3rem;
}

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.newsletter-form button {
  padding-inline: 0.8rem;
}

.copyright {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #9dbdf3;
}

@media (max-width: 1024px) {
  .top-banner-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid.big {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 4%;
    min-width: 220px;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .quick-services-grid,
  .feature-grid,
  .service-grid,
  .footer-grid.big {
    grid-template-columns: 1fr;
  }

  .trusted-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .trusted-list .brand-logo {
    max-width: 148px;
    height: 54px;
    padding: 0.45rem 0.55rem;
  }

  .cta-band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
