:root {
  --navy: #020f22;
  --navy-2: #071327;
  --ink: #07132b;
  --muted: #647086;
  --line: #e7eaf1;
  --soft: #f6f7fb;
  --pink: #e93c85;
  --pink-2: #c91767;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 28, 45, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.container {
  width: min(82vw, 1680px);
  margin: 0 auto;
}

.narrow { width: min(68vw, 1740px); }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  display: block;
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--pink); }

.quote-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}

.quote-button {
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, #ea438b, #dd2d78);
  box-shadow: 0 14px 28px rgba(233, 60, 133, .25);
}

.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 66% 47%, rgba(18, 31, 50, .62), transparent 32%),
    linear-gradient(120deg, #020f22 0%, #071327 52%, #121f32 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 15, 34, .98) 0%, rgba(2, 15, 34, .88) 30%, rgba(7, 19, 39, .24) 56%, rgba(18, 31, 50, .18) 100%);
}

.hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 48%;
  background-image: url("hero-it-workspace-crop.png");
  background-size: auto 108%;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: .9;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  align-items: center;
  padding-top: 74px;
}

.hero-copy {
  width: min(610px, 100%);
}

.accent-line {
  display: block;
  width: 35px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--pink);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 60px);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 800;
}

.hero p {
  width: min(535px, 100%);
  margin: 26px 0 30px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.62;
}

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

.btn {
  min-width: 165px;
  padding: 0 28px;
}

.btn-primary {
  background: linear-gradient(135deg, #ef448f, #d72b76);
  color: #fff;
  box-shadow: 0 16px 30px rgba(233, 60, 133, .22);
}

.btn-outline {
  color: #fff;
  border: 1px solid var(--pink);
  background: rgba(6, 20, 39, .38);
}

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

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

.trust svg {
  width: 22px;
  height: 22px;
  color: #dce4f1;
  flex: 0 0 auto;
}

.offer-section {
  padding: 34px 0 25px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading span {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--pink);
}

.section-heading strong {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 1.2;
}

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

.service-card {
  min-height: 158px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #a61c57;
  background: #eef0f6;
}

.icon-wrap svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.service-card p {
  min-height: 34px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.service-card a {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

.about-panel {
  display: grid;
  grid-template-columns: 112px 1.5fr 165px 205px;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 20px 30px;
  border-radius: 6px;
  background: #f2f4f9;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.about-panel > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 50%;
  background: #07152b;
}

.about-copy strong {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 800;
}

.about-copy p {
  margin: 12px 0 0;
  color: #26324a;
  font-size: 13px;
  line-height: 1.45;
}

.stat {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 70px;
  color: #9c1d55;
}

.stat + .stat {
  padding-left: 30px;
  border-left: 1px solid #d8deea;
}

.stat svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
}

.stat b,
.stat span {
  display: block;
}

.stat b {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-footer {
  padding: 26px 0 32px;
  border-top: 1px solid #e8ebf2;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr .8fr;
  gap: 62px;
}

@media (min-width: 1500px) {
  .container {
    width: min(82vw, 1860px);
  }

  .narrow {
    width: min(68vw, 1740px);
  }

  .hero-media {
    left: 51%;
    width: 49%;
    background-size: auto 110%;
    background-position: left center;
  }
}

.footer-brand img {
  width: 178px;
}

.footer-brand p,
.site-footer a,
.site-footer span {
  display: block;
  color: #69758a;
  font-size: 13px;
  line-height: 1.9;
}

.site-footer h2 {
  margin: 0 0 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
}

.social {
  width: 32px;
  height: 32px;
  display: grid !important;
  place-items: center;
  border: 1px solid #cfd5e1;
  border-radius: 50%;
  color: var(--ink) !important;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 900px) {
  .container,
  .narrow { width: min(100% - 48px, 1180px); }
  .site-header { position: relative; background: var(--navy); }
  .nav { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: space-between; gap: 14px; }
  .quote-button { margin-left: auto; }
  .hero,
  .hero-content { min-height: 620px; }
  .hero::after { background: linear-gradient(180deg, rgba(3, 13, 27, .94) 0%, rgba(3, 13, 27, .8) 54%, rgba(3, 13, 27, .3) 100%); }
  .hero-media {
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: 62% bottom;
    opacity: .62;
  }
  .hero-content { align-items: flex-start; padding-top: 70px; }
  .cards { grid-template-columns: 1fr; }
  .about-panel { grid-template-columns: 86px 1fr; }
  .stat + .stat { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container,
  .narrow { width: min(100% - 28px, 1180px); }
  .site-header { padding: 18px 0; }
  .brand img { width: 156px; }
  .quote-button { min-height: 42px; padding: 0 18px; font-size: 13px; }
  .main-nav { overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; font-size: 13px; }
  .hero,
  .hero-content { min-height: 650px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .trust { align-items: flex-start; }
  .offer-section { padding-top: 30px; }
  .service-card { grid-template-columns: 58px 1fr; padding: 18px; }
  .icon-wrap { width: 52px; height: 52px; }
  .about-panel { grid-template-columns: 1fr; padding: 22px; }
  .about-panel > img { width: 82px; height: 82px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
