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;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease 0.2s;
}

.standout-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.standout-img {
  width: 100%;
  max-width: 400px;
  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%;
  }
}
