body {
  margin: 0;
}

:root {
  --blue: #2563eb;
  --purple: #6d28d9;
  --bg: #f8fafc;
  --section-1: #eef2ff;
  --section-2: #f5f3ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --gradient-blue: #3b82f6;
  --gradient-green: #10b981;
  --light-blue: #60a5fa;
}

.results-final-section {
  background: var(--bg);
  padding: 140px 20px;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.results-final-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.final-left {
  color: var(--text);
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
  display: flex;
  flex-direction: column;
}

.final-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.final-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 36px 0;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.final-title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 80px;
  height: 6px;
  background: var(--blue);
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.final-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 40px 0;
  font-weight: 500;
}

.final-text strong,
.final-text .strong-text {
  color: var(--blue);
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
  margin: 1px 0;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.3);
  transition: all 0.4s ease;
  align-self: flex-start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.6s;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(109, 40, 217, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-2px);
}

.final-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease 0.2s;
}

.final-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.final-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
  border: 6px solid rgba(109, 40, 217, 0.15);
  transition: all 0.6s ease;
}

.final-img:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.22);
  border-color: rgba(109, 40, 217, 0.3);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .results-final-section .container {
    padding: 0 30px;
    gap: 80px;
  }
  .final-title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
  .final-title::after {
    width: 70px;
    height: 5px;
  }
  .final-text {
    font-size: 1.25rem;
    margin-bottom: 36px;
  }
  .cta-button {
    padding: 14px 32px;
    font-size: 1.15rem;
  }
}

@media (max-width: 1024px) {
  .results-final-section {
    padding: 120px 20px;
  }
  .results-final-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .final-left {
    text-align: center;
    align-items: center;
    transform: translateY(30px);
  }
  .final-left.visible {
    transform: translateY(0);
  }
  .final-right {
    order: -1;
    transform: translateY(30px);
  }
  .final-right.visible {
    transform: translateY(0);
  }
  .final-title {
    font-size: 2.6rem;
    margin: 0 auto 32px;
  }
  .final-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .final-text {
    font-size: 1.2rem;
    margin-bottom: 36px;
  }
  .cta-button {
    align-self: center;
    padding: 14px 32px;
    font-size: 1.15rem;
  }
  .final-img {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .results-final-section {
    padding: 100px 15px;
  }
  .results-final-section .container {
    padding: 0 15px;
    gap: 50px;
  }
  .final-title {
    font-size: 2.2rem;
    margin-bottom: 28px;
  }
  .final-title::after {
    width: 60px;
    height: 4px;
  }
  .final-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  .final-text strong {
    display: inline;
    padding: 0 4px;
    font-size: 1.05rem;
  }
  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 1.1rem;
  }
  .final-img {
    max-width: 100%;
    border-radius: 20px;
    border-width: 4px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content,
.image-wrapper {
  opacity: 0;
}

.standout-section {
  background: linear-gradient(
    135deg,
    var(--gradient-blue) 0%,
    var(--gradient-green) 100%
  );
  padding: 140px 20px;
  overflow: hidden;
}

.standout-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.standout-left {
  color: white;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.standout-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.standout-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 32px 0;
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.standout-text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
}

.standout-text strong {
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin: 2px 0;
}

.standout-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:30px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease 0.2s;

}

.standout-right .adress-title{
  color:#fff;
  font-size: 3.2rem;
  font-weight: 900;
}

.standout-right .adress{
  color:#6d28d9;
  font-size: 3.2rem;
  font-weight: 600;
}




@media (max-width: 640px) {
  .standout-right .adress-title, .standout-right .adress {
      font-size: 2.2rem;
      margin-bottom: 24px;
  }
}


.standout-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.standout-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.5s ease;
}

.standout-img:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .standout-section .container {
    padding: 0 30px;
    gap: 60px;
  }
  .standout-title {
    font-size: 2.8rem;
    margin-bottom: 28px;
  }
  .standout-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .standout-section {
    padding: 120px 20px;
  }
  .standout-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .standout-left {
    text-align: center;
    transform: translateY(30px);
  }
  .standout-left.visible {
    transform: translateY(0);
  }
  .standout-right {
    order: -1;
    transform: translateY(30px);
  }
  .standout-right.visible {
    transform: translateY(0);
  }
  .standout-title {
    font-size: 2.6rem;
  }
  .standout-text {
    font-size: 1.2rem;
  }
  .standout-img {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .standout-section {
    padding: 30px 15px;
  }
  .standout-section .container {
    padding: 0 15px;
    gap: 40px;
    justify-content: center;
  }
  .standout-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .standout-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .standout-text strong {
    display: inline;
    padding: 0 4px;
    font-size: 1.05rem;
  }
  .standout-img {
    max-width: 100%;
    border-radius: 18px;
    border-width: 4px;
  }
}

:root {
  --blue: #2563eb;
  --purple: #6d28d9;
  --bg: #f8fafc;
  --section-1: #eef2ff;
  --section-2: #f5f3ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --gradient-blue: #3b82f6;
  --gradient-green: #10b981;
}

.social-proof-section {
  background: transparent;
  padding: 0 20px 120px 20px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.social-proof-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.proof-image-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 6px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}

.proof-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.proof-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin-top: -32px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.9s ease 0.3s;
}

.proof-columns.visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-column {
  color: var(--text);
}

.proof-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  font-weight: 400;
}

.proof-text strong {
  color: var(--blue);
  font-weight: 700;
}

.proof-text em {
  font-style: italic;
  color: var(--muted);
  background: rgba(37, 99, 235, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
  margin: 2px 0;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .social-proof-section .container {
    padding: 0 30px;
  }
  .proof-image-wrapper {
    margin-bottom: 20px;
  }
  .proof-columns {
    gap: 50px;
    margin-top: -10px;
  }
  .proof-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .social-proof-section {
    padding-bottom: 100px;
    margin-top: -60px;
  }
  .proof-image-wrapper {
    margin-bottom: 18px;
  }
  .proof-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    margin-top: -8px;
  }
  .proof-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .social-proof-section {
    padding: 0 15px 80px 15px;
    margin-top: -50px;
  }
  .social-proof-section .container {
    padding: 0 15px;
  }
  .proof-image-wrapper {
    margin-bottom: 16px;
  }
  .proof-img {
    border-radius: 18px;
    border-width: 4px;
  }
  .proof-columns {
    gap: 28px;
    margin-top: -6px;
  }
  .proof-text {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
  }
  .proof-text em {
    display: inline;
    padding: 0 4px;
  }
}

.solution-section {
  background: var(--bg);
  padding: 120px 20px;
}

.solution-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 80px;
  align-items: start;
}

.solution-left {
  color: var(--text);
  padding-top: 8px;
}

.solution-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: var(--text);
}

.solution-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.solution-right {
  color: var(--text);
}

.stages-list {
  list-style: none;
  counter-reset: stage-counter;
  padding: 0;
  margin: 0;
}

.stage-item {
  counter-increment: stage-counter;
  position: relative;
  padding-left: 48px;
  margin-bottom: 36px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.stage-item::before {
  content: counter(stage-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--light-blue);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-blue);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.stage-item strong {
  color: var(--text);
  font-weight: 700;
}

.sub-list {
  list-style: none;
  padding-left: 20px;
  margin: 16px 0 0 0;
}

.sub-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--muted);
}

.sub-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--light-blue);
  font-weight: bold;
}

.sub-list strong {
  color: var(--text);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .solution-section .container {
    padding: 0 30px;
    gap: 60px;
  }
  .solution-title {
    font-size: 2.6rem;
  }
  .solution-subtitle {
    font-size: 1.2rem;
  }
  .stage-item {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 1024px) {
  .solution-section {
    padding: 100px 20px;
  }
  .solution-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  .solution-left {
    text-align: center;
    padding-top: 0;
  }
  .solution-title {
    font-size: 2.4rem;
    text-align: center;
  }
  .solution-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .solution-section {
    padding: 20px 15px;
  }
  .solution-section .container {
    padding: 0 15px;
    gap: 40px;
  }
  .solution-title {
    font-size: 2rem;
  }
  .solution-subtitle {
    font-size: 1.1rem;
  }

  .stage-item {
    font-size: 1rem;
    margin-bottom: 36px;
    padding-left: 48px;
    padding-top: 0;
    text-align: left;
    position: relative;
  }

  .stage-item::before {
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    border-width: 1.5px;
  }

  .sub-list li {
    font-size: 0.95rem;
    padding-left: 24px;
  }
}

.company-section {
  background: var(--bg);
  padding: 120px 20px 60px;
}

.company-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0px 40px;
  display: flex;
  align-items: center;
  border-top: solid rgba(37, 99, 235, 0.06) 5px;
  border-bottom: solid rgba(37, 99, 235, 0.06) 5px;
}

.highlight-card {
  width: 100%;
  max-width: 1440px;
  background: linear-gradient(
    135deg,
    var(--gradient-blue) 0%,
    var(--gradient-green) 100%
  );
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.highlight-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  align-items: center;
  padding: 60px;
  gap: 50px;
}

.card-text {
  color: white;
}

.card-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.highlight-img:hover {
  transform: scale(1.04);
}

.bottom-text-wrapper {
  width: 100%;
  max-width: 1100px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease 0.3s;
}

.bottom-text-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.bottom-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bottom-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.bottom-icon:hover {
  transform: translateY(-4px);
}

.bottom-icon--left {
  transform: scaleX(-1);
}

.bottom-text {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .company-section .container {
    padding: 0 30px;
  }
  .card-content {
    padding: 50px;
    gap: 40px;
  }
  .card-title {
    font-size: 2.4rem;
  }
  .card-desc {
    font-size: 1.2rem;
  }
  .bottom-images {
    gap: 30px;
  }
  .bottom-icon {
    width: 50px;
    height: 50px;
  }
}

.results-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  padding: 140px 20px 160px;
  color: white;
  text-align: center;
  width: 100%;
}

.results-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 3.4rem;
  font-weight: 900;
  margin: 0 0 90px 0;
  line-height: 1.1;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0;
  width: auto;
}

/* .section-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(255,255,255,0.4);
} */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 100%;
  max-width: 1300px;
}

.stats-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
  max-width: 1300px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.02);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 260px;
  margin: 0 auto;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1440px) {
  .results-section .container {
    padding: 0 0px;
  }
  .section-title {
    font-size: 3rem;
    margin-bottom: 80px;
  }
  .section-title::after {
    width: 120px;
    height: 5px;
  }
  .stat-value {
    font-size: 3.6rem;
  }
  .stats-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .stats-grid,
  .stats-grid.three {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 2.6rem;
    margin-bottom: 70px;
  }
  .stat-value {
    font-size: 3.2rem;
  }
  .stat-label {
    font-size: 1.3rem;
  }
  .stat-desc {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .results-section {
    padding: 100px 15px 120px;
    margin-bottom: 50px;
  }
  .results-section .container {
    padding: 0 15px;
  }
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
    padding: 0 10px;
  }
  .section-title::after {
    width: 90px;
    height: 4px;
  }
  .stats-grid,
  .stats-grid.three {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-value {
    font-size: 3rem;
  }
  .stat-label {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
  .stat-desc {
    font-size: 0.95rem;
    max-width: 220px;
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  /*  width: 100vw; */
  margin: 0;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content {
  color: white;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
  font-weight: 500;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1440px) {
  .container {
    padding: 0 30px;
    gap: 60px;
  }

  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 20px;
  }

  .title {
    font-size: 2.6rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .image-wrapper {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 60px 15px;
  }

  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 15px;
  }
}

.success-section {
  background: var(--bg);
  padding: 100px 20px;
}
.success-section .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.success-section .image-wrapper {
  display: flex;
  justify-content: center;
}
.section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.section-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.2);
}
.success-section .content {
  color: var(--text);
}
.section-title-2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: var(--text) !important;
}
.section-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

.company-section {
  padding: 60px 100px 0px;
}
.ava-bl {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
}

.company-section .ava-img {
  width: 150px;
  height: 150px;
  border-radius: 10%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.profile-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin: 5px 0 0px;
}

.profile-role {
  text-align: center;
  font-size: 19px;
  color: var(--blue);
  font-weight: 600;
  margin: 0px 0px 20px;
}

.btn-contact {
  margin-top: 0px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
  transition: all 0.4s;
  width: 100%;
  max-width: 280px;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.5);
}

@media (max-width: 1440px) {
  .success-section .container {
    padding: 0 30px;
    gap: 60px;
  }
  .section-title-2 {
    font-size: 2.5rem;
  }
  .section-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .success-section {
    padding: 80px 20px;
  }
  .success-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 20px;
  }
  .section-title {
    font-size: 2.3rem;
  }
  .image-wrapper {
    order: -1;
  }
}
@media (max-width: 640px) {
  .success-section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-text {
    font-size: 1.1rem;
  }
  .success-section .container {
    padding: 0 15px;
  }
}
@media (max-width: 800px) {
  .results-final-section .container {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .company-section {
    padding: 100px 20px 50px;
  }

  .company-section .container {
    flex-direction: column;
    border-top: none;
    border-bottom: none;
  }

  .company-section .ava-img {
    width: 250px;
    height: 250px;
  }
  .card-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 40px;
    gap: 40px;
  }
  .card-image {
    order: -1;
  }
  .highlight-img {
    max-width: 480px;
  }
  .bottom-text {
    font-size: 1.1rem;
    max-width: 600px;
  }
  .bottom-images {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .company-section {
    padding: 0px 15px 40px;
  }
  .company-section .container {
    padding: 0 15px;
  }
  .highlight-card {
    border-radius: 24px;
    margin-bottom: 16px;
  }
  .card-content {
    padding: 40px 25px;
    gap: 30px;
  }
  .card-title {
    font-size: 2rem;
  }
  .card-desc {
    font-size: 1.1rem;
  }
  .highlight-img {
    max-width: 100%;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.2);
  }
  .bottom-images {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .bottom-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }
  .bottom-icon--left {
    transform: scaleX(-1);
  }
  .bottom-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }
}



/* ==========================================================================
   ПОДВАЛ (FOOTER) - ПРЕМИУМ ДИЗАЙН MULTIREGION
   ========================================================================== */
.site-footer {
  position: relative;
  background: #090d16;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-accent {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 35%, #06b6d4 70%, #10b981 100%);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 38px 5% 24px;
  box-sizing: border-box;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1.35fr;
  gap: 36px;
  margin-bottom: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Колонка 1: Бренд и миссия */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
  width: fit-content;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 100px;
  color: #34d399;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: footerPulse 2s infinite ease-in-out;
}

@keyframes footerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.footer-badges-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #cbd5e1;
}

.footer-badge-item .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Заголовки колонок */
.footer-col-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  border-radius: 2px;
}

/* Списки навигации и решений */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list li a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

.footer-link-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-price-tag {
  font-size: 12px;
  font-weight: 600;
  color: #38bdf8;
  margin-left: auto;
}

/* Карточка прямого контакта эксперта */
.footer-expert-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-expert-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-expert-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-expert-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-expert-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.footer-expert-role {
  color: #64748b;
  font-size: 12.5px;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-link:hover {
  color: #38bdf8;
}

.footer-hours {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  color: #ffffff;
}

.footer-social-btn.tg {
  background: rgba(37, 162, 227, 0.15);
  border: 1px solid rgba(37, 162, 227, 0.35);
  color: #38bdf8;
}

.footer-social-btn.tg:hover {
  background: #229ed9;
  border-color: #229ed9;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.35);
}

.footer-social-btn.wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
}

.footer-social-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.footer-action-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.footer-action-cta:hover {
  opacity: 0.94;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Баннер географии охвата городов */
.footer-geo-strip {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-geo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 22px;
  flex-shrink: 0;
}

.footer-geo-content {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-geo-content strong {
  color: #f1f5f9;
}

/* Нижняя строка копирайта и ссылок */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

.footer__bottom-item {
  display: inline-flex;
  align-items: center;
}

.footer-bottom p,
.footer__bottom-item p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13px;
}

.footer-developer-credit a,
.footer__bottom-item a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-developer-credit a:hover,
.footer__bottom-item a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

.md-line-dotted {
  cursor: pointer;
  border-bottom: 1px dotted rgba(148, 163, 184, 0.6);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.md-line-dotted:hover {
  color: #38bdf8;
  border-bottom-color: #38bdf8;
}

.footer-engine-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
}

@media (max-width: 1100px) {
  .footer-main-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
	.footer-container {
    padding: 30px 5% 18px !important;
  }

  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
  }
  
  .footer-col-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .footer-links-list li a {
    justify-content: center !important;
  }
  
  .footer-logo {
    margin: 0 auto 14px !important;
  }
  
  .footer-status-pill,
  .footer-badges-list {
    align-items: center !important;
    margin: 0 auto 18px !important;
  }

  .footer-expert-box {
    align-items: center !important;
    text-align: center !important;
    padding: 18px !important;
  }
  
  .footer-expert-header {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .footer-social-row {
    justify-content: center !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .footer-developer-credit,
  .footer-legal-links,
  .footer__bottom-item {
    justify-content: center !important;
  }

  .footer-geo-strip {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px !important;
  }
}
