/* =========================
   RESET + BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0e0e11;
  color: #ffffff;
}

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

button {
  font-family: inherit;
}

/* =========================
   VARIABLES
========================= */
:root {
  --bg-dark: #0e0e11;
  --bg-dark-2: #0b0b0e;

  --accent: #c0185d;
  --accent-2: #8a0f3f;

  --text-main: #ffffff;
  --text-muted: #bdbdc7;
}

/* =========================
   HEADER
========================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  z-index: 10;
}

.lang-switch {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.lang-switch button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 120px 20px 80px;
  background:
    radial-gradient(
      80% 80% at 80% 20%,
      rgba(192, 24, 93, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* TITLE */
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--accent);
}

/* SUBTITLE */
.hero__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

/* ACTIONS */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-size: 16px;
}

.btn.primary {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(192, 24, 93, 0.35);
}

.btn.primary:hover {
  opacity: 0.9;
}

/* PRICE */
.hero__price strong {
  display: block;
  font-size: 18px;
}

.hero__price span {
  font-size: 14px;
  color: var(--text-muted);
}

/* IMAGE BLOCK */
.hero__image {
  position: relative;
  border-radius: 28px;
  padding: 24px;

  background: radial-gradient(
    60% 60% at 50% 40%,
    rgba(192, 24, 93, 0.35),
    transparent 70%
  );
}

.hero__image img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

/* =========================
   FORM (временно, базово)
========================= */
#form {
  padding: 80px 20px;
  background: #ffffff;
  color: #000;
}

#form h2 {
  text-align: center;
  margin-bottom: 24px;
}

#leadForm {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#leadForm input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

#leadForm button {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__image {
    padding: 16px;
  }

  .hero__image img {
    margin: 0 auto;
  }
}
/* =========================
   PROBLEMS
========================= */
.problems {
  padding: 100px 20px;
  background: #ffffff;
  color: #000000;
}

.problems__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problems__image img {
  width: 100%;
  border-radius: 24px;
}

.problems h2 {
  font-size: 40px;
  margin-bottom: 32px;
  line-height: 1.2;
}

.problems h2 span {
  color: var(--accent);
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: #f7f7f9;
}

.problem-card img {
  width: 40px;
  height: 40px;
}

.problem-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.problem-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 900px) {
  .problems__container {
    grid-template-columns: 1fr;
  }

  .problems h2 {
    text-align: center;
    font-size: 32px;
  }

  .problems__image {
    order: 2;
  }
}
/* =========================
   BENEFITS
========================= */
.benefits {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b0b0e, #0e0e11);
  color: #ffffff;
}

.benefits__vector {
  position: absolute;
  pointer-events: none;
}

.benefits__vector--top {
  top: -40px;
  right: -80px;
  width: 320px;
}

.benefits__vector--bottom {
  bottom: -60px;
  left: -80px;
  width: 360px;
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.benefits h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefits h2 span {
  color: var(--accent);
}

.benefits__subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 16px;
}

.benefits__logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.benefits__logos img {
  height: 48px;
}

/* CARDS */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  backdrop-filter: blur(6px);
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .benefits {
    padding: 80px 20px;
  }

  .benefits h2 {
    font-size: 30px;
  }

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

  .benefits__logos {
    flex-direction: column;
  }
}
/* =========================
   AUTOMATION
========================= */
.automation {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: linear-gradient(180deg, #0e0e11, #0b0b0e);
  color: #ffffff;
}

.automation__vector {
  position: absolute;
  pointer-events: none;
}

.automation__vector--top {
  top: -60px;
  right: -100px;
  width: 300px;
}

.automation__vector--bottom {
  bottom: -80px;
  left: -120px;
  width: 360px;
}

.automation__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.automation h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.automation h2 span {
  color: var(--accent);
}

.automation__subtitle {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 16px;
}

/* LIST */
.automation__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.automation__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.automation__list img {
  width: 42px;
}

/* SIDE CARD */
.automation__card {
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(6px);
}

.automation__card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.automation__card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .automation {
    padding: 80px 20px;
  }

  .automation__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .automation h2 {
    font-size: 30px;
  }
}
/* =========================
   EFFECT (BEFORE / AFTER)
========================= */
.effect {
  padding: 120px 20px;
  background: #ffffff;
  color: #000000;
}

.effect__container {
  max-width: 1200px;
  margin: 0 auto;
}

.effect h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
}

.effect h2 span {
  color: var(--accent);
}

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

/* CARD */
.effect-card {
  border-radius: 24px;
  overflow: hidden;
  background: #f7f7f9;
}

.effect-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.effect-card__content {
  padding: 24px;
}

.effect-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #a00;
}

.effect-label.success {
  color: #1aa34a;
}

.effect-card ul {
  margin: 0;
  padding-left: 18px;
}

.effect-card li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
  .effect {
    padding: 80px 20px;
  }

  .effect h2 {
    font-size: 30px;
  }

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

  .effect-card img {
    height: 220px;
  }
}
/* =========================
   STATS
========================= */
.stats {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b0b0e, #0e0e11);
  color: #ffffff;
}

.stats__vector {
  position: absolute;
  pointer-events: none;
}

.stats__vector--top {
  top: -60px;
  right: -100px;
  width: 300px;
}

.stats__vector--bottom {
  bottom: -80px;
  left: -120px;
  width: 360px;
}

.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.stats h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.stats h2 span {
  color: var(--accent);
}

.stats__subtitle {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 16px;
}

/* GRID */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 20px;
  backdrop-filter: blur(6px);
}

.stat-value {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-value span {
  font-size: 28px;
  color: var(--accent);
}

.stat-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .stats {
    padding: 80px 20px;
  }

  .stats h2 {
    font-size: 30px;
  }

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

  .stat-value {
    font-size: 44px;
  }
}
/* =========================
   TRUST
========================= */
.trust {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: linear-gradient(180deg, #0e0e11, #0b0b0e);
  color: #ffffff;
}

.trust__vector {
  position: absolute;
  pointer-events: none;
}

.trust__vector--top {
  top: -60px;
  right: -100px;
  width: 300px;
}

.trust__vector--bottom {
  bottom: -80px;
  left: -120px;
  width: 360px;
}

.trust__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.trust h2 span {
  color: var(--accent);
}

.trust__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust__list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: var(--text-muted);
}

.trust__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* TEAM CARD */
.trust__card {
  background: radial-gradient(
    80% 80% at 80% 20%,
    rgba(192, 24, 93, 0.35),
    transparent 60%
  );
  border-radius: 28px;
  padding: 24px;
}

.trust__card img {
  width: 100%;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .trust {
    padding: 80px 20px;
  }

  .trust__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust h2 {
    font-size: 30px;
    text-align: center;
  }

  .trust__list {
    align-items: center;
    text-align: center;
  }

  .trust__list li {
    padding-left: 0;
  }

  .trust__list li::before {
    display: none;
  }
}
/* =========================
   STEPS
========================= */
.steps {
  padding: 120px 20px;
  background: #ffffff;
  color: #000000;
}

.steps__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps h2 {
  font-size: 40px;
  margin-bottom: 32px;
}

.steps h2 span {
  color: var(--accent);
}

/* LIST */
.steps__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps__list li {
  display: flex;
  gap: 20px;
}

.step-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
}

.steps__list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.steps__list p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* VIDEO */
.steps__video {
  text-decoration: none;
  color: #ffffff;
}

.steps__video-inner {
  position: relative;
  height: 320px;
  border-radius: 24px;
  background: radial-gradient(
      80% 80% at 80% 20%,
      rgba(192, 24, 93, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0b0e, #0e0e11);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: relative;
}

.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.steps__video-inner span {
  font-size: 14px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .steps {
    padding: 80px 20px;
  }

  .steps__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps h2 {
    font-size: 30px;
    text-align: center;
  }

  .steps__list {
    align-items: center;
    text-align: center;
  }

  .steps__list li {
    flex-direction: column;
    align-items: center;
  }
}
/* =========================
   PLANS
========================= */
.plans {
  padding: 120px 20px;
  background: #ffffff;
  color: #000000;
}

.plans__container {
  max-width: 1200px;
  margin: 0 auto;
}

.plans__title {
  font-size: 40px;
  margin-bottom: 12px;
}

.plans__subtitle {
  font-size: 18px;
  margin-bottom: 48px;
  color: #444;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARDS */
.plan-card {
  border-radius: 24px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card--dark {
  background: radial-gradient(
      80% 80% at 80% 20%,
      rgba(192, 24, 93, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0b0e, #0e0e11);
  color: #ffffff;
}

.plan-card--light {
  background: #f7f7f9;
  color: #000;
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.plan-card p {
  font-size: 14px;
  line-height: 1.4;
}

/* PILLS */
.plan-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 14px;
  margin-top: 12px;
}

.plan-pill.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
}

.plan-muted {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* BUTTONS */
.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 12px;
}

/* MOBILE */
@media (max-width: 1100px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plans {
    padding: 80px 20px;
  }

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

  .plans__title {
    font-size: 30px;
  }
}
/* =========================
   INTEGRATION EFFECT
========================= */
.integration-effect {
  padding: 120px 20px;
  background: #ffffff;
  color: #000;
}

.integration-effect__container {
  max-width: 1200px;
  margin: 0 auto;
}

.integration-effect h2 {
  font-size: 40px;
  margin-bottom: 48px;
}

.integration-effect h2 span {
  color: var(--accent);
}

/* GRID */
.integration-effect__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.effect-item {
  background: radial-gradient(
      80% 80% at 80% 20%,
      rgba(192, 24, 93, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0b0e, #0e0e11);
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
  min-height: 220px;
}

/* ICON */
.effect-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.effect-icon img {
  width: 24px;          /* 🔹 под PNG */
  height: 24px;
  object-fit: contain; /* 🔹 важно для PNG */
}

/* TEXT */
.effect-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

/* TABLET */
@media (max-width: 1100px) {
  .integration-effect__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .integration-effect {
    padding: 80px 20px;
  }

  .integration-effect h2 {
    font-size: 30px;
  }

  .integration-effect__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FINAL FORM
========================= */
.final-form {
  padding: 120px 20px;
  background: #ffffff;
  color: #000;
}

.final-form__container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.final-form h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.final-form p {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

/* FORM */
#leadFormFinal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#leadFormFinal input {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

#formResultFinal {
  margin-top: 16px;
  font-size: 14px;
  color: green;
}

/* IMAGE */
.final-form__image img {
  width: 100%;
  max-width: 420px;
}

/* MOBILE */
@media (max-width: 900px) {
  .final-form {
    padding: 80px 20px;
  }

  .final-form__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-form h2 {
    font-size: 30px;
  }

  .final-form__image {
    order: -1;
  }

  .final-form__image img {
    margin: 0 auto 32px;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 80px 20px 40px;
  background: #0b0b0e;
  color: #ffffff;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--accent);
}

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

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__column h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer__column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__column a:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 900px) {
  .footer {
    padding: 60px 20px 32px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
