:root {
  --ink: #080b10;
  --muted: #667085;
  --line: #e6ebf2;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --blue: #1194ee;
  --blue-deep: #056bb2;
  --shadow: 0 24px 70px rgba(7, 21, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(17, 148, 238, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 158px;
  height: 54px;
  object-fit: contain;
}

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

.main-nav a {
  border-radius: 8px;
  color: #263241;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.main-nav a:hover {
  background: #eef7ff;
  color: var(--blue-deep);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 44px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 70px 0 56px;
}

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-text,
.section-heading p,
.split-section p,
.about-card p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  padding: 0 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(8, 11, 16, 0.2);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #17202c;
}

.button.full {
  width: 100%;
}

.hero-panel {
  position: relative;
  padding: 18px;
}

.hero-panel::before {
  position: absolute;
  inset: 6% -2% auto auto;
  width: 68%;
  height: 82%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 148, 238, 0.18), rgba(8, 11, 16, 0.06));
  content: "";
  transform: rotate(4deg);
}

.logo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: contain;
  padding: 28px;
}

.market-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: -8px 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.market-strip span {
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  padding: 14px 10px;
  text-align: center;
}

.trust-strip,
.section,
.split-section,
.about-section,
.contact-section,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.88);
  padding: 28px;
}

.trust-strip strong,
.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.trust-strip span,
.process-list span,
.service-card p,
.contact-card p,
footer p {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 96px 0;
}

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

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

.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(17, 148, 238, 0.42);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
  transform: translateY(-4px);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #eef7ff;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.about-section {
  padding: 96px 0 40px;
}

.about-card {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 11, 16, 0.95), rgba(16, 32, 48, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
  color: #ffffff;
  padding: clamp(34px, 6vw, 72px);
}

.about-card .eyebrow,
.about-card p {
  color: #b8dfff;
}

.about-card h2 {
  max-width: 720px;
}

.about-card p {
  max-width: 760px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.stats div {
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
}

.stats span {
  color: #d8ecff;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 48px;
  padding: 56px 0 86px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-card span {
  display: block;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card > a:not(.button) {
  display: inline-block;
  margin: 14px 0 8px;
  font-size: 34px;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
}

footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
  }

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

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .trust-strip,
  .service-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .market-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 132px;
  }

  .hero,
  .trust-strip,
  .section,
  .split-section,
  .about-section,
  .contact-section,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-panel {
    padding: 0;
  }

  .logo-card img {
    padding: 18px;
  }

  .service-card,
  .trust-strip div,
  .process-list div,
  .contact-card {
    padding: 22px;
  }

  .contact-card > a:not(.button) {
    font-size: 28px;
  }
}
