/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  /*min-height: 100vh;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-color: #000000;
  padding: 6rem 2rem 4rem;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-bottom: 6rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1C1C1CB2;
  border: 1px solid rgba(255, 232, 239, 0.11);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  padding-left: 0.5rem;
  margin-bottom: 2rem;
}

.badge svg {
  flex-shrink: 0;
  margin-left: 0;
}

.badge span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}

/* Hero Title */
.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  font-family: 'Satoshi', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.5rem 0;
  font-family: 'Satoshi', sans-serif;
}

/* Hero Video Wrapper */
.hero-video-wrapper {
  width: 100%;
  height: 0;
  overflow: visible;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.hero-video-bg {
  position: absolute;
  top: -35em;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  color: #000000;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Gradient Arc */
.gradient-circle {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 600px;
  margin: 4rem auto -200px;
  overflow: hidden;
}

.gradient-circle::before {
  content: '';
  position: absolute;
  width: 1600px;
  height: 800px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 800px 400px at center top,
    rgba(138, 43, 226, 0.9) 0%,
    rgba(99, 58, 175, 0.7) 15%,
    rgba(75, 0, 130, 0.5) 35%,
    rgba(48, 25, 82, 0.3) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  filter: blur(50px);
  border-radius: 50% 50% 0 0;
}

/* Stats Container */
.stats-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Stat Item */
.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

.stat-item p {
  font-size: 1.2em;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Satoshi', sans-serif;
}

/* Info Section */
.info-section {
  background-color: #000000;
  padding: 6rem 2rem;
}

.info-container {
  max-width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
}

.info-item {
  color: #ffffff;
}

.info-item h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  position: relative;

}

.info-item h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 0.5px;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 15%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.05) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}


.info-item p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Satoshi', sans-serif;
  text-align: left;
}

/* Problems Section */
.problems-section {
  background-color: #000000;
  padding: 6rem 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 4rem;
  border-radius: 50px;
  position: relative;
  padding: 1px 1px;
}


.section-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%, /* stânga mai închis */ rgba(182, 163, 255, 0.4) 50%, /* centru mai deschis */ rgba(0, 0, 0, 0.35) 100% /* dreapta mai închis */
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.section-header h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.problems-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2rem;
  align-items: center;
  min-height: 450px;
}

.problems-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: right;
  align-items: flex-start;
  padding: 2rem;
  padding-left: 60%;
}

.shape-bg {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: auto;
  z-index: 0;
}

.problem-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(30, 30, 30, 0);
  border: 1px solid rgba(104, 103, 103, 0.6);
  padding: 0.4rem 1.2rem;
  border-radius: 12px;
  backdrop-filter: blur(2px);
  width: fit-content;
}

.problem-item:nth-child(2) {
  margin-left: 0;
}

.problem-item:nth-child(3) {
  margin-left: 0;
}

.problem-item:nth-child(4) {
  margin-left: 0;
}

.problem-item:nth-child(5) {
  margin-left: 0;
}

.problem-item span {
  color: #686767;
  font-size: 1.2em;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
  background-color: transparent;
}

.problems-right-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  margin-right: 10%;
}

.problems-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.problems-right {
  position: absolute;
  width: auto;
  height: auto;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.solution-item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(50, 35, 65, 0.21);
  border: 1px solid transparent;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.solution-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.3) 0%,
    rgba(150, 120, 180, 0.8) 50%,
    rgba(107, 75, 138, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.solution-item svg {
  margin-left: -12px;
}

/* Demand systems - top right */
.solution-item:nth-child(1) {
  top: -98px;
  left: 12px;
}

/* Sharp positioning & ICP - left */
.solution-item:nth-child(2) {
  top: -32px;
  left: -288px;
  transform: translateY(-50%);
}

/* Dashboards & attribution - right */
.solution-item:nth-child(3) {
  top: 30px;
  right: -300px;
}

/* Pipeline discipline - bottom left */
.solution-item:nth-child(4) {
  bottom: -100px;
  left: -200px;
}

.solution-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
  background-color: transparent;
}

/* ============================================
   About Section — Keyframes & Animations
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rippleReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes centerPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(191, 174, 255, 0.4);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(191, 174, 255, 0);
  }
}

/* About Section */
.about-section {
  background-color: #000000;
  padding: 1rem 2rem 6rem;
  position: relative;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 12rem;
  border-radius: 50px
}

.about-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%, /* stânga mai închis */ rgba(182, 163, 255, 0.4) 50%, /* centru mai deschis */ rgba(0, 0, 0, 0.35) 100% /* dreapta mai închis */
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}


.about-header h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px
}

.about-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.about-card {
  background: linear-gradient(to bottom, #262233, #000000);
  border: 1px solid #BFAEFF33;
  border-radius: 16px;
  padding: 1.15rem 1rem;
  height: 185px;
  /*backdrop-filter: blur(10px);*/
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease,
  border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-card:hover {
  border-color: #BFAEFF88;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.53);
}

.about-card h3 {
  font-size: 2em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 1rem 0;
  padding-bottom: 1rem;
  position: relative;
}

.about-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.04em;
  width: 30%;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.1) 0%,
    rgba(206, 190, 222, 0.24) 50%,
    rgba(107, 75, 138, 0.1) 100%
  );
}

.about-card p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.about-right.is-visible {
  opacity: 1;
}

/* Ripple Effect */
.ripple-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ripple-shape {
  position: absolute;
  width: 160px;
  height: auto;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-right.is-visible .ripple-shape {
  opacity: 1;
}

.ripple-center {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #BFAEFF;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.about-right.is-visible .ripple-center {
  opacity: 1;
  animation: centerPulse 2.8s ease-in-out 1.2s infinite;
}

.ripple-logo {
  position: absolute;
  width: 98px;
  height: 35px;
  left: calc(50% - 113px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  opacity: 0;
  transition: opacity 0.5s ease 0.7s;
}

.about-right.is-visible .ripple-logo {
  opacity: 1;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgb(193, 135, 255);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
  box-shadow 0.35s ease;
}

.ripple-circle.is-hovered {
  box-shadow: 0 0 2px 1px #B6A3FF;
}

.about-right.is-visible .ripple-1 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 0.3s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-2 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 0.45s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-3 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-4 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 0.75s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-5 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 0.9s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-6 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 1.05s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-7 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 1.2s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s, box-shadow 0.35s ease 0s;
}

.about-right.is-visible .ripple-8 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease 1.35s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s, box-shadow 0.35s ease 0s;
}

.ripple-1 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 100%);
  border-color: #BFAEFF;
  border-width: 3px;
}

.ripple-2 {
  width: 109px;
  height: 109px;
  border-color: #BFAEFF;
  border-width: 3px;
}

.ripple-3 {
  width: 174px;
  height: 174px;
  border-color: #BFAEFFCC;
  border-width: 3px;
}

.ripple-4 {
  width: 251px;
  height: 251px;
  border-color: #BFAEFFCC;
  border-width: 3px;
}

.ripple-5 {
  width: 368px;
  height: 368px;
  border-color: #BFAEFF66;
  border-width: 3px;
}

.ripple-6 {
  width: 536px;
  height: 536px;
  border-color: #BFAEFF33;
  border-width: 3px;
}

.ripple-7 {
  width: 780px;
  height: 780px;
  border-color: #BFAEFF1A;
  border-width: 3px;
}

.ripple-8 {
  width: 540px;
  height: 540px;
  border-color: rgba(168, 85, 247, 0.1);
}

.ripple-8 {
  width: 1126px;
  height: 1126px;
  border-color: #BFAEFF0D;
  border-width: 3px;
}


.about-content {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
}

.about-problems {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 400px;
}

.about-shape-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 400px;
  height: auto;
  opacity: 0.6;
  z-index: 0;
}

.about-problem-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(70, 70, 70, 0.7);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.about-problem-item:nth-child(2) {
  margin-left: 1.5rem;
}

.about-problem-item:nth-child(3) {
  margin-left: 3rem;
}

.about-problem-item:nth-child(4) {
  margin-left: 0;
}

.about-problem-item:nth-child(5) {
  margin-left: 1rem;
}

.about-problem-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
}

/* ============================================
   Our Proven Process Section
   ============================================ */

@keyframes processHeaderReveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes processSubReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processStepIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processSectionGlow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.process-section {
  background: #000000;
  padding: 6rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  margin-top: 10rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Gradient layer via ::after — animat separat cu fade-in lent */
.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(213, 175, 252, 0.55) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible {
  opacity: 1;
  animation: processSectionGlow 0.8s ease forwards;
}

.process-section.is-visible::after {
  opacity: 1;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.process-section.is-visible .process-header {
  animation: processHeaderReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.process-section.is-visible .process-header p {
  animation: processSubReveal 0.6s ease 0.4s forwards;
  opacity: 0;
}

.process-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 0.75rem 0;
  line-height: 1.15;
}

.process-header p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  position: relative;
  z-index: 1;
  /*max-width: 820px;*/
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, rgba(30, 25, 45, 0.85) 0%, rgba(12, 10, 20, 0.85) 100%);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

/* Staggered entrance per step */
.process-section.is-visible .process-step:nth-child(1) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.process-section.is-visible .process-step:nth-child(2) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.process-section.is-visible .process-step:nth-child(3) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.process-section.is-visible .process-step:nth-child(4) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.55s forwards;
}

/* Hover subtle lift */
.process-step:hover {
  transform: translateY(-2px);
}

/* Bubble glow effect that follows mouse */
.process-step .step-bubble {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 174, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 0;
}

.process-step-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(191, 174, 255, 0.38) 0%,
    rgba(79, 24, 105, 0.4) 70%,
    rgba(54, 53, 53, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.process-step:hover {
  border-color: rgba(191, 174, 255, 0.45);
  box-shadow: 0 0 28px rgba(191, 174, 255, 0.08);
}


.process-step.active {
  background: #000000;
}

/* ---- Icon swap before/after ---- */
.process-icon .icon-after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-icon .icon-before {
  transition: opacity 0.3s ease;
}

.process-step.active .icon-before {
  opacity: 0;
}

.process-step.active .icon-after {
  opacity: 1;
}

/* ---- Details accordion panel ---- */
.process-step-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
  position: relative;
  z-index: 1;
}

.process-step.active .process-step-details {
  max-height: 300px;
  opacity: 1;
}

.process-step-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0.9rem 0 0.75rem;
}

.process-step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 0.5rem 0;
}

.process-step-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.process-step-details ul li {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Satoshi', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.process-step-details ul li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='6' fill='%23991B2F'/%3E%3Cpath d='M9.81152 3.6853L5.51758 9.46069L5.45996 9.54272L2 7.09937L3.19922 5.40112L4.99902 6.67163L8.14355 2.44507L9.81152 3.6853Z' fill='%23191919'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.process-icon {
  position: relative;
  flex-shrink: 0;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 0.4rem 0;
}

.process-step-content p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

/* Responsive — process section */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 2rem;
  }

  .process-step {
    padding: 1rem 1.1rem;
  }

  .process-icon {
    width: 40px;
    height: 40px;
  }

  /* Mobile: Hide description by default, center icon and title */
  .process-step-main {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .process-steps {
    gap: 2rem;
  }

  .process-step-content p {
    display: none;
  }

  /* Show description when active */
  .process-step.active .process-step-content p {
    display: block;
    margin-top: 0.75rem;
  }

  /* Center title when not active */
  .process-step-content h3 {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .process-header h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   Why We Started Section
   ============================================ */

/* Keyframes */
@keyframes whyTitleIn {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes whyFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyCardIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes whyEllipseIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.why-section {
  background-color: #000000;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.why-left {
  border-radius: 5px;
  /*border: 1px solid #FFFFFF;*/
  position: relative;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.why-ellipse-left {
  position: absolute;
  width: 525px;
  height: 525px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000 0%, rgb(193, 135, 255) 100%);
  filter: blur(400px);
  pointer-events: none;
  z-index: 0;
  bottom: -380px;
  left: 200px;
  opacity: 0;
}

.why-left-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2em;
  padding-top: 0!important;
}

.why-title {
  text-align: center;
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.1;
}

.why-subtitle {
  text-align: center;
  font-size: 3.5em;
  font-weight: 700;
  color: rgba(153, 153, 153, 0.62);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.1;
}

.why-desc {
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  padding-bottom: 1.9rem;
  /*border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);*/
}

.why-desc::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 25%;
  right: 0;
  height: 0.04em;
  width: 50%;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.1) 0%,
    rgba(206, 190, 222, 0.24) 50%,
    rgba(107, 75, 138, 0.1) 100%
  );
}

.why-stand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  text-align: center;
}

.why-stand h4 {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

.why-stand p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

.why-stand-highlight {
  color: #BFAEFF !important;
}

/* ---- Why section — stări inițiale ---- */
.why-title,
.why-subtitle {
  opacity: 0;
}

.why-desc,
.why-stand {
  opacity: 0;
}

.why-card {
  opacity: 0;
}

/* ---- Why section — animații la is-visible ---- */
.why-section.is-visible .why-title {
  animation: whyTitleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.why-section.is-visible .why-subtitle {
  animation: whyTitleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.why-section.is-visible .why-desc {
  animation: whyFadeUp 0.75s ease 0.5s forwards;
}

.why-section.is-visible .why-stand {
  animation: whyFadeUp 0.75s ease 0.7s forwards;
}

.why-section.is-visible .why-card:nth-child(2) {
  animation: whyCardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.why-section.is-visible .why-card:nth-child(3) {
  animation: whyCardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.why-section.is-visible .why-ellipse {
  animation: whyEllipseIn 2s ease 0.4s forwards;
}

.why-section.is-visible .why-ellipse-left {
  animation: whyEllipseIn 2s ease 0.2s forwards;
}

/* Why Ellipse */
.why-ellipse {
  position: absolute;
  width: 425px;
  height: 425px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(193, 135, 255) 0%, #8B7FD4 100%);
  filter: blur(400px);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  right: -130px;
  transform: translateY(-50%);
  opacity: 0;
}

/* Why Right — Cards */
.why-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-card {
  position: relative;
  z-index: 1;
  background: rgba(13, 13, 13, 0.52);
  border: 1px solid #565656;
  border-radius: 1px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  border-color: rgba(191, 174, 255, 0.25);
  box-shadow: 0 0 24px rgba(191, 174, 255, 0.06);
}

.why-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-card-name {
  font-size: 1.3em;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

.why-card-role {
  font-size: 1em;
  font-weight: 400;
  color: #BFAEFFCC;
  font-family: 'Satoshi', sans-serif;
}

.why-card-quote {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.7;
  color: #FFFFFF;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-container {
    gap: 5rem;
  }

  .stat-item h2 {
    font-size: 3rem;
  }

  .stat-item p {
    font-size: 1rem;
  }

  .gradient-circle {
    height: 500px;
  }

  .gradient-circle::before {
    width: 1200px;
    height: 600px;
  }

  .info-container {
    gap: 3rem;
  }

  .info-item h2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .problems-container {
    gap: 3rem;
  }

  .about-columns {
    gap: 2rem;
  }

  .ripple-container {
    width: 400px;
    height: 400px;
  }

  .why-section {
    gap: 2.5rem;
  }

  .why-title {
    font-size: 3.5em;
  }

  .why-subtitle {
    font-size: 3em;
  }

  .solution-item {
    padding: 0.4rem 0.6rem;
    gap: 0.1rem;
  }

  .solution-item img {
    margin-left: -12px;
    flex-shrink: 0;
  }

  .solution-item span {
    font-size: 0.9rem;
  }

  .problems-center img {
    width: 90px!important;
    height: 90px!important;
  }

}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-video-wrapper {
    top: 80%;
  }

  .badge span {
    font-size: 0.8rem;
  }

  .hero-cta {
    padding: 0.675rem 1rem;
    font-size: 1rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 3rem;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0 0.5rem 0;
  }

  .stat-item h2 {
    font-size: 2.5rem;
  }

  .stat-item p {
    font-size: 0.95rem;
  }

  .gradient-circle {
    height: 400px;
  }

  .gradient-circle::before {
    width: 900px;
    height: 500px;
  }

  .info-section {
    padding: 4rem 1.5rem;
  }

  .info-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-item h2 {
    font-size: 1.5rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }

  .problems-section {
    padding: 4rem 1.5rem;
  }

  .section-header {
    /*flex-direction: column;*/
    gap: 0.75rem;
  }

  .problems-left {
    padding: 2rem 6rem;
  }

  .shape-bg {
    left: 50%;
  }


  /* Demand systems - top right */
  .problems-right-container {
    margin-right: 20px;
  }

  .solution-item:nth-child(1) {
    top: -132px;
    left: -20px;
  }

  /* Sharp positioning & ICP - left */
  .solution-item:nth-child(2) {
    top: -57px;
    left: -220px;
    transform: translateY(-50%);
  }

  /* Dashboards & attribution - right */
  .solution-item:nth-child(3) {
    top: 73px;
    right: -171px;
  }

  /* Pipeline discipline - bottom left */
  .solution-item:nth-child(4) {
    bottom: -58px;
    left: -198px;
  }


  .section-header h2 {
    font-size: 1.75rem;
  }

  .problems-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-columns {
    grid-template-columns: 60% 40%;
    gap: 3rem;
  }

  .about-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-right {
    /*order: -1;*/
  }

  .about-card {
    height: fit-content;
  }

  .process-section {
    padding: 3rem 2rem 7rem;
    margin-top: 0;
    width: 90%;
  }

  .ripple-container {
    width: 320px;
    height: 320px;
  }

  .shape-bg {
    max-width: 300px;
  }

  .problem-item,
  .solution-item {
    font-size: 0.95rem;
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2.5rem;
  }

  .why-title {
    font-size: 3em;
  }

  .why-subtitle {
    font-size: 2.6em;
  }

  .why-stand h4{
    font-size: 1.6em;
  }

  .why-stand p{
    font-size: 1.2em;
  }

  .strategic-card-content h3 {
    font-size: 1.5em!important;
  }

  .strategic-card-content p {
    color: white!important;
  }

  .comparison-content {
    width: 90% !important;
    max-width: 100%;!important;
  }

  .comparison-section {
    padding: 1rem 0 6rem!important;
  }

  .integrated-content{
    max-width: 100% !important;
    width: 100% !important;
  }
  .integrated-content h3 {
    font-size: 2em!important;
  }

  .integrated-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0!important;
  }

  .integrated-section {
    margin-top: 0!important;
    max-width: 90% !important;
    padding: 3rem 2rem 6rem!important;
  }

  .comparison-grid {
    flex-direction: column;
    gap: 2rem!important;
  }

  .integrated-card p {
    margin: 0 0 2rem 0!important;
  }

  .bottom-cta-section {
    width: 90%!important;
    padding: 3rem 3rem!important;
  }
  .bottom-cta-badge {
    flex-direction: row!important;
  }
  .bottom-cta-badge h2 {
    font-size: 1.3em!important;
  }
  .bottom-cta-title {
    font-size: 2.6em!important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4em;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .badge {
    padding: 0.4rem 1rem;
  }

  .badge span {
    font-size: 0.75rem;
  }

  .stat-item h2 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }

  .gradient-circle {
    height: 300px;
    margin: 2rem auto -100px;
  }

  .gradient-circle::before {
    width: 700px;
    height: 400px;
  }

  .info-section {
    padding: 3rem 1rem;
  }

  .info-item h2 {
    font-size: 1.25rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .problems-section {
    padding: 3rem 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header svg {
    width: 50px;
    height: 50px;
  }

  .shape-bg {
    max-width: 250px;
  }

  .problems-center svg {
    width: 80px;
    height: 80px;
  }

  .problem-item{
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* ============================================
   Strategic Partner Network Section
   ============================================ */

.strategic-section {
  background: #000000;
  padding: 6rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 75%;
  margin: 4rem auto 0;
  border-radius: 2px;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Same gradient background as process-section */
.strategic-section::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(213, 175, 252, 0.31) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Same border as process-section */
.strategic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.strategic-section.is-visible {
  opacity: 1;
}

.strategic-section.is-visible::after {
  opacity: 1;
}

.strategic-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
  transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
  filter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.strategic-section.is-visible .strategic-header {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.strategic-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 0.75rem 0;
  line-height: 1.15;
}

.strategic-header p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* 2×2 Grid */
.strategic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 90%;
  position: relative;
  z-index: 1;
}

.strategic-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #000000;
  border-radius: 2px;
  padding: 1.5rem 1.75rem;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.strategic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(255, 255, 255, 0.07) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.strategic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(191, 174, 255, 0.08);
}

/* Staggered entrance */
.strategic-section.is-visible .strategic-card:nth-child(1) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.strategic-section.is-visible .strategic-card:nth-child(2) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.strategic-section.is-visible .strategic-card:nth-child(3) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.strategic-section.is-visible .strategic-card:nth-child(4) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.strategic-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.strategic-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategic-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.3;
}

.strategic-card-content p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Satoshi', sans-serif;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .strategic-section {
    max-width: 95%;
    padding: 4rem 1.5rem 5rem;
  }

  .strategic-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .strategic-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .strategic-header h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   Comparison Section
   ============================================ */

.comparison-section {
  background-color: #000000;
  padding: 1rem 2rem 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 4rem;
  border-radius: 50px;
  position: relative;
  padding: 1px 1px;
}

.comparison-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(182, 163, 255, 0.4) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.comparison-header h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.comparison-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison-content h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.comparison-section.is-visible .comparison-content h3 {
  opacity: 1;
  transform: translateY(0);
}

.comparison-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.comparison-section.is-visible .comparison-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.comparison-grid {
  padding: 20px 10px 20px 10px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.comparison-section.is-visible .comparison-grid {
  opacity: 1;
  transform: translateY(0);
}

.comparison-column {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 0 0 auto;
}

.comparison-left {
  width: 280px;
}

.comparison-right {
  width: 550px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 1.2rem;
  /*background: rgba(30, 30, 30, 0.4);*/
  /*border: 1px solid rgba(104, 103, 103, 0.3);*/
  border-radius: 12px;
  transition: all 0.3s ease;
}

.comparison-left {
  /*width: 50%;*/
}

.comparison-right {
  width: fit-content;
  /*border: 0.1rem solid rgba(255, 255, 255, 0.34);*/
  border-radius: 12px;
  padding: 20px 10px;
  position: relative;
}

.comparison-right::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(104, 104, 104, 0.18) 0%, /* stânga mai închis */ rgba(182, 163, 255, 0.66) 50%, /* centru mai deschis */ rgba(118, 118, 118, 0.35) 100% /* dreapta mai închis */
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.comparison-item:hover {
  transform: translateX(4px);
}

.comparison-left .comparison-item:hover {
  border-color: rgba(153, 27, 47, 0.6);
  box-shadow: 0 0 20px rgba(153, 27, 47, 0.15);
}

.comparison-right .comparison-item:hover {
  border-color: rgba(191, 174, 255, 0.5);
  box-shadow: 0 0 20px rgba(191, 174, 255, 0.1);
}

.comparison-item svg {
  flex-shrink: 0;
}

.comparison-item span {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
  text-align: left;
  line-height: 1.4;
}

.comparison-left .comparison-item span {
  color: rgba(255, 255, 255, 0.65);
}

.comparison-right .comparison-item span {
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-content h3 {
    font-size: 2rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .comparison-item {
    padding: 0.7rem 1rem;
  }

  .comparison-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .comparison-content h3 {
    font-size: 1.6rem;
  }

  .comparison-subtitle {
    font-size: 1rem;
  }

  .comparison-item {
    padding: 0.6rem 0.9rem;
  }

  .comparison-item span {
    font-size: 0.9rem;
  }
}

/* ============================================
   Integrated Services Section
   ============================================ */

.integrated-section {
  background-color: #000000;
  padding: 3rem 3rem 6rem;
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 8rem;
}

.integrated-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 0.05rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.integrated-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 4rem;
  border-radius: 12px;
  position: relative;
  padding: 1px 1px;
}

.integrated-section::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(213, 175, 252, 0.31) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.integrated-section.is-visible::after {
  opacity: 1;
}

.integrated-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.integrated-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(182, 163, 255, 0.4) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.integrated-header h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.integrated-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.integrated-content h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.integrated-section.is-visible .integrated-content h3 {
  opacity: 1;
  transform: translateY(0);
}

.integrated-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Satoshi', sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  width: 60%;
  margin: 0 auto;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.integrated-section.is-visible .integrated-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.integrated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  /*max-width: 100%;*/
  margin: 0 auto;
}

.integrated-card {
  /*background: linear-gradient(to bottom, rgba(30, 25, 45, 0.4), rgba(12, 10, 20, 0.4));*/
  /*border: 1px solid rgba(191, 174, 255, 0.2);*/
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

.integrated-section.is-visible .integrated-card:nth-child(1) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.integrated-section.is-visible .integrated-card:nth-child(2) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.integrated-section.is-visible .integrated-card:nth-child(3) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.integrated-section.is-visible .integrated-card:nth-child(4) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.integrated-section.is-visible .integrated-card:nth-child(5) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

.integrated-section.is-visible .integrated-card:nth-child(6) {
  animation: processStepIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

.integrated-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(104, 104, 104, 0.18) 0%, /* stânga mai închis */ rgba(182, 163, 255, 0.52) 50%, /* centru mai deschis */ rgba(118, 118, 118, 0.17) 100% /* dreapta mai închis */
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.integrated-card:hover {
  border-color: rgba(191, 174, 255, 0.5);
  box-shadow: 0 0 28px rgba(191, 174, 255, 0.15);
  transform: translateY(-5px);
}

.integrated-card-icon {
  width: 48px;
  height: 48px;
  /*background: linear-gradient(135deg, #BFAEFF 0%, #202020 100%);*/
  /*border-radius: 12px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.integrated-card h4 {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 1rem 0;
  text-align: left;
}

.integrated-card p {
  text-align: left;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Satoshi', sans-serif;
  margin: 0 0 4rem 0;
}

.integrated-card h4::after {
  content: '';
  position: absolute;
  top: 15.5rem;
  left: 25%;
  right: 0;
  height: 0.05rem;
  width: 50%;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.07) 0%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(107, 75, 138, 0.07) 100%
  );
}

.integrated-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.integrated-card ul li {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Satoshi', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.integrated-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(191, 174, 255, 0.8);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Button */
.integrated-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1.3s, transform 0.8s ease 1.3s;
}

.integrated-section.is-visible .integrated-cta-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.integrated-cta-button {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
  border-radius: 10px;
  outline: 1px rgba(255, 255, 255, 0.20) solid;
  outline-offset: -1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  align-items: center;
}

.integrated-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(191, 174, 255, 0.4);
}

.integrated-cta-button span {
  color: white;
  font-size: 24px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  word-wrap: break-word;
}

.integrated-cta-button svg {
  color: white;
  transition: transform 0.3s ease;
}

.integrated-cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .integrated-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrated-content h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .integrated-cta-button span {
    font-size: 1em;
  }
  .integrated-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .integrated-content h3 {
    font-size: 2rem;
  }

  .integrated-subtitle {
    font-size: 1rem;
  }

  .integrated-card {
    padding: 1.5rem 1.25rem;
  }

  .integrated-card h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .integrated-content h3 {
    font-size: 1.6rem;
  }

  .integrated-card h4 {
    font-size: 1.1rem;
  }
}

/* ============================================
   Bottom CTA Section
   ============================================ */

.bottom-cta-section {
  background-color: #000000;
  padding: 2rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25rem;
  opacity: 0;
  transition: opacity 0.6s ease;
  width: 60%;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 6rem;
  z-index: 5;
}

.bottom-cta-section.is-visible {
  opacity: 1;
}

/* Border gradient */
.bottom-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 0.1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.17) 0%,
    rgba(153, 153, 153, 0.21) 40%,
    rgba(255, 255, 255, 0.17) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gradient glow background */
.bottom-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(213, 175, 252, 0.4) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-cta-section.is-visible::after {
  opacity: 1;
}

/* Additional background glow layer */
.bottom-cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 174, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.bottom-cta-section.is-visible .bottom-cta-glow {
  opacity: 1;
}

.bottom-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
}

.bottom-cta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-color: #1C1C1CB2;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  padding: 1px 1px;
}

.bottom-cta-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0.1rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(182, 163, 255, 0.4) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bottom-cta-badge h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  margin-right: 15px;
}

.bottom-cta-section.is-visible .bottom-cta-badge {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-title {
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.bottom-cta-section.is-visible .bottom-cta-title {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: transparent;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Satoshi', sans-serif;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.bottom-cta-section.is-visible .bottom-cta-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.bottom-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: linear-gradient(180deg, #BFAEFF 0%, #523AAA 100%);
  border-radius: 12px;
  outline: 1px rgba(255, 255, 255, 0.20) solid;
  outline-offset: -1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}

.bottom-cta-section.is-visible .bottom-cta-button {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s, box-shadow 0.3s ease, transform 0.3s ease;
}

.bottom-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(191, 174, 255, 0.5);
}

.bottom-cta-button span {
  color: white;
  font-size: 1.25rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
}

.bottom-cta-button svg {
  color: white;
  transition: transform 0.3s ease;
}

.bottom-cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .bottom-cta-section {
    padding: 4rem 1.5rem;
    min-height: 50vh;
  }

  .bottom-cta-title {
    font-size: 2.5rem;
  }

  .bottom-cta-subtitle {
    font-size: 1.2rem;
  }

  .bottom-cta-button {
    padding: 0.875rem 2rem;
  }

  .bottom-cta-button span {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .bottom-cta-section {
    padding: 3rem 1rem;
  }

  .bottom-cta-title {
    font-size: 2rem;
  }

  .bottom-cta-subtitle {
    font-size: 1rem;
  }

  .bottom-cta-badge span {
    font-size: 0.9rem;
  }

  .bottom-cta-button {
    padding: 0.75rem 1.75rem;
  }

  .bottom-cta-button span {
    font-size: 1rem;
  }
}

/* ============================================
   Stats & Info Wrapper - 2 Column Layout
   ============================================ */

/* Desktop - default behavior */
.stats-info-wrapper {
  display: block;
  width: 100%;
  background-color: #000000;
}

.stats-info-column {
  width: 100%;
}

/* Mobile - 2 column layout */
@media (max-width: 768px) {
  .stats-info-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
    padding: 0 1rem;
    background-color: #000000;
    width: 100%;
  }

  .stats-info-column {
    width: 100%;
    min-width: 0; /* Prevents grid blowout */
  }

  /* Stats container adjustments for mobile 2-column */
  .stats-info-column .stats-container {
    /*min-height: 100vh !important;*/
    padding: 2rem 1rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    width: 100%;
  }

  .stats-info-column .stat-item {
    text-align: center;
  }

  .stats-info-column .stat-item h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .stats-info-column .stat-item p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Info section adjustments for mobile 2-column */
  .stats-info-column .info-section {
    padding: 2rem 1rem !important;
    /*min-height: 100vh !important;*/
    display: flex;
    align-items: center;
    width: 100%;
  }

  .stats-info-column .info-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-info-column .info-item h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .stats-info-column .info-item p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .stats-info-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .stats-info-column .stats-container {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .stats-info-column .info-section {
    min-height: auto;
    padding: 4rem 1.5rem;
  }
}
