:root {
  --navy: #061a43;
  --blue: #0d56c2;
  --blue-2: #125fcf;
  --sky: #1b7fe5;
  --pale: #eef6ff;
  --line: #d6e2f4;
  --text: #071d45;
  --muted: #526170;
  --white: #fff;
  --shadow: 0 12px 30px rgba(7, 29, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--white);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 36px, 748px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--navy);
  box-shadow: 0 2px 18px rgba(6, 26, 67, 0.08);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 236px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 16px;
  font-weight: 700;
}

.nav-check,
.menu-toggle {
  display: none;
}

.main-nav a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:first-child {
  color: var(--blue);
  border-color: var(--blue);
}

.btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  font: 700 11px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b55c6, #1048a8);
  box-shadow: 0 8px 18px rgba(13, 86, 194, 0.22);
  font-size: 16px;
}

.btn-sky {
  color: var(--white);
  background: #1687e8;
      font-size: 13px;
}

.small-btn {
  min-width: 88px;
  min-height: 34px;
}

.hero {
  position: relative;
  min-height: 319px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #f3f9ff 42%, rgba(238, 246, 255, 0.78) 58%, rgba(238, 246, 255, 0.2) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 190px;
  height: 120px;
  opacity: 0.22;
  background: radial-gradient(circle, #145bbd 1px, transparent 2px);
  background-size: 26px 26px;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 56%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

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

.hero-copy {
  width: 49%;
  padding-bottom: 6px;
}

.hero h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-line {
  margin: 0 0 14px;
  color: #061a43;
  font-size: 13px;
  font-weight: 800;
}

.hero-text {
  max-width: 340px;
  margin: 0 0 21px;
  color: #102a4e;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-card {
  display: inline-flex;
  min-width: 130px;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--navy);
  border: 1px solid var(--blue);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
}

.call-card small,
.feature-item small,
.why-list small,
.reviewer small {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.call-card strong {
  display: block;
  font-size: 15px;
  line-height: 1;
}

.phone-icon,
.btn-icon {
  color: inherit;
  font-size: 20px;
}

.features {
  background: var(--white);
  border-top: 1px solid #ecf1f8;
  border-bottom: 1px solid #ecf1f8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 100px;
  align-items: center;
}

.feature-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item strong {
  display: block;
  font-size: 16px;
}

.line-icon,
.service-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  border: 2px solid #2c70ce;
  border-radius: 50%;
}

.line-icon {
  width: 28px;
  height: 28px;
  font-size: 16px;
}

.section-soft {
  background: linear-gradient(90deg, #fff 0%, #f4f9ff 100%);
}

.about {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  min-height: 0;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
}

.section-copy {
  max-width: 560px;
  padding: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #b8d9ff;
}

.section-copy h2,
.section-heading h2,
.why h2,
.urgent h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.08;
}

.section-copy p:not(.eyebrow),
.why-copy p,
.contact-info p {
  color: #26364b;
  font-size: 15px;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 22px;
}

.about-visual {
  position: relative;
  width: min(100%, 500px);
  height: clamp(280px, 29vw, 370px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(13, 86, 194, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(7, 29, 69, 0.13);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  text-align: center;
  color: var(--navy);
  border: 7px solid rgba(13, 86, 194, 0.12);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.experience-badge strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 0.9;
}

.experience-badge span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
}

.services {
  padding: 26px 0 16px;
  background: #fff;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 31px);
}

.heading-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 13px;
}

.service-card {
  min-height: 171px;
  padding: 16px 12px 13px;
  text-align: center;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(7, 29, 69, 0.04);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-inline: auto;
  font-size: 20px;
  border: 0;
  background: #e9f1ff;
}

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

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.why {
  position: relative;
  overflow: hidden;
  padding: 30px 0 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 50%, rgba(48, 132, 235, 0.36), transparent 24%),
    linear-gradient(120deg, #052051 0%, #083279 56%, #0b59c4 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.why h2,
.urgent h2 {
  color: #fff;
}

.why-copy p {
  max-width: 330px;
  margin: 16px 0 20px;
  color: #e4efff;
}

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

.why-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 10px;
  min-height: 72px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.why-list span {
  grid-row: span 2;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: #fff;
}

.why-list strong {
  font-size: 15px;
}

.why-list small {
  color: #d9e9ff;
}

.urgent {
  color: #fff;
  overflow: hidden;
  background: linear-gradient(100deg, #0b4cad, #1169d6);
}

.urgent-wrap {
  position: relative;
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 32px;
  padding: 28px 0;
}

.urgent img {
  display: none;
}

.urgent h2 {
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.12;
  white-space: normal;
}

.urgent p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.light-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.urgent .call-card {
  justify-self: end;
  width: 100%;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 7px;
}

.reviews {
  padding: 24px 0 28px;
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.review-card {
  position: relative;
  min-height: 106px;
  padding: 16px 18px 14px 58px;
  border: 1px solid #dce5f2;
  border-radius: 7px;
}

.quote {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  background: #e8f2ff;
}

.stars {
  color: #f7b813;
  font-size: 14px;
  letter-spacing: 1px;
}

.review-card p {
  margin: 5px 0 12px;
  font-size: 16px;
  line-height: 1.4;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 9px;
}

.reviewer span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  background: linear-gradient(135deg, #1765c8, #0a294f);
}

.reviewer strong {
  display: block;
  font-size: 10px;
}

.contact {
  padding: 28px 0 10px;
  border-top: 1px solid #ecf1f8;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.45fr;
  gap: 36px;
}

.contact-info h2 {
  font-size: 27px;
}

.contact-info p:not(.eyebrow) {
  max-width: 260px;
  margin: 8px 0 18px;
}

.contact-info ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info li span {
  color: var(--blue);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 13px;
  margin-top: 17px;
}

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  background: #0b3475;
}

.contact-form {
  padding: 20px;
  border: 1px solid #e5edf7;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(7, 29, 69, 0.04);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #33455d;
  font: 11px Arial, Helvetica, sans-serif;
  border: 1px solid #dce5f2;
  border-radius: 5px;
  outline: 0;
  background: #fff;
}

select,
textarea {
  margin-top: 12px;
}

textarea {
  min-height: 70px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 12px;
}

.brands {
  padding: 15px 0 17px;
  text-align: center;
  border-top: 1px solid #edf2f9;
}

.brands img {
  width: 755px;
  margin: 12px auto 0;
}

.footer {
  color: #d9e9ff;
  background:
    radial-gradient(circle at 85% 30%, rgba(50, 130, 235, 0.35), transparent 28%),
    linear-gradient(120deg, #051b45, #07327a 58%, #041d4b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1.3fr;
  gap: 34px;
  padding: 24px 0 22px;
}

.footer-brand img {
    width: 152px;
    background-color: #FFF;
    margin-bottom: 8px;
    padding: 7px;
    border-radius: 4px;
} 

.footer p,
.footer a {
  color: #d9e9ff;
  font-size: 16px;
}

.footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
}

.footer a {
  display: block;
  margin-bottom: 5px;
}

.footer p {
  margin: 0 0 6px;
}

.footer-socials {
  margin-top: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1000px) {
  .container {
    width: min(96% - 110px, 1500px);
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 62px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 0;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    order: 2;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
    border: 1px solid #e3ebf7;
    border-radius: 7px;
    background: #f8fbff;
    font-size: 13px;
  }

  .main-nav a:hover,
  .main-nav a:first-child {
    border-color: var(--blue);
  }

  .nav-check:checked ~ .main-nav {
    display: grid;
  }

  .nav-btn {
    order: 1;
    margin-left: auto;
    min-height: 36px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 260px;
    opacity: 0.98;
  }

  .hero-content {
    min-height: auto;
    padding: 28px 0;
  }

  .hero-copy {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .review-grid,
  .footer-grid,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .split,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 54px 0;
  }

  .about-visual {
    width: 100%;
    
    justify-self: stretch;
  }

  .why-grid {
    gap: 28px;
  }

  .urgent-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 0;
  }

  .urgent .call-card {
    justify-self: start;
    width: min(100%, 320px);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 748px);
  }

  .nav-btn {
    padding-inline: 14px;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .call-card,
  .urgent .call-card {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .review-grid,
  .footer-grid,
  .why-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .about {
    padding: 42px 0;
  }

  .experience-badge {
    right: 14px;
    top: 14px;
    width: 78px;
    height: 78px;
    border-width: 6px;
  }

  .experience-badge strong {
    font-size: 25px;
  }

  .experience-badge span {
    font-size: 8px;
  }

  .urgent-wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 0;
    text-align: left;
  }

  .urgent h2 {
    font-size: 26px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .urgent p {
    font-size: 12px;
  }

  .urgent .call-card {
    min-width: 0;
  }
}
