:root {
  --color-primary: #075CE5;
  --color-primary-hover: #004EC8;
  --color-dark: #0B1F35;
  --color-dark-secondary: #132B46;
  --color-text: #102033;
  --color-muted: #657184;
  --color-border: #E3E8EF;
  --color-background: #F7F9FC;
  --color-white: #FFFFFF;
  --shadow-soft: 0 18px 45px rgba(16, 32, 51, 0.08);
  --shadow-dark: 0 28px 60px rgba(11, 31, 53, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "Manrope", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(7, 92, 229, 0.34);
  outline-offset: 3px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-inline: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(227, 232, 239, 0.86);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 310px;
}

.brand__mark {
  position: relative;
  width: 38px;
  height: 44px;
  color: var(--color-primary);
  flex: 0 0 auto;
}

.brand__mark span {
  position: absolute;
  bottom: 0;
  width: 8px;
  border: 4px solid currentColor;
  border-bottom: 0;
}

.brand__mark span:nth-child(1) {
  left: 0;
  height: 24px;
}

.brand__mark span:nth-child(2) {
  left: 13px;
  height: 38px;
  transform: skewY(-28deg);
  transform-origin: bottom;
}

.brand__mark span:nth-child(3) {
  right: 0;
  height: 29px;
  transform: skewY(28deg);
  transform-origin: bottom;
}

.brand__text strong {
  display: block;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.brand__text small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a,
.mobile-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--color-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.service-card > a svg,
.contact-cta svg,
.hero__trust svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(7, 92, 229, 0.18);
}

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

.button--secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: #9FADBE;
  color: var(--color-text);
}

.button--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.site-header__cta {
  min-width: 196px;
}

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

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 43%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.2) 68%, rgba(255, 255, 255, 0) 78%),
    radial-gradient(circle at 6% 82%, rgba(11, 31, 53, 0.05) 0 1px, transparent 2px);
  pointer-events: none;
}

.hero::after,
.contact-cta__inner::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  background:
    radial-gradient(circle at center, transparent 0 78px, var(--color-dark) 79px 80px, transparent 81px),
    radial-gradient(circle at center, transparent 0 118px, var(--color-dark) 119px 120px, transparent 121px),
    linear-gradient(38deg, transparent 48%, var(--color-dark) 48.4%, transparent 49%),
    linear-gradient(145deg, transparent 50%, var(--color-dark) 50.4%, transparent 51%);
}

.hero::after {
  left: -42px;
  bottom: 46px;
  width: 390px;
  height: 260px;
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: 0;
}

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

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding-block: 74px 128px;
}

.hero__content {
  width: min(66%, 820px);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(56px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 540px;
  margin: 24px 0 18px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.hero__trust svg {
  width: 36px;
  height: 36px;
  color: var(--color-text);
  flex: 0 0 auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__actions .button {
  min-width: 218px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 64px), 1440px);
  min-height: 118px;
  margin: -70px auto 0;
  padding: 28px 34px;
  background: linear-gradient(110deg, var(--color-dark), var(--color-dark-secondary));
  color: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
}

.trust-strip__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  padding-inline: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip__item:first-child {
  padding-left: 0;
}

.trust-strip__item:last-child {
  padding-right: 12px;
  border-right: 0;
}

.trust-strip__item svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__item strong {
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.14;
  font-weight: 800;
  min-width: 0;
}

.trust-strip__item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.services,
.advantages,
.technologies,
.projects {
  background: var(--color-white);
}

.services {
  padding: 82px 0 52px;
}

.services h2,
.projects h2,
.advantages h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(36px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 800;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-card {
  position: relative;
  min-height: 246px;
  padding: 30px 32px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 92, 229, 0.38);
  box-shadow: var(--shadow-soft);
}

.service-card > svg {
  width: 50px;
  height: 50px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 22px 0 14px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card > a {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: var(--color-muted);
}

.advantages {
  padding: 44px 0;
}

.advantages__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 46px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.advantages__list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 20px;
  padding-inline: 30px;
  border-left: 1px solid var(--color-border);
}

.advantages__list svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.advantages__list h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.22;
}

.advantages__list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.technologies {
  padding: 8px 0 42px;
}

.technologies__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1fr;
  align-items: center;
  gap: 32px;
  padding: 26px 32px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.04);
}

.technologies h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
}

.technologies p {
  margin: 0;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
}

.technologies span {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.projects {
  padding: 46px 0 54px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.project-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.05);
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:nth-child(2) img {
  object-position: center;
}

.project-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  background: var(--color-white);
}

.project-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.project-card p {
  margin: 16px 0 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.project-card__subtitle {
  margin: 12px 0 0 !important;
  color: var(--color-text) !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.42 !important;
}

.project-card__subtitle + p {
  margin-top: 14px;
}

.project-card__body span {
  margin: auto 0 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-cta {
  padding: 30px 0 0;
  background: var(--color-white);
}

.contact-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(220px, 0.9fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 180px;
  padding: 34px 38px;
  background: linear-gradient(110deg, var(--color-dark), var(--color-dark-secondary));
  color: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
}

.contact-cta__inner::before {
  left: 210px;
  bottom: -82px;
  width: 420px;
  height: 260px;
  filter: invert(1);
}

.contact-cta__inner > * {
  position: relative;
  z-index: 1;
}

.contact-cta h2 {
  color: var(--color-white);
}

.contact-cta p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  font-style: normal;
}

address a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

address svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.site-footer {
  background: var(--color-white);
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding-block: 26px;
}

.site-footer strong {
  color: var(--color-text);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 53, 0.64);
}

.contact-modal {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(100%, 760px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 34px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
}

.contact-modal h2 {
  margin: 0 40px 4px 0;
  font-size: 30px;
  line-height: 1.15;
}

.contact-modal > p {
  max-width: 640px;
  margin: -8px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.58;
}

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

.contact-option {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fbfcfe;
}

.contact-option svg {
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.contact-option__value {
  color: var(--color-muted);
  font-size: 17px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-option .button {
  width: fit-content;
  min-width: 164px;
  margin-top: 6px;
}

.contact-modal__note {
  margin: 0;
  padding-top: 2px;
  color: var(--color-muted);
  font-size: 14px;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: transparent;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 9px;
  width: 14px;
  height: 2px;
  background: var(--color-text);
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .site-header__inner {
    gap: 24px;
  }

  .brand {
    min-width: 270px;
  }

  .site-nav {
    gap: 26px;
  }

  .hero__content {
    width: 52%;
  }

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

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

  .trust-strip__item:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

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

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

@media (max-width: 992px) {
  .site-header__cta,
  .site-nav {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .menu-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle span:first-child {
    top: 15px;
  }

  .menu-toggle span:last-child {
    top: 24px;
  }

  .menu-open .menu-toggle span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 74px 0 auto;
    z-index: 999;
    display: grid;
    gap: 18px;
    padding: 24px 32px 30px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 24px 42px rgba(16, 32, 51, 0.12);
    transform: translateY(-120%);
    transition: transform 200ms ease;
  }

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

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  }

  .hero__inner {
    order: 1;
    min-height: auto;
    padding-block: 64px 0;
  }

  .hero__content {
    width: 100%;
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(46px, 7vw, 58px);
  }

  .hero__image {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    margin-top: 44px;
  }

  .trust-strip {
    margin-top: -48px;
  }

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

  .advantages__list article {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

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

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

  .project-card {
    grid-template-rows: 320px auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 24px;
  }

  .brand__text small {
    display: none;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .hero__inner {
    padding-block-start: 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 42px);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__actions .button,
  .button {
    width: 100%;
  }

  .hero__image {
    height: 280px;
  }

  .trust-strip {
    width: calc(100% - 48px);
    padding: 22px;
  }

  .trust-strip__item {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .trust-strip__item svg {
    width: 38px;
    height: 38px;
  }

  .services,
  .projects {
    padding-block: 52px 38px;
  }

  .services h2,
  .projects h2,
  .advantages h2,
  .contact-cta h2 {
    font-size: 34px;
  }

  .service-card {
    min-height: 220px;
    padding: 26px;
  }

  .project-card {
    min-height: 0;
    grid-template-rows: 300px auto;
    padding-bottom: 18px;
    background: #f8fbff;
  }

  .project-card__body {
    min-width: 0;
    width: calc(100% - 32px);
    margin: -62px auto 0;
    padding: 24px;
    border: 1px solid rgba(227, 232, 239, 0.92);
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(16, 32, 51, 0.14);
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .contact-modal {
    padding: 30px 24px;
  }

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

  address a {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }

  .mobile-nav {
    padding-inline: 18px;
  }

  .brand__mark {
    width: 31px;
    height: 37px;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .hero__trust {
    align-items: flex-start;
  }

  .hero::after {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero__image {
    height: 220px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 36px);
  }

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

  .trust-strip__item,
  .trust-strip__item:nth-child(2n),
  .trust-strip__item:nth-child(-n + 2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 14px 8px;
  }

  .trust-strip__item svg {
    width: 30px;
    height: 30px;
  }

  .trust-strip__item strong {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .trust-strip__item span {
    font-size: 12px;
    line-height: 1.25;
  }

  .trust-strip__item:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-cta__inner::before {
    left: 24px;
    width: 260px;
  }

  .technologies__inner {
    padding: 22px 18px;
  }

  .project-card {
    grid-template-rows: 260px auto;
    padding-bottom: 16px;
  }

  .project-card__body {
    width: calc(100% - 24px);
    margin-top: -54px;
    padding: 22px 18px;
  }

  .contact-modal {
    padding: 24px 18px;
  }

  .contact-option {
    padding: 20px;
  }

  .contact-option .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .trust-strip__item,
  .trust-strip__item:nth-child(2n),
  .trust-strip__item:nth-child(-n + 2),
  .trust-strip__item:nth-last-child(-n + 2) {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 4px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip__item:last-child {
    border-bottom: 0;
  }

  .trust-strip__item svg {
    grid-row: span 2;
  }

  .trust-strip__item strong {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
