@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Montserrat:wght@400;600;700&display=swap');
@import './variables.css';

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.4;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}
.section-title.small {
  font-size: clamp(28px, 5vw, 44px);
}

.section-title .accent { color: var(--color-red); }

.section-desc {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--color-gray);
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  border-radius: var(--btn-radius);
  transition: opacity var(--transition), transform var(--transition);
}

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

.btn--primary {
  background: var(--color-red-gradient);
  color: var(--color-white);
  padding: 18px 30px;
  font-size: 19px;
}

.btn--outline {
  border: 1.2px solid var(--color-red);
  color: var(--color-red);
  padding: 14px 28px;
  font-size: 16px;
  background: transparent;
}

.btn--dark {
  background: var(--color-red);
  color: var(--color-white);
  padding: 13px 26px;
  font-size: 14px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  padding: 12px 20px;
  font-size: 14px;
}

.btn-arrow::after {
  content: '→';
  font-size: 1.2em;
}

.header .btn--ghost,
.header .btn--dark,
.site-footer .btn--ghost,
.site-footer .btn--dark {
  border-radius: var(--btn-radius-pill);
}

.reviews .btn--primary {
  border-radius: var(--btn-radius-md);
}

.footer-cta .btn--primary {
  border-radius: var(--btn-radius-lg);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition);
}

.header--scrolled {
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 228px;
  max-width: 38vw;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: none;
  gap: 36px;
}

.nav a {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-light);
  transition: color var(--transition);
}

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

.header__actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.header__phone {
  font-family: var(--font-secondary);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-dark);
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  font-size: 18px;
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
  .nav, .header__actions { display: flex; }
  .header__burger { display: none; }
}

/* Hero */
.hero {
  position: relative;
  height: min(100svh, 900px);
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,9,0.98) 0%, rgba(6,7,9,0.94) 41%, rgba(6,7,9,0.66) 67%, rgba(6,7,9,0.08) 97%),
    linear-gradient(180deg, rgba(6,7,9,0.72) 0%, transparent 30%),
    linear-gradient(180deg, transparent 52%, rgba(6,7,9,0.86) 87%, rgba(6,7,9,1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 126px 78px;
}

.hero__title {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 32px;
  max-width: 809px;
}

.hero__title .accent { color: var(--color-red-dark); }

.hero__subtitle {
  font-size: clamp(15px, 2.5vw, 23px);
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 590px;
}

.hero__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 470px;
}

.hero__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(14px, 2vw, 20px);
}

.hero__point-icon {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 48px;
  font-size: clamp(14px, 2vw, 20px);
  padding-left: 15px;
  border-left: 3px solid var(--color-red-dark);
}

.hero__stats .accent { color: var(--color-red-dark); font-weight: 700; }

.hero .btn--primary {
  width: 487px;
  max-width: 100%;
  min-height: 64px;
}

@media (max-width: 768px) {
  .hero{
    height: auto;
  }
  .hero__content {
    padding-block: 100px;
  }

  .hero .btn--primary {
    width: 342px;
    min-height: 58px;
  }
}

/* Approach */
.approach {
  background: var(--color-bg-light);
  padding: var(--section-pad) 0;
}

@media (min-width: 1024px) {
  .approach {
    padding-top: 57px;
  }
}

.approach .section-label {
  font-size: 15px;
  margin-bottom: 9px;
}

.approach .section-label::before {
  height: 72px;
}

.approach__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .approach__grid {
    grid-template-columns: minmax(0, 680px) minmax(0, 480px);
    justify-content: space-between;
    align-items: start;
    gap: 0;
    margin-top: 0;
  }
}

.approach__title {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.approach__title-line {
  display: block;
}

.approach__intro {
  max-width: 480px;
  font-size: 18px;
  color: #23242a;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .approach__intro {
    padding-top: 23px;
  }
}

.approach__intro--mobile {
  margin-top: 24px;
  max-width: 273px;
  font-size: 14px;
  color: #5a5a5a;
}

.approach__intro p + p { margin-top: 8px; }

.approach__divider {
  width: 32px;
  height: 3px;
  background: var(--color-red);
  margin-top: 26px;
}

.steps-wrap {
  position: relative;
  margin-top: 40px;
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .steps-wrap--desktop {
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 1400px) {
  .steps-wrap--desktop {
    width: 1356px;
    margin-inline: min(0px, calc((100% - 1356px) / 2));
  }
}

.steps-wrap--desktop {
  display: none;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .steps--desktop {
    flex-wrap: nowrap;
    gap: 0;
    width: 1356px;
  }

  .step-card:nth-child(1) { margin-right: 40px; }
  .step-card:nth-child(2) { margin-right: 60px; }
  .step-card:nth-child(3) { margin-right: 27px; }
  .step-card:nth-child(4) { margin-right: 14px; }
  .step-card:nth-child(5) { margin-right: 31px; }
}

.step-card {
  flex: 0 0 auto;
}

.step-card:nth-child(1) { width: 209px; }
.step-card:nth-child(2) { width: 175px; }
.step-card:nth-child(3) { width: 208px; }
.step-card:nth-child(4) { width: 221px; }
.step-card:nth-child(5) { width: 197px; }
.step-card:nth-child(6) { width: 174px; }

.steps-route {
  position: absolute;
  left: 80px;
  top: 107px;
  width: 1100px;
  pointer-events: none;
}

.steps-route img {
  width: 100%;
  height: auto;
  display: block;
}

.step-card__num {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #e7e7e9;
  line-height: 1;
  margin-bottom: 9px;
}

@media (min-width: 1024px) {
  .step-card__num {
    font-size: 64px;
    height: 78px;
  }
}

.step-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .step-card__icon {
    margin-left: 32px;
  }
}

.step-card__icon img {
  width: 64px;
  height: 64px;
}

.step-card__title {
  margin-top: 45px;
  font-size: 16px;
  font-weight: 600;
  color: #0b0b0e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.step-card__list {
  font-size: 14px;
  color: #2b2c32;
  line-height: 1.55;
}

.step-card__list li {
  display: flex;
  gap: 0;
}

.step-card__check {
  color: var(--color-red);
  flex-shrink: 0;
  margin-right: 4px;
}

.step-card__list-cont {
  padding-left: 21px;
  color: #2b2c32;
}

/* Timeline mobile */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
  padding-left: 27px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 27px;
  bottom: 27px;
  width: 1.5px;
  background: var(--color-red);
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 0 0 24px;
  min-height: 102px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  margin-left: -27px;
  position: relative;
  z-index: 1;
}

.timeline-item__icon img {
  width: 54px;
  height: 54px;
}

.timeline-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #0b0b0e;
  margin-bottom: 12px;
  padding-top: 16px;
}

.timeline-item__list {
  font-size: 13px;
  color: var(--color-red);
  line-height: 1.45;
}

.timeline-item__list li::before {
  content: '✓ ';
}

@media (min-width: 1024px) {
  .timeline { display: none; }
  .steps-wrap--desktop { display: block; }
}

.bottom-panel {
  margin-top: 48px;
  width: 100%;
  max-width: 1308px;
  margin-inline: auto;
  padding: 15px 22px;
  min-height: 76px;
  background: var(--color-bg-light);
  border: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.bottom-panel__lead {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.bottom-panel__icon {
  width: 56px;
  height: 46px;
  flex-shrink: 0;
}

.bottom-panel__icon img {
  width: 56px;
  height: 46px;
}

.bottom-panel__title {
  font-size: 19px;
  font-weight: 700;
  color: #07070a;
}

.bottom-panel__divider {
  width: 1px;
  height: 42px;
  background: #d8d8dc;
  flex-shrink: 0;
}

.bottom-panel__text {
  font-size: 15px;
  color: #202127;
  line-height: 1.45;
  flex: 1;
  min-width: 200px;
}

.bottom-panel__text p + p {
  margin-top: 5px;
}

.bottom-panel__text .accent { color: var(--color-red); }

@media (max-width: 767px) {
  .bottom-panel {
    max-width: 342px;
    min-height: 108px;
    padding: 20px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .bottom-panel__lead {
    gap: 16px;
  }

  .bottom-panel__icon,
  .bottom-panel__icon img {
    width: 50px;
    height: 50px;
  }

  .bottom-panel__title {
    font-size: 17px;
  }

  .bottom-panel__text--mobile {
    padding-left: 66px;
    font-size: 13px;
    color: #5a5a5a;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .approach__title {
    font-size: 28px;
    line-height: 1.15;
  }
}

@media (max-width: 1023px) {
  .steps-route {
    display: none;
  }
}

/* System section */
.system {
  position: relative;
  padding: var(--section-pad) 0;
  color: var(--color-white);
  overflow: hidden;
}

.system__bg {
  position: absolute;
  inset: 0;
  background: url("../images/intro.png");
  background-size: cover;
}

.system__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,0.34) 0%, rgba(5,6,8,0.1) 72%, transparent 100%);
}

.system__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .system__inner { grid-template-columns: 680px; align-items: center; }
}

.system__scheme {
  position: absolute;
  right: 10%;
  z-index: -1;
  border-radius: 12px;
  overflow: hidden;
  @media (max-width: 1310px) {
    position: unset;
  }
}

.system__proof {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(9, 10, 13, 0.74);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-red);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.system__proof-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Solutions */
.solutions {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #fff 0%, #f8f8f6 55%, #f1f1ef 100%);
}
.solutions__header.show_mobile{
  display: none;
  @media (max-width: 1050px) {
    display: flex;
    position: relative;
    height: unset;
  }
}
.solutions__header.fade_adaptive{
  display: flex;
  @media (max-width: 1050px) {
    display: none;
  }
}

.solutions__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  margin-bottom: 40px;
  max-width: 640px;
  flex: 0 0 640px;
  height: 1px;
}

.solutions__badge {
  text-align: center;
  min-width: 100px;
  position: absolute;
  top: 0;
  right: 0;
}

.solutions__badge-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}

.solutions__badge-wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.solutions__badge-text {
  font-size: 15px;
  color: #333;
}

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

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
  .cards-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
  }

  .cards-grid .card { flex: 0 0 auto; padding: 18px 20px; }
  .cards-grid .card:nth-child(2) { width: 282px; min-height: 230px; }
  .cards-grid .card:nth-child(3) { width: 170px; min-height: 230px; }
  .cards-grid .card:nth-child(4) { width: 178px; min-height: 230px; }
  .cards-grid .card:nth-child(5) { width: 402px; min-height: 170px; }
  .cards-grid .card:nth-child(6) { width: 220px; min-height: 170px; }
  .cards-grid .card:nth-child(7) { width: 224px; min-height: 170px; }
  .cards-grid .card:nth-child(8) { width: 226px; min-height: 170px; }
  .cards-grid .card:nth-child(9) { width: 178px; min-height: 170px; }
  .cards-grid .card:nth-child(10) { width: 150px; background: none; border:none}
  .cards-grid .card:nth-child(11) { width: 246px; min-height: 150px; }
  .cards-grid .card:nth-child(12) { width: 234px; min-height: 150px; }
  .cards-grid .card:nth-child(13) { width: 278px; min-height: 150px; }
  .cards-grid .card:nth-child(14) { width: 272px; min-height: 150px; }
}

.card.fade_adaptive{
  @media (max-width: 1430px) {
    display: none;
  }
}

.card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px;
  min-height: 126px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: border-color var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

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

.card:nth-child(2)::before { background-image: url('../images/cards/card-01.png'); }
.card:nth-child(3)::before { background-image: url('../images/cards/card-02.png'); }
.card:nth-child(4)::before { background-image: url('../images/cards/card-03.png'); }
.card:nth-child(5)::before { background-image: url('../images/cards/card-04.png'); }
.card:nth-child(6)::before { background-image: url('../images/cards/card-05.png'); }
.card:nth-child(7)::before { background-image: url('../images/cards/card-06.png'); }
.card:nth-child(8)::before { background-image: url('../images/cards/card-07.png'); }
.card:nth-child(9)::before { background-image: url('../images/cards/card-08.png'); }
.card:nth-child(11)::before { background-image: url('../images/cards/card-09.png'); }
.card:nth-child(12)::before { background-image: url('../images/cards/card-10.png'); }
.card:nth-child(13)::before { background-image: url('../images/cards/card-11.png'); }
.card:nth-child(14)::before { background-image: url('../images/cards/card-12.png'); }

.card:hover { border-color: var(--color-red); }

.card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-red);
}

.card__title {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
  color: #101010;
  margin-bottom: 4px;
}

.card__desc {
  font-size: 12px;
  color: #666;
}

.solutions__cta {
  border-radius: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 1112px;
  margin-inline: auto;
  padding: 20px 20px 20px 128px;
  background: white;
  border: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.solutions__cta::before {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  opacity: 0.3;
  top: 0;
  bottom: 0;
  width: 170px;
  background: url('../images/cards/solutions-cta-side.png') center / cover no-repeat;
}

@media (max-width: 767px) {
  .solutions__cta {
    padding: 20px;
  }

  .solutions__cta::before {
    display: none;
  }
}

.solutions__cta-title {
  font-size: 23px;
  font-weight: 700;
}

.solutions__cta-sub {
  font-size: 14px;
  color: #666;
}

/* Pricing */
.pricing {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #fff 0%, #fff 72%, #fafaf8 100%);
}

.pricing__header {
  margin-bottom: 40px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid #ddd;
  margin-top: 24px;
  font-weight: 700;
}

.packages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .packages {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 9px;
  }
  .package-card { width: 400px; position: relative; cursor: pointer}
  .package-card--center { width: 468px; }
  .package-card:last-child { width: 364px; }
  .package-card button{
    position: absolute;
    bottom: 10%;
    left: 10%;
  }
}

.package-card img {
  width: 100%;
  border-radius: 4px;
}
.package-card:hover{
  transform: scale(1.1);
}

.package-card--center {
  transform: scale(1.05);
  z-index: 1;
}

@media (max-width: 1023px) {
  .package-card--center { transform: none; order: -1; }
}

.pricing__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  width: 100%;
  max-width: 1114px;
  margin-inline: auto;
}

.pricing__buttons .btn {
  font-size: 16px;
  line-height: 1;
  padding: 0 24px;
}

.pricing__buttons .btn--outline {
  border: 1.2px solid #0f0f0f;
  color: #0f0f0f;
  background: #fff;
}

.pricing__buttons .btn--dark {
  background: #ff2430;
  color: #fff;
}

.pricing__buttons .btn-arrow::after {
  font-size: 1.15em;
  margin-left: 2px;
}

.pricing__note {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding: 14px 38px;
  border: 1px solid #ddd;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing__note { grid-template-columns: 1fr 1fr; align-items: center; }
}

.pricing__note-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pricing__note-icon {
  width: 72px;
  height: 72px;
  background: center / cover no-repeat;
  border-radius: 0;
  flex-shrink: 0;
}

.pricing__note-item:first-child .pricing__note-icon {
  background-image: url('../images/cards/pricing-note-left.png');
}

.pricing__note-item:last-child .pricing__note-icon {
  background-image: url('../images/cards/pricing-note-right.png');
}

.pricing__note-title { font-weight: 700; font-size: 19px; }
.pricing__note-text { font-size: 14px; color: #666; }

/* Reviews */
.reviews {
  position: relative;
  padding: var(--section-pad) 0;
  color: var(--color-white);
}

.reviews__bg {
  position: absolute;
  inset: 0;
}

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

.reviews__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.reviews__inner {
  position: relative;
  z-index: 1;
}

.reviews__header {
  margin-bottom: 40px;
}

.reviews__title {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.reviews__subtitle {
  font-size: 18px;
  color: var(--color-gray-light);
}

.reviews__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: 1fr 500px; }
}

.logos-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .logos-wall { grid-template-columns: repeat(5, 1fr); }
}

.logo-item {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 152/97;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-cards {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .review-cards { grid-template-columns: 1fr 1fr; }
}

.review-card {
  background: linear-gradient(135deg, #171719 0%, #101012 100%);
  border: 1px solid #39393f;
  padding: 22px;
  min-height: 172px;
  border-radius: 20px;
}

.review-card__stars {
  color: var(--color-red);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14px;
  color: #f2f2f2;
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
}

.review-card__niche {
  font-size: 12px;
  color: var(--color-gray-light);
}

.reviews__cta {
  margin-top: 40px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 24px 32px;
  background: linear-gradient(135deg, #151515 0%, #0f0f0f 100%);
  border: 1px solid #383838;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
}

.reviews__cta-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
}

.reviews__cta-sub {
  font-size: 14px;
  color: var(--color-gray-light);
  margin-top: 4px;
}

/* Team */
.team {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.team__header {
  margin-bottom: 40px;
}

.team__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .team__grid { grid-template-columns: 1fr 560px; }
}

.team__grid-wrapper{
  display: flex;
  align-items: start;
  gap: 25px;
  @media (max-width: 600px) {
    flex-direction: column;
  }
}

.leader-card {
  background: #151515;
  overflow: hidden;
  border-radius: 20px;
}

.leader-card__photo img {
  width: 100%;
  aspect-ratio: 315/320;
  object-fit: cover;
}

.leader-card__info {
  padding: 20px;
  color: white;
}

.leader-card__name {
  font-size: 23px;
  font-weight: 700;
}

.leader-card__role {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.proof-card {
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .proof-card { margin-top: 0; border-radius: 20px}
}

.proof-card__title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
}

.proof-card__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
}

.proof-card__item:last-child { border-bottom: none; }

.proof-card__check {
  color: var(--color-red);
  flex-shrink: 0;
}

.proof-card__label { font-size: 14px; font-weight: 600; }
.proof-card__sub { font-size: 11px; color: #888; }

.team-members__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-members__sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

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

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-member {
  padding: 5px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  max-width: 120px;
  border-radius: 20px;
}

.team-member__photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.team-member__info{
  padding: 5px;
}

.team-member__name {
  font-size: 13px;
  font-weight: 700;
}

.team-member__role {
  font-size: 8px;
  font-weight: 700;
  color: var(--color-red);
  margin-top: 4px;
}

.team-member__desc {
  font-size: 8px;
  color: #888;
  margin-top: 2px;
}

.team__cta {
  margin-top: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 1060px;
  margin-inline: auto;
  padding: 20px 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.team__cta-bar {
  width: 4px;
  height: 38px;
  background: var(--color-red);
}

.team__cta-title {
  font-size: 24px;
  font-weight: 700;
}

.team__cta-sub {
  font-size: 14px;
  color: #666;
}

/* Footer CTA */
.footer-cta {
  position: relative;
  padding: var(--section-pad) 0 0;
  color: var(--color-white);
  min-height: 600px;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
}

.footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,6,8,0.9) 100%);
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding-bottom: 200px;
}

@media (min-width: 1024px) {
  .footer-cta__inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

.footer-cta__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

.footer-cta__equation {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-top: 32px;
  font-weight: 700;
}

.footer-cta__price {
  font-size: clamp(26px, 4vw, 30px);
}

.footer-cta__price--accent { color: var(--color-red); }

.footer-cta__eq-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 8px;
  font-size: 14px;
  color: #b8b8b8;
  font-weight: 400;
}

.offer-visual img {
  border-radius: 8px;
}

/* Site footer */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 40px 0 32px;
  margin-top: -160px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.site-footer__logo {
  font-size: 24px;
  font-weight: 700;
}

.site-footer__copy {
  font-size: 12px;
  color: #929292;
  margin-top: 16px;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.site-footer__phone {
  font-size: 20px;
  font-weight: 700;
}

.site-footer__hours {
  font-size: 12px;
  color: #929292;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #b8b8b8;
}

/* Utility */
.desktop-only { display: none; }
.mobile-only { display: block; }

@media (min-width: 1024px) {
  .desktop-only { display: block; }
  .mobile-only { display: none; }
}

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