@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #02070d;
  --ink-soft: #07111f;
  --surface: #0b1727;
  --surface-2: #0f2036;
  --blue: #0878ff;
  --blue-dark: #0453b8;
  --blue-light: #9bc9ff;
  --white: #f7f9fc;
  --muted: #aab1bd;
  --line: rgba(255, 255, 255, 0.14);
  --container: 1216px;
  --radius: 8px;
  --title: "Plus Jakarta Sans", sans-serif;
  --body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--title);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.header-space {
  position: fixed;
  z-index: 50;
  top: 12px;
  right: 0;
  left: 0;
  height: 64px;
  pointer-events: none;
}

.site-header {
  position: relative;
  width: min(calc(100% - 32px), 1060px);
  height: 60px;
  margin-inline: auto;
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(5, 13, 24, 0.62);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: transform 0.32s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 13, 24, 0.84);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 24px));
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 16px;
}

.brand {
  font-family: var(--title);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.1em;
}

.brand span {
  color: var(--blue);
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  cursor: pointer;
}

.menu-toggle svg:last-child,
.menu-open .menu-toggle svg:first-child {
  display: none;
}

.menu-open .menu-toggle svg:last-child {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 8px;
  transform: translateY(-8px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 13, 24, 0.96);
  backdrop-filter: blur(18px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.menu-open .mobile-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-radius: 6px;
  font-family: var(--title);
  font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  background: rgba(8, 120, 255, 0.14);
}

.icon-button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 8px 8px 18px;
  border: 0;
  border-radius: var(--radius);
  background: #0759b8;
  color: white;
  font-family: var(--title);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #0869d6;
}

.button .icon-box {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 5px;
  background: var(--white);
  color: var(--blue-dark);
}

.button .icon-box svg {
  width: 17px;
  height: 17px;
}

.button.secondary {
  padding: 8px 8px 8px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.76);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button.secondary .icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue-light);
  font-family: var(--title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  box-shadow: 0 0 0 5px rgba(8, 120, 255, 0.15);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 136px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(8, 120, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #06101d 0%, var(--ink) 82%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(40px, 10vw, 52px);
}

.text-gradient {
  background: linear-gradient(100deg, #fff 8%, #97a4b6 88%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy>p {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

.hero-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  opacity: 0.76;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 7, 13, 0.75), transparent 60%);
  content: "";
}

.hero-badge {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.hero-badge div {
  padding: 13px 10px;
  background: rgba(3, 10, 19, 0.86);
}

.hero-badge strong {
  display: block;
  font-family: var(--title);
  font-size: 18px;
}

.hero-badge span {
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 82px 0;
}

.section.light {
  background: #f0f2f5;
  color: #08111d;
}

.section.blue {
  background: var(--blue-dark);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 780px;
  font-size: clamp(34px, 8vw, 58px);
}

.section-head p {
  max-width: 620px;
  color: var(--muted);
}

.light .section-head p {
  color: #58616e;
}

.services-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-light);
  font-family: var(--title);
  font-size: 13px;
  font-weight: 600;
}

.service-card a svg {
  width: 16px;
}

.metrics-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(8, 120, 255, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(8, 120, 255, 0.15), rgba(3, 10, 19, 0.92) 40%, rgba(8, 120, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metrics-section {
  min-height: 250px;
  padding-block: 54px;
  background: #020914;
}

.metric {
  padding: 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--title);
  font-size: clamp(32px, 7vw, 44px);
  line-height: 1;
}

.metric span {
  color: #d5e6fb;
  font-size: 13px;
}

.statement {
  min-height: 700px;
  padding-block: 96px 0;
  text-align: center;
  overflow: hidden;
}

.statement h2 {
  max-width: 930px;
  margin-inline: auto;
  color: #07111f;
  font-size: clamp(35px, 8vw, 56px);
}

.statement p {
  max-width: 600px;
  margin: 24px auto 0;
  color: #485567;
}

.statement-visual {
  width: min(100%, 760px);
  height: 300px;
  margin: 54px auto 0;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
}

.process-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 92%, rgba(8, 120, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #02070d 0%, #06101d 100%);
}

.process-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to top, black, transparent 78%);
  content: "";
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-step {
  min-height: 230px;
  padding: 24px;
  background: rgba(3, 10, 19, 0.94);
}

.process-step>span {
  color: var(--blue-light);
  font-family: var(--title);
  font-size: 12px;
  font-weight: 600;
}

.process-step h3 {
  margin: 50px 0 12px;
  font-size: 23px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
}

.testimonials-grid {
  display: grid;
  gap: 12px;
}

.proof-section {
  position: relative;
  overflow: hidden;
  background-color: #edf2f7;
  background-image: linear-gradient(rgba(7, 17, 31, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  color: #07111f;
}

.proof-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 58%);
  content: "";
}

.proof-section .container {
  position: relative;
}

.proof-section .eyebrow {
  color: #1768bc;
}

.proof-section .section-head p {
  color: #506071;
}

.quote-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.09);
}

.quote-card::before {
  color: #d6e7f9;
  content: "“";
  font-family: Georgia, serif;
  font-size: 82px;
  line-height: 0.72;
}

.quote-card>p {
  font-family: var(--title);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  color: #1d2b3c;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-person img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #e8eef5;
}

.quote-person strong,
.quote-person span {
  display: block;
  font-size: 13px;
}

.quote-person span {
  color: #627083;
}

.faq-layout {
  display: grid;
  gap: 40px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: var(--title);
  font-size: 17px;
  font-weight: 600;
}

.faq-question .faq-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  max-width: 760px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.image-cta {
  padding: 88px 0 0;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.image-cta-content {
  padding: 0 16px 44px;
}

.image-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(34px, 8vw, 58px);
}

.image-cta p {
  max-width: 590px;
  margin: 18px auto 26px;
  color: var(--muted);
}

.image-cta img {
  width: min(calc(100% - 32px), var(--container));
  height: 310px;
  margin: 0 auto;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

.inner-hero {
  padding: 146px 0 72px;
  background: radial-gradient(circle at 75% 20%, rgba(8, 120, 255, 0.2), transparent 32%), var(--ink);
}

.inner-hero h1 {
  max-width: 940px;
  font-size: clamp(36px, 7vw, 42px);
}

.inner-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
}

.wide-image {
  height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
}

.wide-image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.assist-cover img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.split {
  display: grid;
  gap: 38px;
}

.split h2 {
  font-size: clamp(34px, 8vw, 56px);
}

.split-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.value-grid,
.benefit-grid {
  display: grid;
  gap: 12px;
}

.value-card,
.benefit-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.value-card h3,
.benefit-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
}

.light .value-card {
  color: var(--white);
}

.light .value-card h3 {
  color: #ffffff;
}

.light .value-card p {
  color: #d1dae5;
}

.value-card p,
.benefit-card p {
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  gap: 12px;
}

.catalog-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.catalog-image {
  display: grid;
  height: 220px;
  margin-bottom: 20px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: white;
}

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

.catalog-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.catalog-card p {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  gap: 42px;
}

.contact-details h1 {
  font-size: clamp(36px, 7vw, 42px);
}

.contact-details > p {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 17px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 28, 49, 0.82);
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-family: var(--title);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7e8998;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(8, 120, 255, 0.2);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  justify-content: space-between;
}

.contact-channels {
  margin-top: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-link svg {
  flex: 0 0 auto;
  width: 20px;
  color: var(--blue-light);
}

.contact-link span {
  display: grid;
  gap: 2px;
}

.contact-link small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-note svg {
  flex: 0 0 auto;
  width: 16px;
  margin-top: 1px;
  color: var(--blue-light);
}

.form-fallback {
  color: var(--blue-light);
  font-size: 14px;
  text-decoration: underline;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--line);
  background: #020406;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  color: white;
  opacity: 0.74;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: white;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: white;
  font-size: 12px;
  opacity: 0.75;
}

.developed-by {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.developer-logo {
  display: inline-flex;
  align-items: center;
  opacity: 1;
}

.developer-logo img {
  width: auto;
  height: 22px;
  filter: brightness(0) invert(1);
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .header-space {
    top: 18px;
  }

  .site-header {
    width: min(calc(100% - 64px), 1060px);
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--title);
    font-size: 12px;
    font-weight: 600;
  }

  .desktop-nav a {
    position: relative;
    padding: 19px 0;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    background: var(--blue);
    content: "";
    transition: transform 0.2s ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: white;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .header-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 9px;
    padding: 0 7px 0 13px;
    border-radius: 6px;
    background: var(--blue);
    font-family: var(--title);
    font-size: 11px;
    font-weight: 600;
  }

  .header-cta span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 4px;
    background: white;
    color: var(--blue-dark);
  }

  .header-cta svg {
    width: 15px;
  }

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

  .hero {
    min-height: 900px;
    padding-top: 166px;
  }

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

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

  .hero-visual,
  .hero-visual img {
    min-height: 500px;
  }

  .hero-badge {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 420px;
  }

  .hero-badge div {
    padding: 16px;
  }

  .section {
    min-height: 600px;
    padding: 110px 0;
    display: flex;
    align-items: center;
  }

  .metrics-section {
    min-height: 250px;
    padding-block: 54px;
  }

  .section-head {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    align-items: end;
    margin-bottom: 58px;
  }

  .section-head>p {
    justify-self: end;
  }

  .services-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric {
    padding: 30px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .metric:last-child {
    border-right: 0;
  }

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

  .testimonials-grid,
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-layout {
    grid-template-columns: 0.72fr 1.45fr;
    gap: 80px;
  }

  .image-cta {
    padding-top: 110px;
  }

  .image-cta-content {
    padding-bottom: 54px;
  }

  .image-cta img {
    width: min(calc(100% - 64px), var(--container));
    height: 470px;
  }

  .wide-image {
    height: 520px;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 80px;
  }

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

  .contact-layout {
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 80px;
  }

  .contact-form {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
