:root {
  --blue: #071f3a;
  --blue-2: #0d5ea6;
  --blue-3: #123b63;
  --orange: #f47b2a;
  --orange-2: #f6ad38;
  --orange-soft: #fff1e7;
  --blue-soft: #edf7ff;
  --white: #ffffff;
  --ink: #0a1729;
  --muted: #5a6574;
  --line: #dde8f2;
  --shadow: 0 28px 70px rgba(7, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 6vw, 90px);
  border-bottom: 1px solid rgba(221, 232, 242, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  color: var(--blue);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 950;
}

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

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

.brand small {
  max-width: 150px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.7vw, 34px);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(244, 123, 42, 0.28);
}

.button.secondary {
  color: var(--blue);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 30px rgba(7, 31, 58, 0.08);
}

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

.section-pad {
  padding: 82px clamp(20px, 6vw, 90px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: 44px;
  min-height: 720px;
  padding: 62px clamp(20px, 6vw, 90px) 76px;
  overflow: hidden;
  background:
    linear-gradient(110deg, #fff 0%, #fff 41%, rgba(237, 247, 255, 0.6) 72%, #fff 100%),
    radial-gradient(circle at 18% 28%, rgba(244, 123, 42, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(13, 94, 166, 0.14), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(13, 94, 166, 0.16);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

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

h1 {
  margin-bottom: 26px;
  color: var(--blue);
  font-size: clamp(3rem, 5.7vw, 6.2rem);
  line-height: 0.96;
}

h1 span,
h2 span {
  color: var(--orange);
}

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #21364f;
  font-size: 1.2rem;
  line-height: 1.68;
}

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

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(7, 31, 58, 0.06);
}

.proof-strip strong {
  color: var(--blue);
}

.hero-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 560px;
}

.hero-photo,
.about-media {
  background-position: center;
  background-size: cover;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(7, 31, 58, 0.04), rgba(7, 31, 58, 0.26)),
    url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=1400&q=80");
  box-shadow: var(--shadow);
}

.insight-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(7, 31, 58, 0.18);
  backdrop-filter: blur(16px);
}

.insight-main {
  right: 28px;
  bottom: 28px;
  width: min(360px, 82%);
  padding: 22px;
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.insight-main strong {
  display: block;
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1.2;
}

.signal-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
}

.signal-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}

.insight-small {
  top: 28px;
  left: -24px;
  display: flex;
  max-width: 250px;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.insight-small p {
  margin: 0;
  color: var(--blue);
  font-weight: 850;
  line-height: 1.35;
}

.dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(244, 123, 42, 0.16);
}

.problem,
.method,
.difference {
  background: linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}

.problem h2,
.newsletter h2,
.contact h2,
.about h2,
.impact h2,
.section-title,
.section-heading h2 {
  color: var(--blue);
  font-size: clamp(2.05rem, 3.45vw, 3.5rem);
  line-height: 1.05;
}

.problem h2,
.section-title {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

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

.feature-row article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  box-shadow: 0 18px 44px rgba(7, 31, 58, 0.06);
}

.icon,
.step-icon {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  font-weight: 950;
}

.icon-blue,
.step-icon.blue {
  color: var(--blue-2);
  background: var(--blue-soft);
}

.icon-orange,
.step-icon.orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.feature-row h3,
.steps h3,
.service-card h3,
.impact-grid strong {
  margin-bottom: 10px;
  color: #071c34;
  font-size: 1.18rem;
}

.feature-row p,
.steps p,
.service-card p,
.about p,
.contact p,
.newsletter p,
.impact-grid span {
  color: var(--muted);
  line-height: 1.58;
}

.impact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 46px;
  align-items: center;
  background: var(--blue);
}

.impact .eyebrow,
.impact h2 {
  color: #fff;
}

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

.impact-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-grid strong,
.impact-grid span {
  display: block;
  color: #fff;
}

.impact-grid span {
  color: #d7e8fb;
}

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

.steps article {
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 36px;
  right: -18px;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.2 / 0.78;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card.featured {
  transform: translateY(-14px);
  border-color: rgba(244, 123, 42, 0.32);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.badge.blue {
  background: var(--blue-2);
}

.badge.orange {
  background: var(--orange);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 90px);
  background: linear-gradient(90deg, #fff 0%, #fff 36%, #edf7ff 100%);
}

.about-copy {
  max-width: 680px;
  padding: 94px 0;
}

.about p {
  margin-bottom: 30px;
  font-size: 1.07rem;
}

.about-media {
  min-height: 560px;
  margin-right: calc(clamp(20px, 6vw, 90px) * -1);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80");
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(255, 241, 231, 0.92), rgba(237, 247, 255, 0.92)),
    radial-gradient(circle at 15% 50%, rgba(244, 123, 42, 0.18), transparent 34%);
}

.newsletter-copy p {
  max-width: 640px;
  margin-bottom: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(7, 31, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.newsletter-form .form-note {
  grid-column: 1 / -1;
  color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 0.86fr);
  gap: 56px;
  padding: 88px clamp(20px, 6vw, 90px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 58, 0.98), rgba(13, 94, 166, 0.9)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.contact h2,
.contact p,
.contact .eyebrow {
  color: #fff;
}

.contact-copy {
  align-self: center;
  max-width: 650px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(7, 31, 58, 0.12);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 42, 0.18);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #d8ecff;
  font-weight: 850;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.95fr;
  gap: 54px;
  padding: 48px 86px 36px;
  color: #fff;
  background: #061727;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 950;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-align: center;
}


@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
  }

  .hero,
  .impact,
  .about,
  .newsletter,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

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

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

  .steps article::after {
    display: none;
  }

  .about-media {
    margin-right: 0;
  }
}

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

  .nav {
    display: none;
  }

  .header-cta,
  .button {
    width: 100%;
  }

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

  .hero-stage {
    min-height: 420px;
  }

  .insight-small {
    left: 12px;
    max-width: 220px;
  }

  .feature-row,
  .steps,
  .cards,
  .impact-grid,
  .footer,
  .form-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }

  .about {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-media {
    min-height: 360px;
  }
}
