/* Genel Ayarlar */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #020103;
  color: #fff;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Arka Plan Efektleri */
.bg-blur {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.7;
}
.bg-blur-left {
  width: 641px; height: 287px;
  left: 0; top: 60vh;
  background: #504CFF;
}
.bg-blur-bottom-left {
  width: 641px; height: 287px;
  left: 450px; top: 165vh;
  background: #504CFF;
}
.bg-blur-right {
  width: 458px; height: 205px;
  right: 0; top: 30vh;
  background: #4F1AFB;
}
.bg-gradient {
  position: absolute;
  left: 0; top: 0;
  width: 100vw; height: 780px;
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, #fff 54%, rgba(255,255,255,0) 100%);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

/* Navbar */
.site-header {
  width: 100vw;
  position: fixed;
  top: 0; left: 0;
  z-index: 1001;
  background: transparent;
  transition: all 0.3s ease;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
  position: relative;
}
/* Eski glass effect box'ı gizle */
.glass-effect-box {
  display: none !important;
}

/* Nav-container için glass effect */
.nav-container {
  position: relative;
  z-index: 2;
}
.nav-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(31,38,135,0.37), 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s cubic-bezier(0.4,0,0.2,1);
}
.show-glass-nav .nav-container::before {
  opacity: 1 !important;
  visibility: visible !important;
}

/* About sayfası için ek stil */
body.show-glass-nav .site-header .nav-container::before {
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}

/* Nav içeriği üstte kalsın */
.nav-container > * {
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li .lang-btn.active {
  background: #504CFF22;
  color: #bfc6ff;
}
.get-started-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 40px;
  outline: 1.5px #504CFF solid;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
}
.get-started-btn:hover {
  background: #504CFF;
  color: #fff;
}
.icon-arrow svg {
  display: block;
}

/* Hero Section */
.hero {
  width: 100vw;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 79px;
  box-sizing: border-box;
}
.hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero-socials {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.hero-socials a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.hero-socials a:hover {
  color: #504CFF;
}
.hero-title {
  color: #9795FF;
  font-size: clamp(2.2rem, 7vw, 105px);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  /* Mevcut stiller korunacak */
  background: linear-gradient(270deg, #854CFF, #4F1AFB, #ffffff, #4F1AFB, #ffffff, #4F1AFB);
  background-size: 1200% 1200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: animated-gradient-hero-title 12s ease-in-out infinite;
  overflow: visible;
  line-height: 1.1;
  -webkit-text-stroke: 0.5px transparent;
  padding-bottom: 0.2em;
}

@keyframes animated-gradient-hero-title {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #16121E;
  border-radius: 40px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.hero-btn:hover {
  background: #504CFF;
  color: #fff;
}
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  position: relative;
  height: 140px;
  z-index: 3;
}

.scroll-circle-rotating {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-circle-svg {
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 120px;
  transform-origin: 50% 50%;
  animation: scrollCircleSpin 7s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes scrollCircleSpin {
  100% { transform: rotate(360deg);}
}

.scroll-mouse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 34px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-circle-text {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.scroll-mouse svg {
  width: 34px;
  height: 33px;
  display: block;
}

/* Features Section */
.features-section {
  margin: 64px auto 0 auto;
  max-width: 1200px;
  padding: 0 1px 64px 1px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.features-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: none;
  border: none;
  border-radius: 0;
  padding: 40px 48px 32px 48px;
  box-shadow: none;
  position: relative;
  flex-wrap: wrap;
}
.features-header-text {
  max-width: 700px;
  flex: 1 1 0%;
  position: relative;
}
.features-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}
.features-title .highlight {
  color: #a18aff;
  font-weight: 600;
}
.features-desc {
  color: #bdb9d7;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.features-btn {
  background: #fff;
  color: #2d1e5f;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 24px;
  padding: 12px 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(120, 100, 255, 0.08);
  margin-top: 0;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 100px;
  right: 48px;
  transform: none;
}
.features-btn:hover {
  background: #a18aff;
  color: #fff;
}

.white-label-block {
  margin-top: 32px;
  border: none;
  border-radius: 0;
  padding: 40px 48px 32px 48px;
  box-shadow: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  min-height: 260px;
}
.white-label-text {
  max-width: 700px;
}
.white-label-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.white-label-desc {
  color: #bdb9d7;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.white-label-btn {
  background: #fff;
  color: #2d1e5f;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 24px;
  padding: 12px 32px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(120, 100, 255, 0.08);
  margin-top: 0;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 48px;
  bottom: 32px;
}
.white-label-btn:hover {
  background: #a18aff;
  color: #fff;
}

.frame-child {
  width: 60px;
  position: relative;
  border-radius: 100px;
  height: 60px;
  overflow: hidden;
  flex-shrink: 0;
}
.website-dev {
  width: 252px;
  position: relative;
  font-size: 32px;
  font-weight: 500;
  display: inline-block;
}
.help-you-to {
  width: 252px;
  position: relative;
  line-height: 28px;
  display: inline-block;
}
.start-with-us {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
  font-weight: 500;
  line-height: 28px;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  transition: color 0.2s;
}
.start-with-us:hover {
  color: #854CFF;
  text-decoration: underline;
}
.uilarrow-up-icon {
  width: 20px;
  position: relative;
  border-radius: 0px 6px 6px 0px;
  height: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.start-with-us-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.website-dev-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.frame-container {
  position: absolute;
  top: 40px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.group-child {
  position: absolute;
  top: -0.75px;
  left: -0.75px;
  backdrop-filter: blur(15px);
  border-radius: 24px;
  background: linear-gradient(126.19deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.04) 57.53%, rgba(255, 255, 255, 0));
  border: 1.5px solid #fff;
  box-sizing: border-box;
  width: 463.5px;
  height: 339.5px;
}
.group-item {
  position: absolute;
  top: 31px;
  left: 0px;
  max-height: 100%;
  width: 372px;
}
.group-inner {
  position: absolute;
  top: 4px;
  left: 24px;
  width: 50px;
  height: 11.9px;
}
.rectangle-div {
  position: absolute;
  top: 0px;
  left: 0px;
  backdrop-filter: blur(15px);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 278px;
  height: 20px;
}
.icon {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 8.9px;
  height: 10.8px;
}
.wwwveritralcom {
  position: absolute;
  top: 4px;
  left: 106px;
  font-weight: 500;
}
.rectangle-group {
  position: absolute;
  top: 0px;
  left: 92px;
  width: 278px;
  height: 20px;
}
.vector-parent {
  position: absolute;
  top: 12px;
  left: 0px;
  width: 372px;
  height: 31px;
}
.frame-item {
  width: 345px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 169px;
}
.frame-inner {
  width: 345px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 19px;
}
.frame-child1 {
  width: 259px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 12px;
}
.frame-child2 {
  width: 224px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 12px;
}
.frame-child3 {
  width: 193px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 12px;
}
.rectangle-parent1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.frame-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.rectangle-container {
  position: absolute;
  top: 60px;
  left: 24.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.rectangle-parent {
  position: absolute;
  top: 40px;
  left: 364px;
  width: 462px;
  height: 338px;
  text-align: center;
  font-size: 8px;
}
.frame-group {
  width: 690px;
  position: relative;
  backdrop-filter: blur(30px);
  border-radius: 24px;
  background-color: #4f1afb;
  height: 351px;
  overflow: hidden;
  flex-shrink: 0;
}
.uiux-design {
  width: 252px;
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.smart-seamless-design {
  width: 252px;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
}
.start-with-us-group {
  position: absolute;
  top: 301px;
  left: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 16px;
}
.frame-child4 {
  position: absolute;
  top: 148px;
  left: 209px;
  filter: blur(300px);
  background-color: #4f1afb;
  width: 641px;
  height: 287px;
}
.frame-child5 {
  position: absolute;
  top: 48.4px;
  left: 306.4px;
  backdrop-filter: blur(15px);
  border-radius: 24px;
  background: linear-gradient(160.84deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  border: 1.2px solid #fff;
  box-sizing: border-box;
  width: 201.2px;
  height: 339.2px;
}
.frame-child6 {
  position: absolute;
  top: 107px;
  left: 323px;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.25);
  width: 168px;
  height: 66px;
}
.frame-child7 {
  width: 36px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 14px;
}
.rectangle-parent2 {
  position: absolute;
  top: 183px;
  left: 323px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}
.ellipse-div {
  position: absolute;
  top: 65px;
  left: 323px;
  box-shadow: 0.6499999165534973px 0.6499999165534973px 20px rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  width: 26px;
  height: 26px;
}
.frame-child12 {
  width: 47px;
  position: relative;
  backdrop-filter: blur(6.2px);
  border-radius: 13.22px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 7px;
}
.frame-child13 {
  width: 95px;
  position: relative;
  backdrop-filter: blur(6.2px);
  border-radius: 13.22px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 4px;
}
.rectangle-parent3 {
  position: absolute;
  top: 70.5px;
  left: 356px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.rectangle-parent4 {
  position: absolute;
  top: 217px;
  left: 323px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.frame-child16 {
  width: 78px;
  position: relative;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 66px;
}
.frame-child18 {
  width: 78px;
  position: relative;
  backdrop-filter: blur(6.2px);
  border-radius: 13.22px;
  background-color: rgba(255, 255, 255, 0.25);
  height: 4px;
}
.rectangle-parent6 {
  width: 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.rectangle-parent5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.frame-parent3 {
  position: absolute;
  top: 241px;
  left: 323px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.frame-parent4 {
  position: absolute;
  top: 338px;
  left: 323px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.mask-group-icon {
  position: absolute;
  top: 65px;
  left: 323px;
  width: 26px;
  height: 26px;
}
.frame-parent1 {
  width: 486px;
  position: relative;
  backdrop-filter: blur(30px);
  border-radius: 24px;
  background-color: #151515;
  height: 351px;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 32px;
}
.frame-child28 {
  position: absolute;
  top: 291px;
  left: -210px;
  filter: blur(300px);
  background-color: #504cff;
  width: 641px;
  height: 287px;
}
.vector-icon {
  position: absolute;
  top: 18px;
  left: 158px;
  border-radius: 33.35px;
  width: 487.8px;
  height: 488.4px;
  object-fit: contain;
}
.create-a-fully {
  width: 261px;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  display: inline-block;
  height: 109px;
  flex-shrink: 0;
}
.branding-parent {
  width: 252px;
  height: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  z-index: 5;
}
.frame-child30 {
  position: absolute;
  top: 109px;
  left: 442px;
  backdrop-filter: blur(25px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  width: 32px;
  height: 32px;
}
.frame-child31 {
  position: absolute;
  top: 116px;
  left: 467px;
  backdrop-filter: blur(25px);
  border-radius: 50%;
  background-color: #161617;
  width: 16px;
  height: 16px;
  transform:  rotate(180deg);
  transform-origin: 0 0;
}
.ellipse-icon {
  position: absolute;
  top: 22px;
  left: 393px;
  width: 110px;
  height: 110.5px;
}
.vector-icon1 {
  position: absolute;
  top: 31px;
  left: 395.5px;
  width: 336px;
  height: 336px;
}
.frame-parent {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 24px;
  text-align: left;
  font-size: 16px;
  color: #fff;
  font-family: Inter;
}


/* --- MOBİL UYUMLULUK (Responsive) EKLEMELERİ --- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .site-header {
    position: static;
    width: 100%;
  }
  .nav-container {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 8px 0;
  }
  .main-nav ul {
    gap: 4px;
  }
  .get-started-btn {
    margin-left: 0;
    margin-top: 8px;
  }
  .hero {
    min-height: 500px;
    padding-top: 60px;
  }
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 40px);
  }
  .features-section {
    max-width: 100%;
    padding: 0 4px 48px 4px;
  }
  .features-header {
    flex-direction: column;
    padding: 32px 16px 24px 16px;
    gap: 16px;
  }
  .features-header-text {
    max-width: 100%;
  }
  .features-btn {
    position: static;
    align-self: flex-end;
    margin-top: 12px;
    transform: none;
  }
  .features-cards {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
  }
  .feature-card {
    min-height: 180px;
    padding: 24px 14px 20px 14px;
  }
  .white-label-block {
    padding: 32px 16px 24px 16px;
    min-height: 180px;
  }
  .white-label-btn {
    right: 16px;
    bottom: 24px;
  }
}
@media (max-width: 600px) {
  .features-cards {
    gap: 10px;
    margin-top: 12px;
  }
  .feature-card {
    min-height: 120px;
    padding: 8px 4px 8px 4px;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
  }
  .feature-card-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .feature-card-desc {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }
  .feature-card-link {
    font-size: 0.95rem;
    gap: 3px;
  }
  .feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }
  .white-label-block {
    padding: 10px 2px 8px 2px;
    min-height: 80px;
    border-radius: 8px;
  }
  .white-label-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .white-label-desc {
    font-size: 0.92rem;
  }
  .white-label-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 14px;
  }
  .features-header {
    padding: 8px 2px 6px 2px;
    gap: 6px;
    border-radius: 8px;
  }
  .features-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .features-desc {
    font-size: 0.92rem;
  }
  .features-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 14px;
  }
}

/* Logo Slider (New) */
.Frame1597883651 {
  width: 100vw;
  min-height: 120px;
  position: relative;
  background: linear-gradient(90deg, black 0%, #4F1AFB 51%, black 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: 0;
  margin: 0 auto 0 auto;
  scrollbar-width: none;
}
.Frame1597883651::-webkit-scrollbar {
  display: none;
}
.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 32px 0;
  animation: logoSliderScroll 30s linear infinite;
  will-change: transform;
}
@keyframes logoSliderScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px #0008);
  transition: transform 0.2s;
}
.logo-slider-logo:hover {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .Frame1597883651 {
    min-height: 70px;
  }
  .logo-slider-track {
    gap: 24px;
    padding: 16px 0;
  }
  .logo-slider-logo {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .Frame1597883651 {
    min-height: 50px;
  }
  .logo-slider-track {
    gap: 16px;
    padding: 8px 0;
  }
  .logo-slider-logo {
    height: 32px;
  }
}
/* Remove old logo slider styles */
.logo-slider-section, .logo-slider-bg, .logo-slider-bg1, .logo-slider-bg2 {
  display: none !important;
}

/* Our Product Section */
.our-product-section {
  width: 100vw;
  margin: 0 auto;
  padding: 64px 0 32px 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.our-product-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.our-product-title-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our-product-title {
  color: #9795FF;
  font-size: 68px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 75px;
  word-wrap: break-word;
}
.our-product-desc {
  width: 486px;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  word-wrap: break-word;
}
.our-product-contact-btn {
  padding: 14px 24px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  color: #16121E;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.our-product-contact-btn:hover {
  background: #504CFF;
  color: #fff;
}
.our-product-contact-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 24px;
  position: relative;
  overflow: visible;
  background: none;
  border: none;
  box-shadow: none;
}
.our-product-contact-arrow::after {
  content: '';
  display: block;
  width: 12px;
  height: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
}
.our-product-contact-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
  background: none;
  border: none;
  box-shadow: none;
  fill: none;
}
.our-product-cards {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.our-product-row {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
.our-product-row:not(:first-child) {
  margin-top: -100px;
}
.our-product-card {
  background: none;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 588px;
  padding-bottom: 0px;
  position: relative;
}
.our-product-card-img-block {
  width: 100%;
  height: 201px;
  position: relative;
  background: linear-gradient(135deg, #E6DBFF 0%, #F6F6F6 44%, #D8D7FF 100%);
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
}
.our-product-card-img-block img {
  width: 328px;
  height: 183px;
  position: absolute;
  right: 24px;
  top: 24px;
  object-fit: cover;
  border-radius: 16px;
}
.our-product-card-badge {
  position: absolute;
  left: 24px;
  top: 36.5px;
  padding: 4px 10px;
  border-radius: 32px;
  outline: 0.8px #504CFF solid;
  outline-offset: -0.4px;
  background: #fff;
  color: #0A0C14;
  font-size: 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  z-index: 2;
}
.our-product-card-arrow {
  width: 34px;
  height: 34px;
  position: absolute;
  right: 16px;
  top: 16px;
  background: rgba(255,255,255,0.40);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
  border-radius: 40.8px;
  outline: 1px #fff solid;
  outline-offset: -0.5px;
  backdrop-filter: blur(10px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.our-product-card-arrow svg {
  width: 28px;
  height: 28px;
  display: block;
}
.our-product-card-title {
  color: #0A0C14;
  font-size: 32px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  position: relative;
  top: -150px;
  z-index: 3;
  margin-bottom: 12px; /* başlık ile açıklama arasını aç */
  left: 20px; /* sağa kaydır */
}
.our-product-card-desc {
  color: #494C58;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  position: relative;
  top: -170px;
  z-index: 3;
  left: 20px; /* sağa kaydır */
}
.our-product-card-title-lg {
  color: #fff;
  position: relative;
  top: -100px;
  left: 0px;
}
.our-product-card-desc-lg {
  color: #fff;
  position: relative;
  top: -120px;
  left: 0px;
}

@media (max-width: 1250px) {
  .our-product-header, .our-product-cards {
    max-width: 98vw;
    padding: 0 10px;
  }
  .our-product-section {
    padding: 32px 0 16px 0;
  }
  .our-product-card {
    width: 48vw;
    min-width: 320px;
  }
}
@media (max-width: 900px) {
  .our-product-title {
    font-size: 40px;
    line-height: 48px;
  }
  .our-product-desc {
    width: 100%;
    font-size: 15px;
    line-height: 22px;
  }
  .our-product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .our-product-row {
    flex-direction: column;
    gap: 20px;
  }
  .our-product-card {
    width: 100%;
    min-width: unset;
    padding-bottom: 16px;
  }
  .our-product-cards {
    gap: 20px;
  }
  .our-product-section {
    padding: 16px 0 8px 0;
  }
}
@media (max-width: 600px) {
  .our-product-title {
    font-size: 28px;
    line-height: 32px;
  }
  .our-product-desc {
    font-size: 13px;
    line-height: 18px;
  }
  .our-product-header, .our-product-cards {
    padding: 0 2px;
    max-width: 100vw;
  }
  .our-product-card-img-block {
    height: 120px;
    border-radius: 10px;
  }
  .our-product-card-img-block img {
    width: 160px;
    height: 90px;
    right: 8px;
    top: 8px;
    border-radius: 8px;
  }
  .our-product-card-badge {
    left: 8px;
    top: 12px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 16px;
  }
  .our-product-card-arrow {
    width: 22px;
    height: 22px;
    right: 6px;
    top: 6px;
    border-radius: 12px;
  }
  .our-product-card-title, .our-product-card-title-lg {
    font-size: 18px;
    margin-top: 6px;
  }
  .our-product-card-desc, .our-product-card-desc-lg {
    font-size: 11px;
    line-height: 16px;
  }
  .our-product-card-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* Testimonials Section */
.testimonials-section {
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0px 0 48px 0;
  position: relative;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  z-index: 2;
}
.testimonials-bg {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.6;
  pointer-events: none;
}
.testimonials-bg-left {
  width: 641px; height: 287px;
  left: 0; bottom: 0;
  background: #504CFF;
}
.testimonials-bg-right {
  width: 641px; height: 287px;
  right: 0; top: 40%;
  background: #854CFF;
}
.testimonials-header-group {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  padding-left: 24px;
}
.testimonials-title {
  color: #9795FF;
  font-size: 68px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 75px;
  margin: 0 0 12px 0;
  word-break: break-word;
}
.testimonials-desc {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  max-width: 486px;
  margin: 0;
}
.testimonials-cards {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.testimonial-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, rgba(255,255,255,0.13) 0%, rgba(80,76,255,0.10) 100%);
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.20);
  box-shadow: 0 8px 32px rgba(31,38,135,0.18), 0 4px 16px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  min-height: 220px;
  box-sizing: border-box;
}
.testimonial-card::before {
  display: none;
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
}
.testimonial-avatar {
  width: 54px;
  height: 53px;
  border-radius: 50%;
  background: #D9D9D9;
  display: inline-block;
  flex-shrink: 0;
}
.testimonial-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  line-height: 28px;
}
.testimonial-role {
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 16px;
}
.testimonial-quote-icon {
  margin-left: auto;
  font-size: 44px;
  color: #fff;
  opacity: 0.2;
  font-family: serif;
  font-weight: bold;
  line-height: 1;
  user-select: none;
}
.testimonial-content {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  word-break: break-word;
}
@media (max-width: 1100px) {
  .testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .testimonials-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 700px) {
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonials-title {
    font-size: 28px;
    line-height: 32px;
  }
  .testimonials-header-group {
    padding-left: 8px;
  }
  .testimonials-section {
    padding: 48px 0 24px 0;
  }
  .testimonial-card {
    border-radius: 12px;
    padding: 20px 10px;
    min-height: 120px;
  }
  .testimonial-card::before {
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0) 100%);
  }
  .testimonial-avatar {
    width: 36px;
    height: 36px;
  }
  .testimonial-name {
    font-size: 14px;
    line-height: 20px;
  }
  .testimonial-role {
    font-size: 10px;
    line-height: 14px;
  }
  .testimonial-content {
    font-size: 13px;
    line-height: 20px;
  }
  .testimonial-quote-icon {
    font-size: 28px;
  }
}

/* Call to Action Section (Let's work with Us) */
.cta-section {
  width: 100vw;
  min-width: unset;
  position: relative;
  left: 0;
  right: 0;
  background: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  box-sizing: border-box;
}
.cta-box {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(90deg, #1a162b 0%, #18151e 60%, #18152b 100%);
  border-top: 1px solid #635189;
  border-bottom: 1px solid #635189;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  justify-content: center;
}
.cta-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 24px;
  position: relative;
  box-sizing: border-box;
}
.cta-text-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.cta-title {
  color: #9795FF;
  font-size: 68px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 75px;
  margin: 0;
  word-break: break-word;
}
.cta-desc {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 28px;
  max-width: 588px;
  margin: 0;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #16121E;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  border-radius: 40px;
  padding: 14px 24px;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(120, 100, 255, 0.08);
  transition: background 0.2s, color 0.2s;
  min-width: 180px;
  justify-content: center;
}
.cta-btn:hover {
  background: #504CFF;
  color: #fff;
}
.cta-btn-arrow {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
@media (max-width: 900px) {
  .cta-title {
    font-size: 40px;
    line-height: 48px;
  }
  .cta-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 10px;
  }
  .cta-btn {
    align-self: center;
    min-width: 140px;
    padding: 12px 18px;
    font-size: 15px;
  }
  .cta-text-group {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .cta-title {
    font-size: 24px;
    line-height: 32px;
  }
  .cta-desc {
    font-size: 13px;
    line-height: 18px;
    max-width: 100vw;
  }
  .cta-container {
    padding: 18px 4px;
    gap: 16px;
  }
  .cta-btn {
    font-size: 13px;
    padding: 10px 12px;
    min-width: 100px;
  }
}

/* Footer Section */
.footer-section {
  width: 100vw;
  margin-left: calc( -50vw + 50%);
  background: linear-gradient(90deg, #2a2340 0%, #18151e 60%, #18152b 100%);
  border-top: 1px solid #3a2e5c;
  border-bottom: 1px solid #3a2e5c;
  box-sizing: border-box;
  color: #fff;
  position: relative;
  backdrop-filter: blur(10px);
}
.footer-box {
  width: 100vw;
  background: linear-gradient(90deg, #1a162b 0%, #18151e 60%, #18152b 100%);
  border-radius: 0;
  box-sizing: border-box;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 56px 24px 24px 24px;
  box-sizing: border-box;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 180px;
}
.footer-brand {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
}
.footer-logo {
  width: 172px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer-desc {
  color: #9795FF;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.footer-title {
  color: #fff;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links li:hover {
  color: #9795FF;
}
.footer-social {
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1 1 120px;
  min-width: 120px;
}
.footer-social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: color 0.2s, transform 0.2s;
}
.footer-social-icons a:hover {
  color: #9795FF;
  transform: scale(1.1);
}
.footer-social-icons svg {
  display: block;
  width: 24px;
  height: 24px;
}
.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px 24px 24px;
  font-size: 14px;
  color: #fff;
  box-sizing: border-box;
  border: none;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #9795FF;
}
.footer-copyright {
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 10px 16px 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 10px 16px 10px;
  }
  .footer-social {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 12px;
  }
}
@media (max-width: 600px) {
  .footer-container {
    padding: 18px 4px 8px 4px;
    gap: 18px;
  }
  .footer-bottom {
    padding: 0 4px 8px 4px;
    font-size: 12px;
  }
  .footer-title {
    font-size: 15px;
  }
  .footer-links li, .footer-bottom-links a {
    font-size: 13px;
  }
  .footer-desc {
    font-size: 13px;
    line-height: 18px;
  }
  .footer-logo {
    width: 120px;
    height: 30px;
  }
}

.cta-section,
.cta-box {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.footer-section,
.footer-box {
  margin-top: -13px !important;
  padding-top: 0 !important;
}
.footer-container {
  /* Remove typo and unnecessary width */
  /* widht: 100vw; */
}

/* Only affect the Branding card's button, not others */
.frame-parent1 .branding-parent + .start-with-us-group {
  position: static;
  left: unset;
  top: unset;
  margin-top: 106px;
  margin-bottom: 0;
  display: flex;
}

.vector-curve-wrapper {
  position: absolute;
  top: 120px; /* veya ihtiyaca göre */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* veya daha büyük bir değer, örn: 120vw */
  height: 750px;
  pointer-events: none;
  z-index: 0;
}
.vector-curve-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}
.features-section {
  position: relative;
}
@media (max-width: 900px) {
  .vector-curve-wrapper {
    height: 350px;
    top: 80px;
  }
}
@media (max-width: 600px) {
  .vector-curve-wrapper {
    height: 180px;
    top: 40px;
  }
}

/* GET STARTED SAYFASI */
.get-started-main {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.get-started-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 340px;
  max-width: 600px;
  margin-right: 16vw;
  margin-left: 0;
  padding: 32px 0;
}
.get-started-title {
  color: #fff;
  font-size: 70px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 77px;
  margin: 0 0 12px 0;
  word-break: break-word;
}
.get-started-label {
  color: #fff;
  font-size: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 6px;
}
.get-started-label-secondary {
  margin-top: 18px;
  margin-bottom: 4px;
}
.get-started-btn-row {
  display: flex;
  gap: 32px;
  margin-bottom: 4px;
}
.get-started-btn-link {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #16121E;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  border-radius: 40px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(120, 100, 255, 0.08);
}
.get-started-btn-link:hover {
  background: #504CFF;
  color: #fff;
}
.get-started-btn-arrow {
  font-size: 18px;
  margin-left: 4px;
}
.get-started-emails {
  display: flex;
  gap: 24px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.get-started-email {
  color: #fff;
  font-size: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
  word-break: break-word;
}
.get-started-email-underline {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .get-started-main {
    justify-content: center;
  }
  .get-started-content {
    margin-right: 0;
    padding: 24px 0;
    max-width: 98vw;
  }
  .get-started-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 8px;
  }
  .get-started-label, .get-started-email {
    font-size: 16px;
    line-height: 24px;
  }
  .get-started-btn-link {
    font-size: 15px;
    padding: 12px 22px;
    min-width: 180px;
  }
  .get-started-btn-row {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .get-started-content {
    padding: 8px 0;
    min-width: unset;
    max-width: 100vw;
  }
  .get-started-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px;
  }
  .get-started-label, .get-started-email {
    font-size: 13px;
    line-height: 16px;
  }
  .get-started-btn-link {
    font-size: 13px;
    padding: 8px 10px;
    min-width: 120px;
  }
  .get-started-btn-row {
    gap: 8px;
  }
  .get-started-emails {
    gap: 8px;
  }
}
@media (max-width: 1200px) {
  .get-started-content {
    margin-right: 0;
  }
}

/* GET STARTED SOL MARQUEE EFEKTİ */
.get-started-main {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
}
.get-started-left-effect {
  width: 50vw;
  min-width: 320px;
  max-width: 50vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  position: relative;
  z-index: 1;
  height: 100vh;
}
.get-started-left-effect .content {
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.marquee {
  position: relative;
  width: 100%;
  margin-left:-200px;
  margin-top: 150px;
  height: 100vh;
  min-height: 220px;
  font-size: 50vw;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.marquee_text {
  position: absolute;
  min-width: 100%;
  white-space: nowrap;
  animation: marquee 16s infinite linear;
}
@keyframes marquee {
  from { translate: 70%; }
  to { translate: -70%; }
}
.marquee_blur {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: black;
  background-image:
    linear-gradient(to right, #4F1AFB, 1rem, transparent 50%),
    linear-gradient(to left, #4F1AFB, 1rem, transparent 50%);
  filter: contrast(15);
}
.marquee_blur p {
  filter: blur(0.07em);
}
.marquee_clear {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
@media (max-width: 900px) {
  .get-started-main {
    flex-direction: column;
    align-items: center;
  }
  .get-started-left-effect {
    width: 100vw;
    max-width: 100vw;
    min-width: unset;
    justify-content: center;
    margin-bottom: 24px;
    height: 180px;
  }
  .marquee {
    font-size: 12vw;
    height: 120px;
    min-height: 80px;
  }
}
.veritral-bottom-logo {
  position: fixed;
  right: 300px;
  bottom: 32px;
  z-index: 1001;
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.veritral-bottom-logo img {
  width: 300px;
  height: 150px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px #4F1AFB33);
}
.sticky-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.4s;
}

.next-level-banner {
  margin: 150px auto 0 auto;
  max-width: 1085px;
  background: linear-gradient(90deg, #5C4DFF 0%, #4F1AFB 100%);
  border-radius: 22px;
  padding: 32px 36px 28px 36px;
  box-shadow: 0 4px 32px 0 #4F1AFB22;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 250px;
}
.next-level-main {
  color: #e6e6ff;
  font-size: 4.1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  display: block;
}
.next-level-bold {
  color: #fff;
  font-weight: 400;
}

.exclusive-offer-banner {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 140px auto 32px auto;
  min-height: 316px;
  background: #4F1AFB;
  border-radius: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 32px 32px 32px 32px;
  box-sizing: border-box;
  box-shadow: 0 4px 32px 0 #4F1AFB22;
  overflow: hidden;
}
.exclusive-offer-title {
  font-size: 3.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  word-break: break-word;
  flex: 2 1 400px;
  min-width: 280px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #9795FF 0%, #fff 50%, #9795FF 100%);
  background-size: 200% 100%;
  animation: gradient-move 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.exclusive-offer-list {
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 12px;
  flex: 2 1 300px;
  min-width: 220px;
}
.exclusive-offer-list ul {
  margin: 0;
  padding-left: 18px;
}
.exclusive-offer-list li {
  margin-bottom: 2px;
}
.exclusive-offer-price-block {
  position: absolute;
  right: 120px;
  top: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}
.exclusive-offer-permonth {
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 2px;
}
.exclusive-offer-price {
  color: #fff;
  font-size: 96px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  line-height: 77px;
  margin-bottom: 18px;
}
.exclusive-offer-btn {
  background: #fff;
  color: #16121E;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  border-radius: 40px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px #4F1AFB33;
  transition: background 0.2s, color 0.2s;
}
.exclusive-offer-btn:hover {
  background: #f2f2ff;
  color: #4F1AFB;
}
.exclusive-offer-btn-arrow {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .exclusive-offer-banner {
    flex-direction: column;
    min-height: 380px;
    padding: 24px 12px 24px 12px;
  }
  .exclusive-offer-title {
    font-size: 2.1rem;
    line-height: 1.1;
  }
  .exclusive-offer-price-block {
    position: static;
    align-items: flex-start;
    margin-top: 18px;
  }
  .exclusive-offer-price {
    font-size: 56px;
    line-height: 1.1;
  }
}
@media (max-width: 600px) {
  .exclusive-offer-banner {
    min-height: 320px;
    border-radius: 18px;
    padding: 12px 2vw 18px 2vw;
  }
  .exclusive-offer-title {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .exclusive-offer-list {
    font-size: 0.95rem;
  }
  .exclusive-offer-price {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .exclusive-offer-btn {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 22px;
  }
}

.product-section {
  width: 100%;
  max-width: 1150px;
  margin: 64px auto 0 auto;
  padding: 0 8px 64px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.product-category-title {
  width: 100%;
  font-size: 2.4rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  margin: 48px 0 24px 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: left;
  background: linear-gradient(90deg, #9795FF 0%, #4F1AFB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.product-category-title span {
  font-weight: 400;
}
.product-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
}
.product-card {
  width: 315px;
  height: 330px;
  background: rgba(21, 21, 21, 0.40);
  border-radius: 24px;
  outline: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
  overflow: hidden;
  box-shadow: none;
  border: none;
}
.product-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: linear-gradient(35deg, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.15) 60%, rgba(255,255,255,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.product-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 60%, #9795FF 100%);
  margin-bottom: 0;
  margin-right: 12px;
  box-shadow: 0 2px 12px #4F1AFB22;
}
.product-card-title {
  font-size: 1.35rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  padding-left: 0;
}
.product-card-desc {
  font-size: 1rem;
  color: #bdb9d7;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: auto;
}
.product-card-bottom {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.product-card-svg {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: -10px;
  margin-right: 8px;
  vertical-align: middle;
  overflow: visible;
}
.product-card-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.product-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  margin-right: 16px;
  line-height: 1.1;
}
.product-card-price-label {
  font-size: 0.65rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.1em;
}
.product-card-price-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: -0.01em;
}
.product-card-link {
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  text-decoration: underline;
  margin-right: 50px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.18s;
  margin-left: auto;
}
.product-card-link.main {
  background: #fff;
  color: #16121E;
  border-radius: 24px;
  padding: 6px 18px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 0;
  margin-left: 8px;
  box-shadow: 0 2px 8px #4F1AFB22;
  transition: background 0.2s, color 0.2s;
}
.product-card-link.main:hover {
  background: #4F1AFB;
  color: #fff;
}
.product-card-link-arrow {
  font-size: 1.1em;
  margin-left: 2px;
}
@media (max-width: 1200px) {
  .product-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card {
    width: 98vw;
    max-width: 390px;
  }
}
@media (max-width: 800px) {
  .product-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-card {
    width: 98vw;
    max-width: 390px;
    min-width: 0;
    margin: 0 auto;
  }
  .product-section {
    padding: 0 2vw 32px 2vw;
  }
}