@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-9px); }
}

:root {
  --bg: #edf2fa;
  --ink: #101829;
  --white: #ffffff;
  --accent: #00d492;
  --dark: #101829;
  --dark-soft: #122347;
  --line-light: rgba(16, 24, 41, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --glass-dark: linear-gradient(
    132deg,
    rgba(29, 41, 61, 0.5),
    rgba(16, 24, 40, 0.5)
  );
  --accent-grad: linear-gradient(135deg, #10b77f, #0dcdf2);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-accent:
    0 10px 15px rgba(0, 188, 125, 0.25), 0 4px 6px rgba(0, 188, 125, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  line-height: 1.4;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site {
  overflow-x: hidden;
}

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

.section-dark {
  background:
    radial-gradient(
      600px 600px at 78% 10%,
      rgba(0, 212, 146, 0.2),
      transparent 60%
    ),
    #101829;
  color: var(--white);
}

.section-light {
  background: var(--bg);
  color: var(--ink);
}

.header {
  border-bottom: 1px solid var(--line-dark);
  height: 80px;
  position: relative;
  z-index: 30;
}

.desktop-header {
  background: #101829;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  height: 100%;
}

.footer-brand .logo span {
    font-size: 32px;
}

.logo {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.logo img {
  height: 38px;
  width: 30px;
}

.desktop-header .logo {
  color: var(--white);
}

.desktop-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 20px;
  justify-content: center;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.social-pill {
  align-items: center;
  display: flex;
  gap: 8px;
}

.social-pill a {
  border-radius: 50%;
  display: grid;
  height: 40px;
  overflow: hidden;
  place-items: center;
  width: 40px;
}

.social-pill img {
  height: 40px;
  width: 40px;
}

.lang-btn {
  backdrop-filter: blur(12px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  height: 40px;
  letter-spacing: 0.03em;
  min-width: 66px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: -0.02em;
  line-height: 1;
  min-height: 64px;
  padding: 20px 32px;
  text-align: center;
  transition: transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  font-size: 12px;
  min-height: 40px;
  padding: 10px 20px;
}

.btn-primary {
  background: var(--accent-grad);
  box-shadow: var(--shadow-accent);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 212, 146, 0.4);
  color: var(--accent);
}

.btn-light {
  background: var(--white);
  box-shadow: var(--shadow-accent);
  color: var(--ink);
}

.hero {
  overflow: hidden;
  padding-bottom: 64px;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 652px 428px;
  padding-top: 80px;
}

.eyebrow-dot {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0, 212, 146, 0.1);
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 100px;
  color: var(--accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
  margin-bottom: 40px;
  padding: 9px 17px;
  text-transform: uppercase;
}

.eyebrow-dot::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.hero-copy h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin: 0;
}

.hero-copy h1 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
  margin: 32px 0 48px;
}

.hero-copy p strong {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons .btn {
  min-height: 72px;
  padding: 24px 32px;
  white-space: nowrap;
}

.hero-buttons .btn-primary {
  width: 242px;
}

.hero-buttons .btn-primary::after {
  background: currentColor;
  content: "";
  height: 20px;
  margin-left: 0;
  mask: url("assets/images/arrow-form.svg") center / contain no-repeat;
  transform: rotate(90deg);
  width: 20px;
}

.hero-buttons .btn-outline {
  width: 169px;
}

.hero-image-wrap {
  justify-self: end;
}

.hero-image {
  animation: float 5s ease-in-out infinite;
  height: 455px;
  object-fit: fill;
  object-position: center bottom;
  width: 428px;
}

.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 92px;
}

.benefits-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.benefit-card {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  min-height: 90px;
  padding: 21px;
  position: relative;
}

.benefit-card::after {
  background: linear-gradient(
    90deg,
    rgba(16, 183, 127, 0),
    rgba(16, 183, 127, 0.65),
    rgba(16, 183, 127, 0)
  );
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.benefit-card img {
  height: 48px;
  width: 48px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin: 0;
}

.benefit-card h3 {
  font-size: 24px;
  margin: 2px 0 0;
}
.section-light {
  padding: 120px 0;
}

.section-dark:not(.hero):not(.services):not(.process):not(.team) {
  padding: 80px 0 120px;
}

.two-col {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 468px 560px;
  justify-content: space-between;
}

.text-block h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0;
}

.text-block h2 span {
  background: var(--Grad-01, linear-gradient(105deg, #10b77f 0%, #0dccf2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-block p {
  color: rgba(16, 24, 41, 0.72);
  font-size: 18px;
  line-height: 1.55;
  margin: 24px 0 0;
}

.number-steps {
  display: grid;
  gap: 24px;
}

.number-steps article {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 24, 41, 0.1);
  border-radius: 24px;
  display: flex;
  gap: 32px;
  min-height: 130px;
  padding: 33px;
}

.number-steps span {
  align-items: center;
  background: var(--accent-grad);
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  font-size: 24px;
  font-weight: 800;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.number-steps h3 {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 0;
}

.problems {
  background:
    radial-gradient(
      600px 600px at calc(50% + 587px) -146px,
      rgba(0, 212, 146, 0.1),
      transparent 60%
    ),
    #101829;
  padding: 80px 0 120px;
}

.problems .center-title {
  margin-bottom: 64px;
}

.problems .center-title h2 {
  font-weight: 700;
  letter-spacing: -2.4px;
}

.problems .center-title p {
  line-height: 28px;
  margin-top: 32px;
  max-width: none;
  opacity: 1;
}

.center-title {
  margin-bottom: 64px;
  text-align: center;
}

.eyebrow-lines {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow-lines,
.eyebrow-line-left {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.eyebrow-lines::before,
.eyebrow-lines::after,
.eyebrow-line-left::after {
  background: linear-gradient(
    90deg,
    rgba(0, 188, 125, 0),
    rgba(14, 198, 208, 1),
    rgba(0, 188, 125, 0)
  );
  content: "";
  display: block;
  height: 1px;
  width: 48px;
}

.center-title h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0;
}

.center-title h2 span {
  background: var(--Grad-01, linear-gradient(105deg, #10b77f 0%, #0dccf2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center-title p {
  font-size: 16px;
  line-height: 1.6;
  margin: 24px auto 0;
  max-width: 860px;
  opacity: 0.75;
}

.center-title p span {
  background: var(--Grad-01, linear-gradient(105deg, #10b77f 0%, #0dccf2 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.problems-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 376px);
  justify-content: center;
  max-width: 1160px;
}

.problem-card {
  backdrop-filter: blur(12px);
  background: linear-gradient(143deg, rgba(29, 41, 61, 0.5) 0%, rgba(16, 24, 40, 0.5) 100%);
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 283px;
  overflow: hidden;
  padding: 33px;
  position: relative;
  width: 376px;
}

.problem-card::before,
.problem-card::after {
  background: linear-gradient(
    90deg,
    rgba(16, 183, 127, 0),
    rgba(16, 183, 127, 0.6),
    rgba(16, 183, 127, 0)
  );
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  width: 320px;
}

.problem-card::before {
  top: 0;
}

.problem-card::after {
  bottom: 0;
}

.problem-head {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.66px;
  line-height: normal;
  margin: 0;
}

.problem-icon {
  display: block;
  height: 64px;
  order: -1;
  width: 64px;
}

.problem-icon img {
  display: block;
  height: 64px;
  width: 64px;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 1.5;
  margin: 0;
}

.cta-block {
  background: linear-gradient(128deg, #10b77f 0%, #0dccf2 100%);
  min-height: 657px;
  overflow: hidden;
  padding: 80px 0 96px;
  position: relative;
}

.cta-content {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  min-height: 481px;
  padding: 64px 48px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  display: inline-flex;
  height: 80px;
  justify-content: center;
  margin-bottom: 40px;
  width: 80px;
}

.cta-icon img {
  display: block;
  height: 80px;
  width: 80px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.1;
  margin: 0 0 32px;
}

.cta-content p {
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 48px;
  max-width: 900px;
}

.cta-button {
  line-height: 24px;
  min-height: 72px;
  padding: 24px 32px;
}

.cta-button img {
  display: block;
  height: 20px;
  transform: rotate(90deg);
  width: 20px;
}

.cta-bg {
  bottom: -450px;
  left: 50%;
  object-fit: contain;
  position: absolute;
  transform: translateX(-50%);
  width: 1403px;
  z-index: 1;
}

.cta-short .cta-content {
  min-height: 481px;
}

.cta-short .cta-bg.short {
  bottom: 0;
  height: 131px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  width: 837px;
}

.cta-short .cta-bg.short img {
  height: auto;
  left: 50%;
  max-width: none;
  position: absolute;
  top: -131px;
  transform: translateX(-50%);
  width: 1172px;
}

.services {
  background:
    radial-gradient(
      600px 600px at calc(50% - 709px) 80px,
      rgba(0, 212, 146, 0.1),
      transparent 68%
    ),
    #101829;
  padding: 80px 0 120px;
}

.services .center-title {
  margin-bottom: 0;
  max-width: 652px;
}

.services .center-title h2 {
  font-weight: 700;
  letter-spacing: -2.4px;
}

.services .center-title p {
  line-height: 28px;
  margin-top: 32px;
  max-width: none;
  opacity: 1;
}

.services-desktop-layout {
  height: 1407px;
  margin-top: 64px;
  position: relative;
}

.service-card {
  backdrop-filter: blur(12px);
  background: linear-gradient(122deg, rgba(29, 41, 61, 0.5) 0%, rgba(16, 24, 40, 0.5) 100%);
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 32px;
  overflow: hidden;
  position: absolute;
}

.service-card::before,
.service-card::after {
  background: linear-gradient(
    90deg,
    rgba(16, 183, 127, 0),
    rgba(16, 183, 127, 0.6),
    rgba(16, 183, 127, 0)
  );
  content: "";
  height: 1px;
  left: 28px;
  position: absolute;
  right: 28px;
  z-index: 4;
}

.service-card::before {
  top: 0;
}

.service-card::after {
  bottom: 0;
}

.service-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  left: 48px;
  position: absolute;
  top: 48px;
  width: min(86%, 476px);
  z-index: 3;
}

.service-copy h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: normal;
  margin: 0;
}

.service-copy > .chip-list {
  margin-top: -8px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0, 212, 146, 0.1);
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 100px;
  color: var(--accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  min-height: 33px;
  padding: 7px 17px;
}

.chip-list span::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  margin-right: 8px;
  width: 6px;
}

.service-card .btn-small,
.service-mobile-card .btn-small {
  border-radius: 8px;
  font-size: 12px;
  line-height: 24px;
  min-height: 48px;
  padding: 12px 24px;
}

.service-card .btn-small::after,
.service-mobile-card .btn-small::after {
  background: url("assets/images/arrow-form.svg") center / contain no-repeat;
  content: "";
  height: 20px;
  transform: rotate(90deg);
  width: 20px;
}

.service-card img {
  animation: float-subtle 6s ease-in-out infinite;
  bottom: 0;
  height: auto;
  max-width: none;
  position: absolute;
  right: 0;
}
.service-site {
  height: 375px;
  left: 0;
  top: 0;
  width: 769px;
}

.service-site img {
  animation-delay: 0s;
  right: 12px;
  top: 68px;
  width: 330px;
}

.service-site .service-copy {
  width: 425px;
}

.service-crm {
  height: 991px;
  left: 784px;
  top: 0;
  width: 376px;
}

.service-crm img {
  animation-delay: -1.5s;
  left: 100px;
  top: 533px;
  width: 458px;
}

.service-crm .service-copy h3 {
  font-size: 32px;
}

.service-integrations {
  height: 600px;
  left: 0;
  top: 391px;
  width: 376px;
}

.service-integrations img {
  animation-delay: -3s;
  bottom: -24px;
  left: -16px;
  width: 430px;
}

.service-ai {
  height: 600px;
  left: 392px;
  top: 391px;
  width: 376px;
}

.service-ai img {
  animation-delay: -0.8s;
  bottom: -2px;
  left: 26px;
  width: 410px;
}

.service-card.mid .service-copy h3 {
  font-size: 32px;
}

.service-card.mid .service-copy {
  width: 280px;
}

.service-card.half {
  height: 401px;
  width: 572px;
}

.service-ux {
  left: 0;
  top: 1006px;
}

.service-ux img {
  animation-delay: -2.2s;
  bottom: -16px;
  right: 24px;
  width: 300px;
}

.service-branding {
  left: 588px;
  top: 1006px;
}

.service-branding img {
  animation-delay: -4s;
  bottom: -20px;
  right: 42px;
  width: 300px;
}

.service-card.half .service-copy h3 {
  font-size: 32px;
}

.services-mobile-layout {
  display: none;
}

.result {
  padding: 80px 0 120px;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  min-height: 264px;
  padding: 41px 24px 24px;
  text-align: center;
}

.stat-icon {
  align-items: center;
  background: var(--accent-grad);
  border-radius: 22px;
  display: inline-flex;
  font-size: 26px;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.stat-card h3 {
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 12px 0 8px;
}

.stat-card p {
  color: rgba(16, 24, 41, 0.7);
  font-size: 20px;
  margin: 0;
}

.result-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 53px;
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-point {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  min-height: 96px;
  padding: 24px 33px;
}

.process {
  background:
    radial-gradient(
      600px 600px at calc(50% - 832px) -124px,
      rgba(0, 212, 146, 0.1),
      transparent 68%
    ),
    #101829;
  overflow: hidden;
  padding: 80px 0 120px;
  position: relative;
}

.process-layout {
  display: grid;
  gap: 169px;
  grid-template-columns: 492px 465px;
  min-height: 816px;
  position: relative;
  z-index: 2;
}

.eyebrow-line-left {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.process-copy h2,
.process-copy p {
  color: var(--white);
}

.process-copy {
  width: 492px;
}

.process-copy h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.1;
  margin-bottom: 32px;
}

.process-copy p {
  line-height: 28px;
  max-width: 409px;
}

.process-copy .btn {
  margin-top: 48px;
  min-height: 72px;
  padding: 24px 32px;
  white-space: nowrap;
  width: 241px;
}

.process-copy .btn::after {
  background: url("assets/images/arrow-form.svg") center / contain no-repeat;
  content: "";
  height: 20px;
  transform: rotate(90deg);
  width: 20px;
}

.process-copy h2 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-steps {
  display: grid;
  gap: 64px;
  padding-top: 40px;
  position: relative;
}

.process-steps::before {
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 48px,
    rgba(14, 198, 208, 0.7) 48px,
    rgba(14, 198, 208, 0.7) 96px,
    transparent 96px,
    transparent 140px
  );
  content: "";
  height: 608px;
  left: 24px;
  position: absolute;
  top: 64px;
  width: 1px;
}

.process-steps article {
  display: grid;
  gap: 37px;
  grid-template-columns: 48px 1fr;
  position: relative;
  z-index: 1;
}

.process-steps span {
  align-items: center;
  background: var(--accent-grad);
  border-radius: 16px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.process-steps h3 {
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 8px;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: normal;
  margin: 0;
}

.process-image {
  height: auto;
  left: -18px;
  max-width: none;
  position: absolute;
  top: 543px;
  width: 1138px;
  z-index: 1;
}

.support-layout {
  align-items: flex-start;
  gap: 40px;
  grid-template-columns: 560px 556px;
}

.support .text-block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.support .text-block h2 {
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.1;
}

.support .text-block p {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  max-width: 479px;
}

.support .text-block p span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.support .text-block .btn {
  min-height: 72px;
  padding: 24px 32px;
}

.support .text-block .btn::after {
  background: url("assets/images/arrow-form.svg") center / contain no-repeat;
  content: "";
  height: 20px;
  transform: rotate(90deg);
  width: 20px;
}

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

.support-grid article {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.12px;
  line-height: normal;
  min-height: 74px;
  padding: 21px 17px;
}

.support-grid article img {
  flex: 0 0 auto;
  height: 32px;
  width: 32px;
}

.team {
  background:
    radial-gradient(
      600px 600px at 68% 0%,
      rgba(0, 212, 146, 0.14),
      transparent 60%
    ),
    #101829;
  padding: 80px 0 120px;
}

.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-card {
  text-align: center;
}

.avatar {
  align-items: center;
    background: linear-gradient(105.2deg, #10B77F 0%, #0DCCF2 100%);
    border-radius: 100px;
    color: rgba(16, 24, 41, 1);
    display: inline-flex;
  font-size: 20px;
  font-weight: 700;
  height: 80px;
  justify-content: center;
  width: 80px;
}

.team-card h3 {
  font-size: 24px;
  margin: 24px 0 12px;
}

.team-card .role {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin: 0 0 16px;
}

.team-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.faq-title {
  margin-bottom: 64px;
}

.faq-list {
  width: min(664px, calc(100% - 48px));
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1.2;
  padding: 24px 25px;
  text-align: left;
  width: 100%;
}

.faq-question span {
  align-items: center;
    background: linear-gradient(105.2deg, #10B77F 0%, #0DCCF2 100%);
    color: white;
    border-radius: 12px;
  display: inline-flex;
  font-size: 20px;
    font-weight: 400;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  color: rgba(16, 24, 41, 0.8);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0 25px 24px;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.form {
  background: #101829;
  color: var(--white);
  padding: 80px 0 120px;
}

.form-title {
  margin-bottom: 61px;
}

.form-title .eyebrow-lines {
  gap: 16px;
  font-weight: 700;
}

.form-title h2 {
  color: var(--white);
  font-weight: 700;
  letter-spacing: -2.4px;
}

.form-wrap {
  position: relative;
  width: min(640px, calc(100% - 48px));
}

.form-wrap::before,
.form-wrap::after {
  background: linear-gradient(90deg, rgba(16, 183, 127, 0), #10b77f 50%, rgba(16, 183, 127, 0));
  content: "";
  height: 1px;
  left: 33px;
  opacity: 0.6;
  position: absolute;
  width: calc(100% - 66px);
  z-index: 1;
}

.form-wrap::before {
  top: 0;
}

.form-wrap::after {
  bottom: 0;
}

.lead-form {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(134deg, rgba(29, 41, 61, 0.5), rgba(16, 24, 40, 0.5));
  border: 1px solid rgba(0, 212, 146, 0.2);
  border-radius: 32px;
  display: grid;
  gap: 32px;
  min-height: 663px;
  overflow: hidden;
  padding: 33px;
}

.lead-form label {
  color: var(--white);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.6px;
  line-height: 16px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  background: #101829;
  border: 1px solid rgba(0, 212, 146, 0.3);
  border-radius: 12px;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  padding: 22px 25px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lead-form input {
  min-height: 63px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form .form-submit {
  align-self: end;
  min-height: 72px;
  padding: 24px 32px;
  width: 100%;
}

.form-submit img {
  height: 20px;
  width: 20px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(132deg, rgba(29, 41, 61, 0.8), rgba(16, 24, 40, 0.8));
  border: 1px solid rgba(0, 212, 146, 0.3);
  border-radius: 32px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  padding: 60px 40px;
  text-align: center;
  width: 100%;
}

.contacts {
  background: var(--bg);
  padding: 80px 0 120px;
}

.contact-title {
  margin-bottom: 64px;
}

.contact-title .eyebrow-lines {
  gap: 9px;
  font-weight: 700;
}

.contact-title h2 {
  font-weight: 700;
  letter-spacing: -2.4px;
}

.contact-title p {
  line-height: 28px;
  margin-top: 32px;
  max-width: 619px;
  opacity: 1;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  justify-items: center;
  margin-inline: auto;
  width: min(664px, calc(100% - 48px));
}

.contact-btn {
  align-items: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-sizing: border-box;
  color: var(--ink);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  height: 90px;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
  padding: 1px 33px;
  width: 326px;
}

.contact-arrow {
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-left: auto;
  width: 16px;
}

.contact-arrow img {
  height: 16px;
  width: 16px;
}

.contact-icon {
  flex-shrink: 0;
  height: 48px;
  position: relative;
  width: 48px;
}

.contact-icon img {
  height: 72px;
  left: -12px;
  max-width: none;
  position: absolute;
  top: -2px;
  width: 72px;
}

.contact-label {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.footer {
  background: #101829;
  color: var(--white);
  padding: 96px 0 48px;
}

.footer-main {
  align-items: center;
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.footer-brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 330px;
}

.footer-brand-top {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.footer-brand .logo {
  gap: 20px;
}

.footer-brand .logo img {
  height: 61px;
  width: 49px;
}

.footer-brand .logo span {
  color: var(--white);
  font-size: 32px;
  letter-spacing: -1.28px;
  line-height: 1.2;
}

.footer-brand p {
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  width: 100%;
}

.footer-cta {
  align-items: center;
  background: var(--accent-grad);
  border-radius: 12px;
  box-shadow: var(--shadow-accent);
  color: var(--ink);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  letter-spacing: -0.32px;
  line-height: 24px;
  min-height: 72px;
  padding: 24px 32px;
  width: 241px;
}

.footer-cta span {
  font-size: 20px;
  line-height: 1;
}

.footer-links {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  width: 460px;
}

.footer-nav {
  width: 92px;
}

.footer-contact {
  width: 188px;
}

.footer-links h4 {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.6px;
  line-height: 1.35;
  margin: 0 0 40px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 20px;
}

.footer-nav a {
  display: block;
}

.footer-links a:last-child {
  margin-bottom: 0;
}

.footer-contact-link {
  align-items: center;
  gap: 20px;
}

.footer-contact-link img {
  flex: 0 0 auto;
  height: 15px;
  max-width: none;
  object-fit: contain;
  width: 17px;
}

.footer-contact-link:nth-of-type(2) img,
.footer-contact-link:nth-of-type(4) img {
  height: 15px;
  width: 15px;
}

.footer-contact-link:nth-of-type(3) img {
  height: 12px;
  width: 14px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 96px;
}

.footer-divider {
  background: linear-gradient(90deg, rgba(16, 183, 127, 0), #10b77f 50%, rgba(16, 183, 127, 0));
  height: 1px;
  opacity: 0.6;
  width: 100%;
}

.footer-legal {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-bottom p {
  color: var(--white);
  font-size: 12px;
  line-height: 16px;
  margin: 0;
  white-space: nowrap;
}

.footer-bottom p:last-child {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
    grid-template-columns: 1fr 380px;
  }

  .hero-image {
    height: 420px;
    width: 380px;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .process-layout {
    gap: 64px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line-light);
    display: block;
    height: 58px;
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .mobile-header-inner,
  .mobile-menu-head {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin-inline: auto;
    width: calc(100% - 48px);
  }

  .mobile-header .logo,
  .mobile-menu .logo {
    color: var(--ink);
    font-size: 16px;
  }

  .mobile-header .logo img,
  .mobile-menu .logo img {
    height: 30px;
    width: 24px;
  }

  .mobile-head-actions {
    align-items: center;
    display: flex;
    gap: 12px;
  }

  .mobile-header .lang-btn {
    border-color: rgba(16, 24, 41, 0.5);
    color: var(--ink);
    height: 36px;
    min-width: 66px;
  }

  .menu-toggle,
  .menu-close {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    position: relative;
    width: 60px;
  }

  .menu-toggle span,
  .menu-close span {
    background: var(--white);
    border-radius: 999px;
    height: 2px;
    position: absolute;
    width: 18px;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-4px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(4px);
  }

  .menu-close span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    background: var(--bg);
    height: 100dvh;
    left: 0;
    padding: 11px 0 48px;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: 100%;
    z-index: 80;
  }

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

  .mobile-menu .lang-btn {
    border: 1px solid var(--ink);
    color: var(--ink);
    height: 36px;
    min-width: 66px;
  }

  .mobile-menu .lang-btn.dark {
    background: transparent;
  }

  .mobile-menu-nav {
    margin-inline: auto;
    margin-top: 32px;
    width: calc(100% - 48px);
  }

  .mobile-menu-nav a {
    align-items: center;
    border-bottom: 1px solid rgba(16, 24, 41, 0.12);
    display: flex;
    font-size: 36px;
    font-weight: 500;
    justify-content: space-between;
    min-height: 62px;
    padding: 16px 0;
  }

  .mobile-menu-nav span {
    color: var(--accent);
    font-size: 24px;
  }

  .mobile-menu-social {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    margin-inline: auto;
    margin-top: 40px;
    width: calc(100% - 48px);
  }

  .mobile-menu-social a {
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    color: #17bdbe;
    display: inline-flex;
    font-size: 20px;
    height: 70px;
    justify-content: center;
  }

  .container {
    width: calc(100% - 48px);
  }

  .section-light,
  .section-dark:not(.hero) {
    padding: 48px 0;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 578px;
    padding-top: 46px;
    position: relative;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .eyebrow-dot {
    margin-bottom: 40px;
  }

  .hero-copy h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.92px;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 28px;
    margin: 32px 0 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    min-height: 64px;
    padding: 20px 32px;
    width: 100%;
  }

  .hero-buttons .btn-primary {
    justify-content: center;
    position: relative;
  }

  .hero-buttons .btn-primary::after {
    position: absolute;
    right: 32px;
  }

  .hero-image-wrap {
    height: 196px;
    position: absolute;
    right: 0;
    top: -81px;
    width: 184px;
    z-index: 1;
  }

  .hero-image {
    height: 196px;
    max-width: none;
    width: 184px;
  }

  .section-divider {
    margin-top: 48px;
  }

  .benefits-grid {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .benefit-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 120px;
    padding: 17px;
  }

  .benefit-card img {
    height: 32px;
    width: 32px;
  }

  .benefit-card h3 {
    font-size: 20px;
    line-height: 1.1;
  }

  .two-col,
  .support-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .text-block h2,
  .center-title h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .text-block p,
  .center-title p {
    font-size: 16px;
    line-height: 1.5;
  }

  .number-steps article {
    min-height: 98px;
    padding: 25px;
  }

  .number-steps span {
    border-radius: 10px;
    font-size: 16px;
    height: 32px;
    width: 32px;
  }

  .number-steps h3 {
    font-size: 24px;
  }

  .problems-grid {
    gap: 16px;
    grid-template-columns: 1fr;
    max-width: 320px;
    width: calc(100% - 48px);
  }

  .problems {
    background:
      radial-gradient(
        600px 600px at calc(100% + 203px) -146px,
        rgba(0, 212, 146, 0.1),
        transparent 60%
      ),
      #101829;
    padding: 48px 0;
  }

  .problems .center-title {
    margin-bottom: 40px;
    width: min(320px, calc(100% - 48px));
  }

  .problems .eyebrow-lines {
    letter-spacing: 2.4px;
  }

  .problems .center-title h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .problems .center-title p {
    line-height: 28px;
    margin-top: 24px;
    max-width: 320px;
  }

  .problem-card {
    border-radius: 24px;
    gap: 12px;
    min-height: 138px;
    padding: 25px;
    width: 100%;
  }

  .problem-card:last-child {
    min-height: 154px;
    padding: 33px;
  }

  .problem-card::before,
  .problem-card::after {
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }

  .problem-head {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
  }

  .problem-head h3 {
    font-size: 18px;
    letter-spacing: -0.54px;
    white-space: nowrap;
  }

  .problem-icon,
  .problem-icon img {
    height: 40px;
    order: initial;
    width: 40px;
  }

  .problem-card p {
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 1.5;
  }

  .cta-block {
    background: linear-gradient(101deg, #10b77f 0%, #0dccf2 100%);
    min-height: 585px;
    padding: 48px 0;
  }

  .cta-content {
    border-radius: 24px;
    gap: 0;
    min-height: 441px;
    padding: 24px 16px 22px;
  }

  .cta-icon {
    height: 64px;
    margin-bottom: 24px;
    width: 64px;
  }

  .cta-icon img {
    height: 64px;
    width: 64px;
  }

  .cta-content h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    margin-bottom: 24px;
    max-width: 280px;
  }

  .cta-content p {
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 280px;
  }

  .cta-button {
    min-height: 64px;
    padding: 20px 31px;
    width: 286px;
  }

  .cta-bg {
    bottom: -190px;
    height: 478px;
    left: 0;
    transform: none;
    width: 368px;
  }

  .cta-short .cta-bg.short {
    bottom: 49px;
    height: 65px;
    left: 50%;
    overflow: hidden;
    transform: translateX(-50%);
    width: 412px;
  }

  .cta-short .cta-bg.short img {
    height: auto;
    left: 50%;
    max-width: none;
    position: absolute;
    top: -65px;
    transform: translateX(-50%);
    width: 577px;
  }

  .cta-short .cta-content {
    min-height: 409px;
  }

  .services-desktop-layout {
    display: none;
  }

  .services-mobile-layout {
    display: grid;
    gap: 16px;
    margin-top: 40px;
    max-width: 320px;
  }

  .services {
    padding: 48px 0;
  }

  .services .center-title {
    margin-bottom: 0;
    width: min(320px, calc(100% - 48px));
  }

  .services .eyebrow-lines {
    letter-spacing: 2.4px;
  }

  .services .center-title h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .services .center-title p {
    line-height: 28px;
    margin-top: 24px;
    max-width: 320px;
  }

  .service-mobile-card {
    align-items: start;
    backdrop-filter: blur(12px);
    background: linear-gradient(122deg, rgba(29, 41, 61, 0.5) 0%, rgba(16, 24, 40, 0.5) 100%);
    border: 1px solid rgba(0, 212, 146, 0.2);
    border-radius: 24px;
    display: grid;
    gap: 24px;
    min-height: 420px;
    overflow: hidden;
    padding: 24px;
    position: relative;
  }

  .service-mobile-card::before,
  .service-mobile-card::after {
    background: linear-gradient(
      90deg,
      rgba(16, 183, 127, 0),
      rgba(16, 183, 127, 0.6),
      rgba(16, 183, 127, 0)
    );
    content: "";
    height: 1px;
    left: 33px;
    position: absolute;
    right: 33px;
  }

  .service-mobile-card::before {
    top: 0;
  }

  .service-mobile-card::after {
    bottom: 0;
  }

  .service-mobile-card h3 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .chip-list.compact span {
    font-size: 12px;
    min-height: 28px;
    padding: 5px 10px;
  }

  .service-mobile-card .chip-list,
  .service-mobile-card .btn {
    position: relative;
    z-index: 2;
  }

  .service-mobile-card .btn-small {
    justify-self: start;
    min-height: 44px;
    padding: 10px 18px;
  }

  .service-mobile-image {
    bottom: -24px;
    max-width: none;
    position: absolute;
    right: -18px;
    width: 210px;
    z-index: 1;
  }

  .service-mobile-card:nth-child(2) .service-mobile-image {
    bottom: -10px;
    right: -70px;
    width: 250px;
  }

  .service-mobile-card:nth-child(3) .service-mobile-image,
  .service-mobile-card:nth-child(4) .service-mobile-image {
    bottom: -30px;
    left: 18px;
    right: auto;
    width: 280px;
  }

  .service-mobile-card:nth-child(5) .service-mobile-image,
  .service-mobile-card:nth-child(6) .service-mobile-image {
    bottom: -36px;
    right: -10px;
    width: 190px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .stat-card {
    min-height: 174px;
    padding-top: 25px;
  }

  .stat-icon {
    border-radius: 12px;
    font-size: 18px;
    height: 40px;
    width: 40px;
  }

  .stat-card h3 {
    font-size: 44px;
  }

  .stat-card p {
    font-size: 18px;
  }

  .result-grid {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .result-point {
    align-items: flex-start;
    font-size: 14px;
    min-height: 126px;
    padding: 17px;
  }

  .process-steps {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
  }

  .process-steps::before {
    display: none;
  }

  .process {
    background:
      radial-gradient(
        600px 600px at 128px -124px,
        rgba(0, 212, 146, 0.1),
        transparent 68%
      ),
      #101829;
    padding: 48px 0;
  }

  .process-layout {
    gap: 56px;
    min-height: 850px;
  }

  .process-copy {
    width: 100%;
  }

  .process-copy h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .process-copy p {
    line-height: 28px;
    max-width: 320px;
  }

  .process-copy .btn {
    margin-top: 40px;
    min-height: 64px;
    padding: 20px 32px;
    width: 241px;
  }

  .process .eyebrow-line-left {
    letter-spacing: 2.4px;
  }

  .process-steps article {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .process-steps span {
    border-radius: 11px;
    font-size: 8px;
    height: 32px;
    width: 32px;
  }

  .process-steps h3 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .process-steps p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: normal;
  }

  .process-image {
    height: auto;
    left: 52px;
    top: 858px;
    width: 259px;
  }

  .support-grid {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .support {
    padding: 48px 0;
  }

  .support-layout {
    gap: 48px;
  }

  .support .text-block {
    gap: 40px;
  }

  .support .text-block h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .support .text-block p {
    font-size: 16px;
    line-height: 28px;
    max-width: 320px;
  }

  .support .text-block .btn {
    min-height: 64px;
    padding: 20px 32px;
  }

  .support-grid article {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
    gap: 12px;
    height: 150px;
    min-height: 0;
    padding: 21px 17px;
  }

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

  .avatar {
    font-size: 22px;
    height: 80px;
    width: 80px;
  }

  .team-card h3 {
    font-size: 24px;
  }

  .team-card .role,
  .team-card p {
    font-size: 16px;
  }

  .faq-title {
    margin-bottom: 40px;
  }

  .faq-list {
    width: 100%;
  }

  .faq-question {
    font-size: 20px;
    padding: 20px 17px;
  }

  .faq-answer p {
    padding: 0 17px 20px;
  }

  .form-wrap,
  .contact-grid {
    width: 100%;
  }

  .form {
    padding: 48px 0;
  }

  .form-title {
    margin-bottom: 40px;
  }

  .form-title .eyebrow-lines {
    letter-spacing: 2.4px;
  }

  .form-title h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .form-wrap::before,
  .form-wrap::after {
    width: calc(100% - 66px);
  }

  .lead-form {
    border-radius: 24px;
    gap: 15px;
    min-height: 567px;
    padding: 33px;
  }

  .lead-form input {
    min-height: 53px;
    padding: 17px 25px;
  }

  .lead-form .form-submit {
    min-height: 64px;
    padding: 20px 32px;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contacts {
    padding: 48px 0;
  }

  .contact-title {
    margin-bottom: 40px;
  }

  .contact-title .eyebrow-lines {
    letter-spacing: 2.4px;
  }

  .contact-title h2 {
    font-size: 28px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .contact-title p {
    line-height: 28px;
    margin-top: 24px;
    max-width: 320px;
  }

  .contact-btn {
    font-size: 16px;
    height: 90px;
    padding-left: 33px;
    padding-right: 33px;
    width: 100%;
  }

  .footer {
    padding: 48px 0;
  }

  .footer .container {
    width: calc(100% - 48px);
  }

  .footer-main {
    align-items: center;
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    align-items: center;
    gap: 32px;
    text-align: center;
    width: 100%;
  }

  .footer-brand-top {
    align-items: center;
    gap: 28px;
  }

  .footer-brand p {
    line-height: 28px;
  }

  .footer-cta {
    min-height: 72px;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-nav {
    display: none;
  }

  .footer-contact {
    align-items: center;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    width: 100%;
  }

  .footer-links h4 {
    margin-bottom: 40px;
  }

  .footer-links a {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 19px;
  }

  .footer-contact-link {
    flex-direction: column;
    gap: 20px;
  }

  .footer-contact-link:nth-of-type(2),
  .footer-contact-link:nth-of-type(3),
  .footer-contact-link:nth-of-type(4) {
    gap: 21px;
  }

  .footer-bottom {
    gap: 48px;
    flex-direction: column;
    margin-top: 48px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 24px;
  }
}

