* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #ffffff;
  background: #050505;
}
body.s2-no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s2-section-header {
  margin-bottom: 56px;
}
.s2-section-header--center {
  text-align: center;
}
.s2-section-header--center .s2-section-subtitle {
  margin: 0 auto;
}
.s2-section-label {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00e8ff;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  background: linear-gradient(180deg, #00ff87, #00e8ff);
  box-shadow: 0 0 12px rgba(0, 255, 135, 0.22);
}
.s2-section-header--center .section-title {
  padding-left: 0;
}
.s2-section-header--center .section-title::before {
  display: none;
}
.s2-section-subtitle {
  font-size: 16px;
  color: #7a7a7a;
  max-width: 560px;
  line-height: 1.6;
  padding-left: 20px;
}
.s2-section-header--center .s2-section-subtitle {
  padding-left: 0;
}
.s2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.s2-btn--filled {
  background: #00ff87;
  color: #050505;
  font-weight: 700;
  border: 1px solid #00ff87;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.s2-btn--filled:hover {
  box-shadow: 0 0 32px rgba(0, 255, 135, 0.22), 0 0 48px rgba(0, 232, 255, 0.15);
  background: #14ff91;
}
.s2-btn--outline {
  background: transparent;
  color: #00e8ff;
  border: 1px solid rgba(0, 255, 135, 0.3);
}
.s2-btn--outline:hover {
  box-shadow: 0 0 24px rgba(0, 255, 135, 0.22);
  border-color: #00e8ff;
  color: #00ff87;
}
.s2-btn--submit {
  background: #00ff87;
  color: #050505;
  font-weight: 700;
  width: 100%;
  border: 1px solid #00ff87;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.s2-btn--submit:hover {
  box-shadow: 0 0 32px rgba(0, 255, 135, 0.22);
}
.s2-btn-nav {
  padding: 8px 18px;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 0;
  color: #00ff87;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.s2-btn-nav:hover {
  box-shadow: 0 0 16px rgba(0, 255, 135, 0.22), inset 0 0 16px rgba(0, 255, 135, 0.22);
  color: #00e8ff;
  border-color: #00e8ff;
}
.s2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}
.s2-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff87, #00e8ff, transparent);
  opacity: 0.6;
}
.s2-header--scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 255, 135, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.s2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.s2-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.s2-header__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0, 255, 135, 0.22));
}
.s2-header__logo-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 17px;
  font-weight: 700;
  color: #00ff87;
  letter-spacing: 0.04em;
}
.s2-header__logo-tag {
  font-size: 11px;
  color: #7a7a7a;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .s2-header__logo-tag {
    display: none;
  }
}
.s2-header__cta {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .s2-header__cta {
    display: none;
  }
}
.s2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.s2-nav a:not(.s2-btn-nav) {
  color: #7a7a7a;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
}
.s2-nav a:not(.s2-btn-nav):hover {
  color: #00e8ff;
  text-shadow: 0 0 8px rgba(0, 255, 135, 0.22);
}
.s2-nav__cta {
  display: none;
}
.s2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.s2-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00ff87;
  transition: all 0.25s ease;
}
.s2-burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.s2-burger--active span:nth-child(2) {
  opacity: 0;
}
.s2-burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@keyframes s2-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes s2-scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}
.s2-hero {
  position: relative;
  padding: 130px 0 100px;
  background: #050505;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 255, 135, 0.3);
  background-image: linear-gradient(rgba(0, 255, 135, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 135, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.s2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0.15) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.s2-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.s2-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 40px;
  align-items: center;
}
.s2-hero__left {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 255, 135, 0.3);
}
.s2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 0;
  padding: 6px 14px;
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
  color: #00ff87;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.s2-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff87;
  box-shadow: 0 0 8px #00ff87;
  animation: s2-pulse 2s infinite;
}
.s2-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.s2-hero__title-main {
  color: #ffffff;
}
.s2-hero__title-accent {
  color: #00ff87;
  text-shadow: 0 0 40px rgba(0, 255, 135, 0.35), 0 0 80px rgba(0, 232, 255, 0.15);
}
.s2-hero__sub {
  font-size: 16px;
  color: #7a7a7a;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  border-left: 2px solid rgba(0, 232, 255, 0.4);
  padding-left: 16px;
}
.s2-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.s2-hero__metric {
  font-size: 12px;
  font-family: 'Courier New', Courier, monospace;
  color: #7a7a7a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.s2-hero__right {
  position: relative;
}
.s2-hero__img-wrap {
  position: relative;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0, 232, 255, 0.06), -4px -4px 0 rgba(0, 232, 255, 0.06);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.s2-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.25) 55%, rgba(0, 232, 255, 0.08) 100%);
  pointer-events: none;
}
.s2-hero__img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.75) contrast(1.1);
  display: block;
}
.s2-services,
.s2-advantages,
.s2-cases,
.s2-process,
.s2-team,
.s2-reviews {
  padding: 96px 0;
}
.s2-services {
  background: #0c0c0c;
}
.s2-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 255, 135, 0.3);
}
.s2-service-card {
  background: #101010;
  padding: 0;
  border: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.s2-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff87, #00e8ff);
  box-shadow: 0 0 12px #00ff87;
  transition: width 0.35s ease;
}
.s2-service-card:hover {
  background: #151515;
}
.s2-service-card:hover::after {
  width: 100%;
}
.s2-service-card:hover .s2-service-card__photo {
  filter: saturate(0.7) brightness(0.8);
}
.s2-service-card__body {
  padding: 28px 24px 32px;
}
.s2-service-card__photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.35) brightness(0.65);
  margin-bottom: 0;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  transition: filter 0.3s ease;
}
.s2-service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.s2-service-card__text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
}
.s2-advantages {
  background: #050505;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 255, 135, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 135, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.s2-advantages::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 232, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}
.s2-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.s2-advantage-item {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  transition: all 0.25s ease;
  position: relative;
  background: #101010;
}
.s2-advantage-item::before,
.s2-advantage-item::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #00e8ff;
  border-style: solid;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.s2-advantage-item::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}
.s2-advantage-item::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 1px 1px 0;
}
.s2-advantage-item:hover {
  border-color: rgba(0, 255, 135, 0.3);
  background: rgba(0, 255, 135, 0.04);
  transform: translateY(-2px);
}
.s2-advantage-item:hover::before,
.s2-advantage-item:hover::after {
  opacity: 1;
}
.s2-advantage-item__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  color: #050505;
  background: #00ff87;
  padding: 4px 8px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}
.s2-advantage-item__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.s2-advantage-item__text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
}
.s2-stats {
  padding: 96px 0;
  background: #0c0c0c;
  border-top: 2px solid rgba(0, 255, 135, 0.3);
  border-bottom: 2px solid rgba(0, 232, 255, 0.2);
}
.s2-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.s2-stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.s2-stat:last-child {
  border-right: none;
}
.s2-stat__num {
  display: block;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #00ff87;
  text-shadow: 0 0 30px rgba(0, 255, 135, 0.22);
  line-height: 1;
}
.s2-stat__label {
  display: block;
  font-size: 13px;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  line-height: 1.4;
}
.s2-cases {
  background: #050505;
}
.s2-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.s2-case-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.s2-case-card:hover {
  border-color: rgba(0, 255, 135, 0.3);
  box-shadow: 0 0 24px rgba(0, 232, 255, 0.06);
}
.s2-case-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ff87;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 0;
  padding: 4px 10px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.s2-case-card__client {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}
.s2-case-card__industry {
  font-size: 13px;
  color: #7a7a7a;
  margin-bottom: 20px;
}
.s2-case-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(0, 255, 135, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.s2-case-card__metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
}
.s2-case-card__metric-label {
  color: #7a7a7a;
}
.s2-case-card__metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #00ff87;
  text-shadow: 0 0 12px rgba(0, 255, 135, 0.22);
  white-space: nowrap;
}
.s2-case-card__text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.s2-process {
  background: #050505;
}
.s2-team {
  background: #0c0c0c;
}
.s2-team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.s2-team__img-wrap {
  position: relative;
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 232, 255, 0.06);
}
.s2-team__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.7) 0%, rgba(8, 8, 8, 0.2) 100%);
  pointer-events: none;
}
.s2-team__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  display: block;
}
.s2-team__content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.s2-team__text {
  color: #7a7a7a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.s2-team__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.s2-team__fact {
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  text-align: center;
  transition: all 0.25s ease;
}
.s2-team__fact:hover {
  border-color: rgba(0, 255, 135, 0.3);
  background: rgba(0, 255, 135, 0.03);
}
.s2-team__fact-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00ff87;
  text-shadow: 0 0 16px rgba(0, 255, 135, 0.22);
  margin-bottom: 6px;
}
.s2-team__fact-label {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.4;
}
.s2-process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 32px;
  border-top: 1px dashed rgba(0, 255, 135, 0.3);
}
.s2-process-step {
  position: relative;
  padding-top: 8px;
}
.s2-process-step__num {
  font-size: 56px;
  font-weight: 700;
  color: #00ff87;
  opacity: 0.12;
  font-family: 'Space Grotesk', sans-serif;
  position: absolute;
  top: -16px;
  left: 0;
  line-height: 1;
}
.s2-process-step__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #00ff87;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 16px rgba(0, 255, 135, 0.22);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #00ff87;
  font-family: 'Space Grotesk', sans-serif;
}
.s2-process-step__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.s2-process-step__text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
}
.s2-reviews {
  background: #0c0c0c;
}
.s2-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.s2-review-card {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 32px;
  position: relative;
  transition: all 0.25s ease;
}
.s2-review-card:hover {
  border-color: rgba(0, 255, 135, 0.3);
}
.s2-review-card__quote {
  font-size: 72px;
  line-height: 0.8;
  color: #00ff87;
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 20px;
}
.s2-review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.s2-review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 135, 0.3);
  box-shadow: 0 0 12px rgba(0, 255, 135, 0.22);
  flex-shrink: 0;
}
.s2-review-card__name {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 2px;
}
.s2-review-card__role {
  font-size: 12px;
  color: #7a7a7a;
}
.s2-review-card__stars {
  color: #00ff87;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.s2-review-card__text {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.s2-cta {
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.s2-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
}
.s2-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.s2-cta .s2-section-header {
  margin-bottom: 40px;
}
.s2-cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s2-cta-form input,
.s2-cta-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  color: #ffffff;
  padding: 14px 16px;
  font-size: 15px;
  width: 100%;
  transition: all 0.25s ease;
}
.s2-cta-form input:focus,
.s2-cta-form textarea:focus {
  outline: none;
  border-color: #00ff87;
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.22), 0 0 16px rgba(0, 255, 135, 0.22);
}
.s2-cta-form input::placeholder,
.s2-cta-form textarea::placeholder {
  color: #7a7a7a;
}
.s2-cta__success {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #00ff87;
  padding: 24px;
  text-shadow: 0 0 20px rgba(0, 255, 135, 0.22);
}
.s2-cta__privacy {
  text-align: center;
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 16px;
}
.s2-cta__privacy a {
  color: #00ff87;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.s2-footer {
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 0 24px;
}
.s2-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.s2-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.s2-footer__logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 135, 0.22));
}
.s2-footer__logo-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  font-weight: 700;
  color: #00ff87;
  letter-spacing: 0.04em;
}
.s2-footer__slogan {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.6;
  max-width: 280px;
}
.s2-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.s2-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s2-footer__links a {
  font-size: 14px;
  color: #7a7a7a;
  transition: all 0.25s ease;
}
.s2-footer__links a:hover {
  color: #00ff87;
  text-shadow: 0 0 8px rgba(0, 255, 135, 0.22);
}
.s2-footer__copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #7a7a7a;
}
.s2-service-card,
.s2-advantage-item,
.s2-case-card,
.s2-process-step,
.s2-team__fact,
.s2-review-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.s2-service-card.s2-animate,
.s2-advantage-item.s2-animate,
.s2-case-card.s2-animate,
.s2-process-step.s2-animate,
.s2-team__fact.s2-animate,
.s2-review-card.s2-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .s2-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .s2-hero__left {
    padding-left: 16px;
  }
}
@media (max-width: 768px) {
  .s2-header__cta {
    display: none;
  }
  .s2-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(0, 255, 135, 0.3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    gap: 0;
  }
  .s2-nav a:not(.s2-btn-nav) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
  }
  .s2-nav__cta {
    display: inline-flex;
    margin-top: 20px;
    justify-content: center;
  }
  .s2-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .s2-burger {
    display: flex;
  }
  .s2-services__grid,
  .s2-cases__grid,
  .s2-process__list,
  .s2-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s2-team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .s2-team__content .section-title {
    text-align: center;
  }
  .s2-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s2-stats__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .s2-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .s2-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .s2-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .s2-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .s2-footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .s2-hero {
    padding: 110px 0 80px;
  }
  .s2-hero__btns {
    flex-direction: column;
  }
  .s2-hero__btns .s2-btn {
    width: 100%;
  }
  .s2-services__grid,
  .s2-advantages__grid,
  .s2-cases__grid,
  .s2-process__list,
  .s2-reviews__grid,
  .s2-stats__row,
  .s2-team__facts {
    grid-template-columns: 1fr;
  }
  .s2-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .s2-stat:last-child {
    border-bottom: none;
  }
  .s2-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .s2-section-header {
    margin-bottom: 40px;
  }
}
