:root {
  --ink: #0f172a;
  --muted: #526173;
  --line: #d9e2ef;
  --panel: #ffffff;
  --panel-soft: #f6f8fb;
  --brand: #0b67b2;
  --brand-dark: #064c86;
  --accent: #10a36f;
  --warning: #f0b429;
  --shadow: 0 24px 70px rgba(10, 37, 64, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eef3f8;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: #fff;
  font-weight: 800;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(11, 103, 178, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 64px) 72px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 22, 42, 0.96), rgba(8, 67, 100, 0.86)),
    url("https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(238, 243, 248, 0), #eef3f8);
  content: "";
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.trust-strip {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.trust-strip span {
  border-left: 3px solid var(--warning);
  padding-left: 10px;
}

.logo-showcase {
  position: relative;
  max-width: 780px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo-showcase img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.section {
  padding: 88px clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card,
.steps article,
.benefit-list div,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(10, 37, 64, 0.08);
}

.service-card {
  padding: 24px;
}

.service-card p,
.split p,
.steps p,
.contact p,
.benefit-list span {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  min-width: 58px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #e6f4ff;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  background: #fff;
}

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

.benefit-list div {
  padding: 18px;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.process {
  background: var(--panel-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  padding: 22px;
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 38, 68, 0.94), rgba(7, 83, 80, 0.88)),
    url("https://images.unsplash.com/photo-1563986768711-b3bde3dc821e?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.contact-panel a {
  display: block;
  padding: 20px;
  color: var(--ink);
}

.contact-panel a + a {
  border-top: 1px solid var(--line);
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-panel strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 64px);
  background: #08111f;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .logo-showcase {
    margin: 0;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .logo-showcase {
    padding: 18px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
