.pv-right-inner {
  position: sticky !important;
  top: 0 !important;
  will-change: transform !important;
}

.product-vertical-section {
  background: var(--bg-dark) var(--bg-pattern) repeat;
  color: var(--text-light);
  padding: 0;
  overflow: visible !important;
}

.product-vertical-container {
  display: flex;
  margin: 0 auto;
  height: auto;
}

.pv-left {
  flex: 0 0 35%;
  height: 100vh;
  background: var(--bg-light);
  border-right: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-left-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-align: left;
}

.pv-stepper {
  position: relative;
}

.pv-stepper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.pv-stepper ul::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: var(--accent-color);
  opacity: 0.3;
  transform: translateX(-50%);
}

.pv-stepper li {
  margin: 1.5rem 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: background var(--transition-speed), transform var(--transition-speed);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pv-stepper li.active {
  background: var(--accent-color);
  color: var(--bg-dark);
}

.pv-stepper li:hover:not(.active) {
  background: var(--primary-color);
  transform: scale(1.2);
}

.pv-info {
  flex: 1 1 auto;
}

.pv-info .pv-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--primary-color);
  font-family: var(--headline-font);
}

.pv-info .pv-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.pv-right {
  flex: 1;
  height: 100vh;
  background: var(--bg-dark);
  padding: 2rem 1rem;
  overflow: hidden;
  position: relative;
}

.pv-right-inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

.pv-panel {
  height: 100vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(7, 11, 11, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: background var(--transition-speed);
  position: relative;
}

.pv-panel:hover {
  background: rgba(7, 11, 11, 1);
}

.pv-panel-media {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 400px;
}


.pv-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
  transition: transform .3s ease;
}



.pv-panel-content {
  flex: 1;
  color: var(--text-light);
}

.pv-panel-content h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--accent-color);
  font-family: var(--headline-font);
}

.pv-panel-description {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.pv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pv-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
  color: var(--text-light);
}

.pv-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.pv-button {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pv-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pv-button:active {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {



  .pv-right {
    margin-left: 0 !important;
  }

  .pv-left.pv-sticky {
    position: relative;
  }

  .pv-left-content {
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0 1rem;
    text-align: left;
  }


  .pv-info .pv-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .pv-info .pv-intro {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .pv-right-inner {
    padding: 0 1rem;
  }

  .pv-panel {
    display: block;
    margin-bottom: 2rem;
    height: auto;
    background: rgba(7, 11, 11, 0.9);
    border-radius: var(--radius);
  }

  .pv-panel-media {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .pv-panel-media img {
    width: 40%;
    height: auto;
    max-height: 50%;
    object-fit: cover;
  }

  .pv-panel-content {
    padding: 0 1rem 1rem;
  }

  .pv-button {
    display: block;
    width: auto;
    text-align: center;
    max-width: 240px;
    margin: 0.75rem auto;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .pv-panel-content .pv-button+.pv-button {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {

  .pv-left {
    flex: 0 0 30%;
    height: auto;
    border-right-width: 1px;
    width: 155px !important;
    min-width: 155px !important;
  }

  .pv-left-content {
    padding: 1rem;
    gap: 1rem;
  }

  .pv-stepper ul::before {
    left: 50%;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 1px;
  }

  .pv-stepper li {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.75rem;
    margin: 1rem 0;
  }

  .pv-info .pv-title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .pv-info .pv-intro {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .pv-right {
    padding: 0 !important;
  }

  .pv-panel {
    padding: 1rem;
    gap: 1rem;
  }

  .pv-panel-media {
    max-height: 180px;
  }

  .pv-panel-media img {
    object-fit: cover;
  }

  .pv-panel-content h3 {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .pv-panel-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .pv-features li {
    font-size: 0.85rem;
    padding-left: 1rem;
  }

  .pv-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}



.scroll-section {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.scroll-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-pattern);
  mix-blend-mode: overlay;
  opacity: .1;
  pointer-events: none;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  display: block;
  margin: .75rem auto 0;
  border-radius: 2px;
}

.menu-section {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 1rem 5rem;
  height: auto;
  min-height: 60vh;
}

.menu-title {
  text-align: center;
  color: var(--primary-color);
  font-family: var(--headline-font);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 2rem;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.menu-item {
  cursor: pointer;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  padding-bottom: .5rem;
  font-size: 1.25rem;
  transition: color var(--transition-speed), border-bottom var(--transition-speed);
}

.menu-item.active,
.menu-item:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.content-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  align-items: start;
  padding: 0 1rem;
}

.content-wrapper::-webkit-scrollbar {
  display: none;
}

.content-section {
  flex: 0 0 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-section.active {
  opacity: 1;
  transform: scale(1);
}

.content-section h3 {
  color: var(--accent-color);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.content-section ul {
  list-style: disc inside var(--text-light);
  line-height: 1.8;
  font-size: 1.125rem;
}

.content-section ul li {
  margin-bottom: .75rem;
}

.menu {
  position: relative;
  z-index: 10;
}


.references-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
  text-align: center;
}

.references-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.references-section .logo-ticker {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.references-section .logo-ticker .logo-inner {
  display: flex;
  width: max-content;
}

.references-section .logo-ticker .logo-item {
  flex: 0 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.references-section .logo-item img {
  max-height: 80px;
  filter: grayscale(100%);
  transition: filter .3s ease, transform .3s ease;
}

.references-section .logo-item img:hover {
  filter: none;
  transform: scale(1.1);
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.two-col-scroll {
  display: flex;
  height: 100%;
}

.static-panel {
  flex: 0 0 300px;
  background: var(--bg-dark);
  background-image: var(--bg-pattern);
  color: var(--primary-color);
  padding: 2rem;
  border-right: 2px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-panel {
  flex: 1;
  position: relative;
}

.scroll-panel .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(50px);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

#stats {
  height: auto;
  min-height: 30vh;
  background: var(--bg-dark);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
    overflow-x: hidden;

}

.stats-circle-wrapper {
  display: flex;
  gap: 2.5rem;
}

.stats-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.stats-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stats-circle circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.stats-circle .bg {
  stroke: var(--text-mid);
}

.stats-circle .progress {
  stroke: var(--accent-color);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283 283;   
  stroke-dashoffset: 283;   
  transition: none;
}

.stats-circle .label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.2;
}

.stats-circle .label .percent {
  font-weight: bold;
  font-size: 1.1rem;
}



.pure-btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: #fff;
  border-radius: 20px;
  font-family: var(--headline-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition:
    background var(--transition-speed) ease,
    border-color var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.pure-btn:hover {
  background: rgba(102, 255, 148, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 8px var(--accent-color);
}

.pure-btn:active {
  box-shadow: none;
}


@media (max-width: 480px) {
  .menu {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }

  .menu-item {
    font-size: 0.8rem;
    padding: 0 .25rem;
  }
  #plan .slide-card {
    max-width: 260px;
    margin: 0.75rem auto;
  }
}

@media (max-width: 768px) {

  #plan .plan-wrap {
    max-width: 90%;
    height: auto !important;
    min-height: 200px;
    margin: 0 auto;
  }

  #plan .slide-card {
    max-width: 300px;
    margin: 1rem auto;
  }

  .pin-wrap {
    padding: 15px 10px;
  }

  .menu {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .menu-item {
    font-size: 0.9rem;
    padding: 0 .5rem;
  }

}

/* Tablet altı (≤768px) */
@media (max-width: 768px) {
  #stats {
    padding: 3rem 1rem;
  }
  .stats-circle-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .stats-circle {
    width: 80px;
    height: 80px;
  }
  .stats-circle .label {
    font-size: 0.8rem;
    line-height: 1.1;
  }
  .stats-circle .label .percent {
    font-size: 1rem;
  }
}

/* Küçük ekran (≤576px) */
@media (max-width: 576px) {
  #stats {
    padding: 2rem 0.5rem;
  }
  .stats-circle-wrapper {
    gap: 1rem;
  }
  .stats-circle {
    width: 80px;
    height: 80px;
  }
  .stats-circle .label {
    font-size: 0.7rem;
  }
  .stats-circle .label .percent {
    font-size: 0.9rem;
  }
}
