:root {
  --blue: #0e4596;
  --blue-dark: #082a5b;
  --yellow: #f6bf00;
  --gray-900: #1f2329;
  --gray-700: #4e5661;
  --gray-200: #d6dce5;
  --gray-100: #edf1f6;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(6, 20, 47, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--gray-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 191, 0, 0.18), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(14, 69, 150, 0.13), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

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

.topbar {
  background: var(--blue-dark);
  color: #d9e6ff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 5rem);
  font-size: 0.95rem;
}

.topbar a {
  color: var(--yellow);
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 5rem);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(8, 42, 91, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.25rem;
}

.brand strong {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--blue);
}

.brand span {
  color: var(--gray-700);
  font-size: 0.9rem;
}

nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  color: var(--gray-700);
}

.btn-call,
.btn-primary,
.btn-ghost,
.quote button {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-call {
  padding: 0.6rem 1.1rem;
  background: var(--blue);
  color: var(--white);
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.25fr 1fr;
}

.hero-copy {
  background: linear-gradient(160deg, rgba(14, 69, 150, 0.98), rgba(10, 34, 75, 0.96));
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 26px solid rgba(246, 191, 0, 0.24);
  border-radius: 50%;
  right: -80px;
  bottom: -80px;
}

.badge {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  color: #d9e6ff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 1rem 0 0.9rem;
  max-width: 14ch;
}

.hero-copy > p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #d2def2;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn-primary,
.btn-ghost,
.quote button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
}

.btn-primary,
.quote button {
  background: var(--yellow);
  color: #2d2500;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.74rem;
  color: #e8f0ff;
  font-size: 0.9rem;
}

.quote {
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  border: 1px solid #d9e2f0;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  box-shadow: var(--shadow);
}

.quote h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}

.quote p {
  margin: 0.45rem 0 1rem;
  color: var(--gray-700);
}

form {
  display: grid;
  gap: 0.72rem;
}

label {
  font-size: 0.9rem;
  color: var(--gray-700);
  display: grid;
  gap: 0.35rem;
}

input,
select {
  border: 1px solid #c9d4e5;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #f8fbff;
}

.metrics {
  margin: 1.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.metrics article {
  background: var(--white);
  border: 1px solid #d9e2f0;
  border-radius: var(--radius);
  text-align: center;
  padding: 1rem 0.8rem;
}

.metrics h3 {
  font-family: "Teko", sans-serif;
  color: var(--blue);
  font-size: 2.2rem;
  margin: 0;
  line-height: 0.95;
}

.metrics p {
  margin: 0.35rem 0 0;
  color: var(--gray-700);
}

.services,
.process,
.cta {
  margin-top: 3.4rem;
}

.section-head p {
  margin: 0;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.section-head h2 {
  margin: 0.42rem 0 0;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.cards {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.cards article {
  background: var(--white);
  border: 1px solid #d5dfed;
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.cards article::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 191, 0, 0.32), transparent 70%);
}

.cards h3 {
  margin: 0;
}

.cards p {
  color: var(--gray-700);
  line-height: 1.4;
  min-height: 68px;
}

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

.steps {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.steps article {
  border-radius: var(--radius);
  background: linear-gradient(170deg, #112f61, #0a2450);
  color: var(--white);
  padding: 1rem;
}

.steps span {
  font-family: "Teko", sans-serif;
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
}

.steps h3 {
  margin: 0.2rem 0 0;
}

.steps p {
  margin: 0.45rem 0 0;
  color: #d6e3ff;
}

.cta {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid #d0daea;
  background:
    radial-gradient(circle at 0% 100%, rgba(246, 191, 0, 0.2), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(14, 69, 150, 0.19), transparent 35%),
    #f7fbff;
  text-align: center;
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.cta h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.cta p {
  color: var(--gray-700);
  max-width: 60ch;
  margin: 0.6rem auto 1.05rem;
}

.cta div {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.cta .btn-ghost {
  color: var(--blue);
  border-color: #8ea8d2;
}

.btn-call:hover,
.btn-primary:hover,
.btn-ghost:hover,
.quote button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 34, 72, 0.18);
}

.footer {
  width: min(1180px, 92vw);
  margin: 3rem auto 2rem;
  padding: 1rem 0;
  border-top: 1px solid #ccd8ea;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gray-700);
}

.footer strong {
  color: var(--blue);
  font-family: "Teko", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.footer p {
  margin: 0.2rem 0 0;
}

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  .hero-grid,
  .cards,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.8rem;
  }

  .btn-call {
    display: none;
  }

  .hero,
  .services,
  .process,
  .cta {
    margin-top: 1.5rem;
    padding-top: 0;
  }

  .hero-grid,
  .metrics,
  .cards,
  .steps,
  .cta div,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer {
    padding-bottom: 1.6rem;
  }
}
