:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --text: #263348;
  --muted: #5f6b7b;
  --blue: #112c57;
  --red: #e6332f;
  --line: #dde3eb;
  --footer: #0d2d59;
  --shadow: 0 10px 30px rgba(17, 44, 87, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 860px; }
.center { text-align: center; }

.hero {
  background: linear-gradient(90deg, #f8f8f8 0%, #f8f8f8 49%, #ebeff4 64%, #d8e2ed 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-top: 26px;
}
.hero-copy {
  padding: 10px 0 20px;
  position: relative;
  z-index: 2;
}
.logo {
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 18px;
}
.eyebrow {
  color: #5a86c9;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.hero h1 span { color: var(--red); display: block; margin-top: 6px; }
.lead {
  margin: 20px 0 0;
  max-width: 520px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
  color: var(--muted);
}
.hero-actions { margin-top: 28px; }
.hero-visual {
  min-height: 560px;
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80px;
  width: 180px;
  background: radial-gradient(circle at left, rgba(248,248,248,1) 0%, rgba(248,248,248,.98) 30%, rgba(248,248,248,.72) 55%, rgba(248,248,248,0) 100%);
  z-index: 2;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(243,244,246,0) 0%, rgba(243,244,246,.78) 70%, rgba(243,244,246,1) 100%);
  z-index: 2;
}
.hero-visual img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  transition: .2s ease;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 22px rgba(230, 51, 47, .22);
}
.btn-primary:hover { transform: translateY(-1px); background: #d62f2c; }
.full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 18px 0 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #32415d;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0cccc;
  background: white;
  color: var(--red);
  box-shadow: 0 2px 8px rgba(20, 43, 87, .05);
  flex: 0 0 48px;
}

.section { padding: 64px 0; }
.section-services { padding-top: 54px; }
.section-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 14px;
}
.section h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 900;
}
.section p { color: var(--muted); }
.narrow p {
  margin: 16px auto 0;
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.card {
  background: var(--surface);
  border: 1px solid #dfe4ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.card-body {
  padding: 24px 20px 24px;
  position: relative;
}
.icon-badge {
  position: absolute;
  top: -32px;
  left: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 18px rgba(17, 44, 87, .13);
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 29px;
}
.card h3 {
  margin: 22px 0 10px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
}
.card p {
  margin: 0;
  min-height: 76px;
  font-size: 16px;
  line-height: 1.7;
}
.card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #3e4c60;
}
.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}
.card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.why-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(17, 44, 87, .06);
}
.features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
}
.feature {
  display: flex;
  gap: 14px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  color: var(--red);
  font-size: 25px;
}
.feature h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--blue);
}
.feature p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.steps-section { padding-top: 36px; }
.steps {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  padding: 10px 18px;
  text-align: center;
}
.step-top {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: #ecf2fb;
  color: #5b6779;
  font-size: 28px;
}
.step-number {
  font-size: 54px;
  line-height: 1;
  color: var(--red);
  font-weight: 900;
}
.step h3 {
  margin: 14px 0 8px;
  color: var(--blue);
  font-size: 20px;
}
.step p {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-wrap { padding-top: 18px; }
.cta-box {
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 26px;
  align-items: center;
}
.cta-box h2 {
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.08;
}
.cta-box h2 span {
  display: block;
  color: var(--red);
}
.cta-box p {
  margin: 16px 0 0;
  font-size: 20px;
}
.cta-contact {
  max-width: 420px;
  justify-self: end;
  width: 100%;
}
.contact-list {
  margin-top: 22px;
  color: #24344f;
  font-size: 19px;
  font-weight: 600;
  display: grid;
  gap: 10px;
}
.cta-note {
  margin-top: 16px;
  font-size: 18px;
}

.footer {
  margin-top: 8px;
  background: var(--footer);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 40px 0 30px;
}
.footer h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  color: rgba(255,255,255,.8);
}
.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  font-size: 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  padding: 16px 20px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .why-grid,
  .cta-box,
  .cards,
  .steps,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .cta-contact { justify-self: start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1440px); }
  .hero-copy { padding-top: 2px; }
  .logo { max-width: 360px; margin-bottom: 14px; }
  .eyebrow { font-size: 15px; }
  .hero-visual { min-height: 310px; }
  .hero-visual::before,
  .hero-visual::after { display: none; }
  .trust-row,
  .cards,
  .why-grid,
  .features,
  .steps,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-row { gap: 14px; }
  .trust-item { font-size: 15px; }
  .section { padding: 50px 0; }
  .section-services { padding-top: 42px; }
  .narrow p { font-size: 17px; }
  .card p { min-height: auto; }
  .step { padding: 6px 4px; }
  .step p { max-width: none; }
  .cta-box { padding: 24px 20px; }
  .cta-box p { font-size: 17px; }
  .contact-list { font-size: 17px; }
}
