@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');
:root {
  --c-pr: #1F6FEB;
  --c-se: #24C7C0;
  --c-ac: #8A7BF6;
  --c-wh: #f1f1f1;
  --c-tx-se: #6b7280;
  --swiper-pagination-bottom:0px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  color: var(--c-pr);
  text-decoration: none;
  transition: color 0.2s;
}
.w-100{
  width: 100%;
}
.mt-a{
  margin-top: auto;
}
.mb-4{
  margin-bottom: 4rem !important;
}
.text-center{
  text-align: center;
}
.text-end{
  text-align: right;
}
.text-start{
  text-align: left;
}
.number-font {
  font-family: 'Outfit', sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container + .container{
  padding-top: 4rem;
}

.top-section {
  background-color: #F6F6F6;
  font-size: 12px;
  height: auto;
}
.top-section .container>div {
  display: flex;
  gap: .4rem;
  align-items: center;
  padding: .4rem 0;
}
.top-section a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.ms-auto{
  margin-left: auto;
}
.ms-2{
  margin-left: .6rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  max-height:50px;
  
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

nav a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--c-pr);
}

nav li.active a {
  color: var(--c-se);
}

.dropdown {
  position: relative;
}

.dropdown>a::after {
  content: '▾';
  transition: transform 0.3s;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  min-width: 280px;
  padding: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(36,199,192,0.1), rgba(31,111,235,0.1));
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-se), var(--c-pr), var(--c-ac));
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(36,199,192,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--c-se) !important;
  color: var(--c-se) !important;
  background-color: transparent !important;
}

.btn-outline:hover {
  background-color: var(--c-se) !important;
  color: var(--c-wh) !important;
}

.btn-white {
  border: 2px solid var(--c-wh) !important;
  color: var(--c-wh) !important;
  background-color: transparent !important;
}

.btn-white:hover {
  background-color: var(--c-wh) !important;
  color: var(--c-pr) !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36,199,192,0.9), rgba(31,111,235,0.85), rgba(138,123,246,0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: normal;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.badge-value {
  font-size: 1.875rem;
  font-weight: bold;
  display: block;
}

.badge-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Section */
section {
  padding: 6rem 0;
}

.section-title {
  /*text-align: center;*/
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 4rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--c-se), var(--c-pr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.mp:nth-child(odd) .container .split>div:first-child {
  order:1;
}

.mp:nth-child(even) .container .split>div {
  order:1;
}

.split img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mp h3{
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.mp .title-desc{
  font-size: 1.25rem;
  color: var(--c-tx-se);
  margin-bottom: 1rem;
}
.feature-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.feature-box h4{
  font-size: 1.125rem;
  margin-bottom: 0.1rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  padding: .4rem;
  border-radius: 1rem;
  transition: background 0.3s;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  opacity: 0.6;
}
.feature-box p{
  color: var(--c-tx-se);
  font-size: 1rem;
  margin: 0!important;
}

.feature-box:nth-child(4n+1) .feature-icon{ background: linear-gradient(135deg, var(--c-se), var(--c-pr)); }
.feature-box:nth-child(4n+2) .feature-icon{ background: linear-gradient(135deg, var(--c-pr), var(--c-ac)); }
.feature-box:nth-child(4n+3) .feature-icon{ background: linear-gradient(135deg, var(--c-ac), var(--c-se)); }
.feature-box:nth-child(4n+4) .feature-icon{ background: linear-gradient(135deg, var(--c-se), var(--c-ac)); }


.module-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.module-card img {
  width: 100%;
  height: auto;
}

.module-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.marketplace-banner {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(90deg, var(--c-se), var(--c-pr), var(--c-ac));
  color: white;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.marketplace-logo {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  position: relative;
}

.marketplace-logo:hover {
  transform: scale(1.1);
}

.marketplace-logo img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  vertical-align: middle;
}

.marketplace-logo.in-process:after {
  position: absolute;
  content: 'Geliştiriliyor';
  display: block;
  height: 1.2rem;
  background: var(--c-se);
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .5;
  text-align: center;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: .675rem;
}

.marketplace-logo.planned {
  background: #dedede;
}

.marketplace-logo.planned:after {
  position: absolute;
  content: 'Planlandı';
  display: block;
  height: 1.2rem;
  background: var(--c-pr);
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .5;
  text-align: center;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  font-size: .675rem;
}


.stats-overlay {
  position: relative;
  padding: 6rem 0;
  color: white;
}

.stats-bg {
  position: absolute;
  inset: 0;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.95), rgba(31,111,235,0.9), rgba(36,199,192,0.95));
}

.stats-content {
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto 3rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 4rem;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 1.25rem;
  opacity: 0.9;
}

.journey-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.journey-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.journey-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.journey-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

footer {
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
  color: white;
  padding: 4rem 0 2rem;
}

footer .exp {
  color: #9ca3af;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-group + .footer-a, .footer-a + .footer-group{
  padding-top: 0.75rem;
  border-top: 1px solid #999999;
}

.footer-a {
  margin-bottom: 0.75rem;
  display: block;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: .1rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.75rem;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--c-se);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

.cta-buttons a{
	padding: 0.4rem .7rem;
	line-height:1.1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(135deg, var(--c-se), var(--c-pr));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  z-index: 1000;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.mobile-dropdown a.active {
  background: linear-gradient(90deg, rgba(36,199,192,0.1), rgba(31,111,235,0.1));
  border-color: rgba(36,199,192,0.2);
  color: var(--c-pr);
}

.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  margin: 0.5rem 0;
  padding: 0.5rem;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle::after {
  content: '▾';
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.mobile-dropdown-toggle.active::after {
  transform: rotate(180deg);
}

.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .cta-buttons, .d-md-none {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .split {
    grid-template-columns: 1fr;
  }
  .mp:nth-child(odd) .container .split>div:first-child {
    order:0;
  }

  .stat-value {
    font-size: 2.5rem;
  }
  
  .hero-badges {
    align-items: center;
    gap: 1rem;
  }
  
  .badge {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}
.remix {
    width: 1.4rem;
    height: 1.4rem;
    fill: #333;
}
.remix.sm {
    width: 1rem;
    height: 1rem;
}
.remix.lg {
  width: 2rem;
  height: 2rem;
}
.btn:has(.remix),a:has(.remix) {
display: flex;
align-items: center;
  width: max-content;
}
.btn>.remix, a>.remix {
margin-right:.25rem;
}
use {
	fill:currentColor;
}
.re-icon {
  margin-right:0 !important;
  width: auto !important;
}
.bg-white{
  background-color:#fff !important;
  color: var(--c-pr) !important;
}
.bg-gray{
  background-color:#d5dfdf !important;
}
.bg-primary {
  background: linear-gradient(135deg, var(--c-se), var(--c-pr), var(--c-ac));
  color: white;
}
.text-white{
	color:#fff;
}
.text-lg{
	font-size: 1.125rem;
}
.p-lg{
	padding: 1.25rem 2.5rem;
}
.social-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-buttons a {
  background-color: #ffffff1a;
  border-radius: .6rem;
  height: 40px;
  width: 40px;
  display: flex;
  justify-items: center;
  align-items: center;
}
.page-title{
  font-size: 3rem;
  margin-bottom: 1rem;
}
.menu-title{
  display: inline-block;
  padding: 0.3rem .6rem;
  border-radius: 9999px;
  font-weight: 300;
  margin-bottom: .4rem;
  font-size: .775rem;
  background-color: rgb(from var(--c-pr) r g b / 0.1);
  color: var(--c-pr);
}
.menu-title-se{
  display: inline-block; padding: 0.2rem .7rem; border-radius: 9999px; font-weight: 500; margin-bottom: 1rem;
  background-color: rgb(from var(--c-se) r g b / 0.1);
  color: var(--c-se);
}
.short-exp{
  font-size: 1.25rem; color: #6b7280; margin-bottom: 2rem;
}
.short-exp-sm{
  font-size: .875rem; color: #6b7280; margin-bottom: 1rem;
}

.section-content{
  padding: 5rem 0;
  background: linear-gradient(135deg, rgb(from var(--c-pr) r g b / 0.1), white, rgb(from var(--c-se) r g b / 0.1));
}

.lightbox{
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.lightbox img{
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 400px;
}
.blog-card{
  border: 2px solid #e5e7eb; border-radius: 1rem; overflow: hidden; transition: all 0.3s;
}
.blog-card img{
  width: 100%; height: 200px; object-fit: cover;
}
.blog-card>div{
  padding: 1.5rem;
}
.accordion{
  position: relative;
  margin-bottom: 1rem;
}
.accordion input{
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  opacity:0;
  visibility: hidden;
}
.accordion h4{
  position: relative;
  border-radius: 6px;
}
.accordion label::before{
  content:"";
  display: inline-block;
  border: 6px solid transparent;
  border-left:6px solid #999999;
  margin-right:6px;
}
.accordion label{
  padding:1em;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.accordion .body{
  max-height:0px;
  overflow: hidden;
  transition:max-height 0.5s;
  background-color: white;
  box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.accordion .body>div{
  padding: 1rem;
}
.accordion input:checked ~ h4 label::before{
  border-left:6px solid transparent;
  border-top:6px solid #999999;
  margin-top:12px;
  margin-right:6px;
}
.accordion input:checked ~ h4 ~ .body{
  max-height:fit-content;
}
.pricing-container{
  padding: 2rem; border: 2px solid #e5e7eb; border-radius: 1rem; text-align: center;display: flex;flex-direction: column; gap: .6rem
}
.pricing-container .price{
  font-size: 2.5rem; font-weight: bold;
}

.contact-form>div{
  margin-bottom: 1rem;
}
.contact-form>div>label{
  display: block; font-weight: 300;color: #777777;
}