:root {
  --blue: #0865d8;
  --blue-dark: #064fac;
  --green: #4eb941;
  --ink: #111a33;
  --muted: #5f6a80;
  --line: #e8edf5;
  --panel: #f6f9fe;
  --white: #ffffff;
  --shadow: 0 14px 42px rgba(17, 26, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header,
main,
.site-footer {
  width: calc(100% - 72px);
  max-width: 1180px;
  margin-inline: auto;
}

.site-header {
  padding: 20px 0 16px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-mark {
  width: 78px;
  height: 78px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  font-weight: 800;
  font-size: 14px;
}

.site-menu a {
  position: relative;
  padding: 13px 2px;
  color: var(--ink);
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 42px;
  height: 3px;
  border-radius: 10px;
  background: var(--blue);
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--blue);
}

.site-menu a:hover::after,
.site-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(8, 101, 216, 0.2);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  gap: 10px;
  color: var(--blue);
  background: var(--white);
}

.play-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--white);
  transform: translate(-36%, -50%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  border-radius: 99px;
  background: currentColor;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  padding: 20px 32px 28px;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-copy p {
  max-width: 480px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  font-weight: 600;
}

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

.hero-actions .button {
  min-width: 198px;
  min-height: 48px;
}

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 26, 51, 0.04);
  overflow: hidden;
}

.proof-strip article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 96px;
  padding: 20px 30px;
}

.proof-strip article + article {
  border-left: 1px solid var(--line);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--green);
  background: #effbea;
}

.icon-badge svg,
.icon-badge img {
  width: 31px;
  height: 31px;
}

.proof-strip h2,
.service-card h3,
.contact-intro h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.proof-strip p,
.service-card p,
.about-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  font-weight: 600;
}

.section-heading {
  text-align: center;
  margin: 18px 0 24px;
}

.section-heading > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(25px, 3vw, 31px);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
}

.about-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: start;
  padding: 22px 16px 24px;
}

.section-heading.compact {
  text-align: left;
  margin: 0;
}

.section-heading.compact span {
  margin-bottom: 10px;
}

.section-heading.compact h2::after {
  left: 0;
  transform: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-grid p {
  margin: 0;
  font-size: 15px;
}

.services-section {
  padding-top: 10px;
}

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

.service-card {
  min-height: 150px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card svg,
.service-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--blue);
}

.approach-section {
  padding: 18px 0 8px;
}

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

.approach-steps article {
  position: relative;
  min-height: 186px;
  padding: 22px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.approach-steps article::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -15px;
  width: 16px;
  height: 1px;
  background: var(--line);
}

.approach-steps article:last-child::after {
  display: none;
}

.approach-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
  font-size: 12px;
  font-weight: 900;
}

.approach-steps h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.approach-steps p,
.final-cta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 28px 0 0;
  padding: 30px 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.final-cta h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 26px;
  align-items: center;
  margin: 26px 0 24px;
  padding: 24px 26px;
  border-radius: 8px;
  background: var(--panel);
}

.contact-intro {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  font-style: normal;
}

.contact-details a,
.contact-details > span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-details svg {
  width: 27px;
  height: 27px;
  color: var(--blue);
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
}

.contact-details span span,
.contact-details a span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 6px 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.footer-brand span {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  font-weight: 600;
}

.site-footer p {
  margin: 0;
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 36px);
    max-width: 620px;
  }

  .site-header {
    padding-top: 18px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    z-index: 20;
  }

  .nav-cta {
    display: none;
  }

  .site-menu {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
    display: grid;
    gap: 0;
    justify-items: center;
    padding: 98px 28px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform 220ms ease;
  }

  .site-menu.open {
    transform: translateY(0);
  }

  .site-menu a {
    width: 100%;
    max-width: 360px;
    text-align: center;
    padding: 18px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 14px;
    padding: 18px 0 24px;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 7.5vw, 42px);
  }

  .hero-copy p {
    margin: 12px 0 14px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: min(100%, 240px);
    min-height: 40px;
  }

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

  .proof-strip article {
    display: block;
    min-height: 172px;
    padding: 18px 12px;
    text-align: center;
  }

  .icon-badge {
    margin: 0 auto 14px;
  }

  .proof-strip h2 {
    font-size: 14px;
  }

  .proof-strip p {
    font-size: 12px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-inline: 4px;
  }

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

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

  .service-card {
    padding: 22px 16px 20px;
  }

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

  .approach-steps article {
    min-height: 156px;
  }

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

  .final-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px;
  }

  .final-cta .button {
    width: max-content;
  }

  .contact-band {
    grid-template-columns: 1fr auto;
    gap: 18px 20px;
    padding: 20px;
  }

  .contact-details {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 38px);
    max-width: 520px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.58fr);
    align-items: start;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 482px;
  }

  .proof-strip article {
    min-width: 0;
  }

  .hero-image {
    align-self: center;
    margin-top: 26px;
  }

  .hero-image img {
    width: min(100%, 190px);
    margin-left: auto;
  }

  .button {
    padding-inline: 18px;
    font-size: 13px;
  }

  .section-heading {
    margin-top: 28px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
  }

  .approach-steps {
    gap: 12px;
  }

  .approach-steps article {
    padding: 18px 14px;
  }

  .approach-steps p {
    font-size: 12px;
  }

  .final-cta h2 {
    font-size: 23px;
  }

  .contact-band {
    grid-template-columns: 1fr auto;
  }

  .contact-intro {
    grid-template-columns: 52px 1fr;
  }

  .contact-intro h2 {
    font-size: 17px;
  }

  .contact-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
  }

  .contact-details a,
  .contact-details > span {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .contact-details svg {
    width: 24px;
    height: 24px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding-bottom: 24px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .footer-brand span {
    display: block;
    padding-left: 0;
    border-left: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .site-footer p {
    text-align: right;
    line-height: 1.55;
  }
}

@media (max-width: 460px) {
  .site-header,
  main,
  .site-footer {
    width: calc(100% - 30px);
    max-width: 390px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr) 116px;
    gap: 6px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-copy p {
    font-size: 15px;
  }

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

  .proof-strip {
    margin-top: 8px;
  }

  .proof-strip article {
    min-height: 206px;
    padding: 16px 8px;
  }

  .proof-strip h2,
  .proof-strip p {
    overflow-wrap: anywhere;
  }
  .service-card {
    min-height: 148px;
  }

  .service-card svg,
  .service-card img {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

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

  .approach-steps article {
    min-height: 0;
  }

  .approach-steps span {
    margin-bottom: 12px;
  }

  .final-cta {
    padding: 24px 18px;
  }

  .final-cta .button {
    width: 100%;
  }

  .contact-band {
    padding: 18px 14px;
  }
}

@media (max-width: 360px) {
  .hero-section {
    grid-template-columns: minmax(0, 1fr) 94px;
  }

  .hero-image img {
    width: 150px;
  }

  .proof-strip article {
    min-height: 216px;
    padding-inline: 5px;
  }
}
