:root {
  --primary: #0f4fa7;
  --primary-dark: #0b2d6d;
  --accent: #ff9821;
  --accent-soft: #fff4e7;
  --ink: #1f2937;
  --muted: #667085;
  --surface: #ffffff;
  --surface-alt: #f7f9fc;
  --border: #e8edf5;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1360px, calc(100% - 1.25rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 79, 167, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 152, 33, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead,
.section-heading p:last-child,
.about-panel p,
.feature-list p,
.service-card p,
.process-list span,
.contact-copy p,
.contact-notes span,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(232, 237, 245, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 0;
}

.brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(320px, 52vw);
  max-height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  color: #344054;
  font-size: 0.97rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-alt);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary-dark);
  border-radius: 2px;
}

.hero-grid,
.about-grid,
.feature-grid,
.process-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero-grid,
.feature-grid,
.process-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-wrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-wrap .contact-copy {
  max-width: 560px;
}

.hero {
  padding-top: 4rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2271d4);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #fff;
  border-color: #cfe0fb;
}

.btn-full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-metrics article,
.info-card,
.service-card,
.about-panel,
.about-image-wrap,
.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.hero-metrics article {
  padding: 1.25rem 1.1rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-card {
  padding: 1.5rem;
}

.hero-card img,
.process-visual img,
.feature-visual img {
  width: 100%;
}

.about-panel {
  padding: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 255, 0.97));
}

.about-image-wrap {
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
}

.info-card img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 1.2rem;
}

.service-card {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c5d9fb;
  background:
    linear-gradient(180deg, #ffffff, #f1f7ff);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--primary);
  background: var(--accent-soft);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list article {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.process-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  padding: 0 0 1.5rem 4rem;
  counter-increment: step;
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff6d1f);
  font-weight: 700;
}

.process-list strong,
.contact-notes strong {
  display: block;
  margin-bottom: 0.45rem;
}

.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f9fbff 22%, #f4f8ff 100%);
}

.contact-notes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-wrap .contact-notes {
  text-align: left;
}

.contact-notes article {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact-wrap .btn {
  margin-top: 1.5rem;
}

.site-footer {
  padding: 1.5rem 0 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.footer-logo img {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 280px;
}

.footer-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.25rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--primary);
}

.footer-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-link:hover .footer-icon,
.footer-link:focus-visible .footer-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.footer-link-address span:last-child {
  flex: 1;
}

.footer-copyright {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .section {
    padding: 4rem 0;
  }

  .hero-grid,
  .about-grid,
  .feature-grid,
  .process-grid,
  .three-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy,
  .feature-copy,
  .process-copy {
    max-width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand img {
    max-width: min(280px, 50vw);
    max-height: 68px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-metrics,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .hero-card,
  .info-card,
  .service-card {
    padding: 1.35rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-contact {
    min-width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 0.75rem, 1360px);
  }

  .section {
    padding: 3.5rem 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .brand img {
    max-width: min(260px, 58vw);
    max-height: 64px;
  }

  .nav-wrap {
    min-height: 88px;
  }

  .hero-actions .btn,
  .btn-full {
    width: 100%;
  }
}
