@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0B1F4D;
  --navy-light: #1a3470;
  --blue: #0086FF;
  --blue-light: #3da5ff;
  --teal: #00C2C7;
  --teal-light: #33d4d8;
  --gray-bg: #F7F9FC;
  --gray-border: #E2E8F4;
  --text-dark: #0B1F4D;
  --text-mid: #4A5578;
  --text-light: #8899BB;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0086FF, #00C2C7);
  --gradient-hero: linear-gradient(135deg, #0B1F4D 0%, #1a3470 50%, #0B2D6A 100%);
  --shadow-card: 0 4px 24px rgba(11, 31, 77, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 134, 255, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; line-height: 1.2; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(11,31,77,0.1);
  padding: 0;
}
#navbar .navbar-brand img { height: 38px; }
.navbar-logo {
  height: 38px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  display: block;
  background: transparent !important;
}
@media (max-width: 991.98px) {
  .navbar-logo {
    max-width: 100%;
  }
}
/* Şeffaf logo: koyu kahraman zeminde okunaklılık için hafif gölge */
#navbar:not(.scrolled) .navbar-logo {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}
#navbar.scrolled .navbar-logo {
  filter: none;
}
#navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
#navbar.scrolled .nav-link { color: var(--text-mid) !important; }
#navbar .nav-link:hover { color: var(--blue) !important; }
.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,134,255,0.35) !important; }

.nav-login {
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1.1rem !important;
  font-weight: 600 !important;
  margin-right: 0.25rem;
}
.nav-login:hover {
  border-color: white !important;
  color: white !important;
  background: rgba(255, 255, 255, 0.08);
}
#navbar.scrolled .nav-login {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}
#navbar.scrolled .nav-login:hover {
  background: rgba(0, 134, 255, 0.06);
}

/* Navbar iç kabuk — yatay taşmayı önlemek için tek yerden padding + box-sizing */
#navbar .navbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(14px, env(safe-area-inset-left, 0px));
  padding-right: max(14px, env(safe-area-inset-right, 0px));
}
@media (min-width: 992px) {
  #navbar .navbar-inner {
    max-width: 1320px;
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }
}

/* Hamburger: Bootstrap Icons yerine SVG — font yüklenmese bile görünür */
.navbar-hamburger-svg {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  width: 24px;
  height: 24px;
}
.navbar-toggler-custom {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  border-radius: var(--radius-sm);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}
#navbar.scrolled .navbar-toggler-custom {
  color: var(--blue);
  background: rgba(0, 134, 255, 0.1);
  border-color: rgba(0, 134, 255, 0.45) !important;
}
#navbar:not(.scrolled) .navbar-toggler-custom {
  color: #ffffff;
}

/* Hamburger yalnızca dar ekranda: .navbar-toggler-custom display:!important, Bootstrap d-lg-none ile çakışmasın */
@media (min-width: 992px) {
  #navbar .navbar-toggler,
  #navbar .navbar-toggler-custom {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  /* Şeffaf bar yerine tam genişlik koyu şerit — kenarda gri şerit / kırpılma azalır */
  #navbar:not(.scrolled) {
    background: rgba(11, 31, 77, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  #navbar {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overflow-y: visible;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  /* Üst satır: logo solda sabit pay bırakarak küçülür, toggler asla taşmaz */
  #navbar .navbar-inner {
    column-gap: 10px;
    row-gap: 0.5rem;
  }
  #navbar .navbar-brand {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 54px);
    margin-right: 0;
    overflow: hidden;
  }
  #navbar .navbar-toggler-custom {
    flex-shrink: 0;
    margin-left: 0;
    box-shadow: none;
    outline: none;
  }
  /* Mobil menü paneli — üst bar beyaz olsa bile hep koyu mavi */
  #navbar .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    margin-top: 0.65rem;
    padding: 0.65rem 0.85rem 1rem;
    border-radius: var(--radius-md);
    z-index: 1002;
    position: relative;
    background: rgba(11, 31, 77, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }
  #navbar .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.94) !important;
  }
  #navbar .navbar-collapse .nav-link:hover {
    color: var(--teal-light) !important;
  }
  #navbar .navbar-collapse .nav-login {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: rgba(255, 255, 255, 0.95) !important;
  }
  #navbar .navbar-collapse .nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff !important;
    color: #fff !important;
  }
  /* Mobilde nav-cta menü içinde okunaklı kalsın */
  #navbar .navbar-collapse .nav-cta {
    color: #fff !important;
  }
  #navbar .navbar-collapse .navbar-nav {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  #navbar .nav-login {
    margin-right: 0 !important;
  }
}

/* ── BUTTONS ── */
.btn-primary-cta {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,134,255,0.35);
  color: white;
}
.btn-secondary-cta {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-secondary-cta:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}

/* ── HERO ── */
#hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,194,199,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
#hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,134,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,199,0.15);
  border: 1px solid rgba(0,194,199,0.3);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.45rem;
}
.hero-stat-sep {
  width: 1px;
  align-self: stretch;
  min-height: 3.25rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .counter-num {
  font-size: 1.45rem;
  line-height: 1.2;
}
.hero-stats .hero-stat-num {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  margin: 0;
  max-width: 14rem;
}

/* Hero Mockup */
.hero-mockup {
  position: relative; z-index: 2;
}
.phone-frame {
  width: 220px;
  background: #1a2a4a;
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  margin: 0 auto;
}
.phone-screen {
  background: #0f1d3a;
  border-radius: 22px;
  overflow: hidden;
  height: 420px;
}
.phone-status { background: #0B1F4D; padding: 10px 16px 6px; display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.5); }
.phone-header { background: var(--gradient-primary); padding: 14px 16px; }
.phone-header-text { color: white; font-size: 11px; font-weight: 700; }
.phone-header-sub { color: rgba(255,255,255,0.7); font-size: 9px; margin-top: 1px; }
.phone-content { padding: 12px; }
.phone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.phone-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.phone-card-title { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.9); }
.phone-card-sub { font-size: 8px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.phone-card-badge { margin-left: auto; font-size: 8px; padding: 3px 7px; border-radius: 100px; font-weight: 600; }

.dashboard-frame {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 320px;
  position: absolute;
  right: -20px;
  top: 30px;
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-title { font-size: 12px; font-weight: 700; color: var(--navy); }
.dash-date { font-size: 10px; color: var(--text-light); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.dash-metric { background: var(--gray-bg); border-radius: 8px; padding: 10px; }
.dash-metric-num { font-size: 18px; font-weight: 800; color: var(--navy); }
.dash-metric-label { font-size: 9px; color: var(--text-light); margin-top: 1px; }
.dash-bar { height: 4px; background: var(--gray-bg); border-radius: 2px; margin-top: 4px; }
.dash-bar-fill { height: 100%; border-radius: 2px; background: var(--gradient-primary); }
.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(11,31,77,0.15);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.floating-card .fc-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; }

/* ── TRUST LOGOS ── */
#trust { padding: 60px 0; border-bottom: 1px solid var(--gray-border); }
.trust-title { font-size: 0.85rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem; }
.logo-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3rem; }
.logo-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.45;
  transition: opacity 0.3s;
  font-size: 0.95rem; font-weight: 800;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}
.logo-item:hover { opacity: 0.8; }
.logo-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; }

/* ERP partner logos */
.erp-partner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
}
.erp-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s ease;
}
.erp-partner:hover {
  opacity: 0.88;
}
.erp-partner-logo {
  flex-shrink: 0;
  height: 56px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.erp-partner-logo--canias {
  height: auto;
  max-height: 64px;
  max-width: 260px;
}
.erp-partner-logo--ifs {
  height: 58px;
  width: auto;
  max-width: 86px;
  object-fit: contain;
}

/* Store badges (official artwork) */
.store-badges-official {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 0.5rem;
}
.store-badge-link {
  display: inline-flex;
  line-height: 0;
}
.store-badge-link img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.store-badge-link:hover img {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Mobil ekran görüntüleri (pazarlama görselleri) */
.mobile-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
.mobile-shot-card {
  margin: 0;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 1px solid var(--gray-border);
}
.mobile-shot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.mobile-shot-card figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.35;
}

.mobile-screens-carousel {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.75rem;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}
.mobile-screens-carousel .mobile-screens-carousel-img {
  -webkit-user-drag: none;
}
.mobile-screens-carousel .carousel-inner {
  border-radius: var(--radius-lg);
}
.mobile-screens-carousel .carousel-item .mobile-shot-card {
  margin-bottom: 0;
}
.mobile-screens-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-screens-carousel .carousel-indicators [type="button"] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 2px;
  margin-right: 2px;
  border: 0;
  background-color: rgba(11, 31, 77, 0.28);
}
.mobile-screens-carousel .carousel-indicators .active {
  background-color: var(--blue);
}
.mobile-screens-carousel .carousel-control-prev,
.mobile-screens-carousel .carousel-control-next {
  width: 12%;
  opacity: 1;
}
.mobile-screens-carousel .mobile-screens-carousel-arrow {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

/* Referanslar */
#referanslar {
  padding: 100px 0;
  background: var(--gray-bg);
  overflow-x: clip;
}
.reference-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}
.reference-card img {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}
.reference-card .reference-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

/* Referanslar — sonsuz marquee (10 logo peş peşe, tekrarlayan şerit) */
.references-marquee-outer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0.75rem 0 1.25rem;
  overflow: hidden;
}
.references-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.references-marquee-track {
  display: flex;
  width: max-content;
  animation: references-marquee-scroll 48s linear infinite;
}
.references-marquee:hover .references-marquee-track {
  animation-play-state: paused;
}
@keyframes references-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .references-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 max(16px, env(safe-area-inset-right));
  }
  .references-marquee-group[aria-hidden="true"] {
    display: none;
  }
  .references-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.references-marquee-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.5rem 3.25rem;
  padding-right: 3.25rem;
  flex-shrink: 0;
  background: transparent;
}
.ref-logo-item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.ref-logo-item img {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: min(220px, 36vw);
  height: auto;
  object-fit: contain;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .references-marquee-group {
    gap: 1.75rem 2rem;
    padding-right: 2rem;
  }
  .ref-logo-item img {
    max-height: 52px;
    max-width: min(180px, 42vw);
  }
  .references-marquee-track {
    animation-duration: 36s;
  }
}

/* ── WHAT IS ── */
#what-is { padding: 100px 0; background: var(--gray-bg); }
.what-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.what-feature-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; }
.what-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.what-feature-text h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.what-feature-text p { font-size: 0.82rem; color: var(--text-mid); }

/* ── FEATURES GRID ── */
#features { padding: 100px 0; }
.feature-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(0,134,255,0.1); }
.feature-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

/* ── ROADMAP ── */
#roadmap { padding: 100px 0; background: var(--gray-bg); }
.roadmap-container { position: relative; }
.roadmap-line {
  position: absolute; left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  transform: translateX(-50%);
}
.roadmap-phase { margin-bottom: 4rem; position: relative; }
.phase-badge {
  position: absolute; left: 50%; top: 20px;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(0,134,255,0.15);
}
.phase-header {
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0;
}
.phase-header h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.phase-header .phase-date { font-size: 0.8rem; opacity: 0.8; }
.phase-date-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 6px;
}
.module-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 4px;
  transition: all 0.2s;
}
.module-tag:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.module-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-primary); }

/* ── DİJİTAL ONAY SECTION ── */
#dijital-onay {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#dijital-onay::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,199,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
#dijital-onay .section-title { color: white; }
#dijital-onay .section-desc { color: rgba(255,255,255,0.6); }

#dijital-onay .digital-benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-height: 220px;
  height: 100%;
}
#dijital-onay .digital-benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}
#dijital-onay .digital-benefit-card h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
#dijital-onay .digital-benefit-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  margin-top: auto;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--teal); font-size: 1.2rem;
}
.process-step:last-child::after { display: none; }
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(0,194,199,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: rgba(0,194,199,0.15);
  border-color: var(--teal);
  transform: scale(1.1);
}
.step-num {
  position: absolute; top: 5px; right: 50%; transform: translateX(50%);
  width: 22px; height: 22px;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 10px; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(24px);
}
.step-title { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 4px; }
.step-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.digital-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,194,199,0.1);
  border: 1px solid rgba(0,194,199,0.3);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── MOBILE SECTION ── */
#mobile { padding: 100px 0; }
.mobile-feature {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 1.75rem;
}
.mobile-feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,134,255,0.1), rgba(0,194,199,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.mobile-feat-icon.mobile-feat-platforms {
  width: auto;
  min-width: 104px;
  height: 44px;
  padding: 0 12px;
  gap: 10px;
}
.mobile-feat-platforms .platform-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.mobile-feat-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.mobile-feat-desc { font-size: 0.85rem; color: var(--text-mid); }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.store-badge:hover { background: var(--navy-light); color: white; transform: translateY(-2px); }
.store-badge .store-icon { font-size: 20px; }

/* ── ADMIN PANEL ── */
#admin { padding: 100px 0; background: var(--gray-bg); }
.admin-feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.admin-item {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; font-weight: 500; color: var(--navy);
  transition: all 0.2s;
}
.admin-item:hover { border-color: var(--blue); color: var(--blue); transform: translateX(4px); }
.admin-item-icon { font-size: 18px; }

/* ── TECH SPECS ── */
#tech { padding: 100px 0; }
.tech-item {
  display: flex; align-items: center; gap: 16px;
  padding: 1rem 1.5rem;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: all 0.2s;
}
.tech-item:hover { background: rgba(0,134,255,0.06); transform: translateX(6px); }
.tech-item-icon { font-size: 22px; width: 40px; text-align: center; }
.tech-item-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.tech-item-desc { font-size: 0.82rem; color: var(--text-mid); }

/* ── BENEFITS ── */
#benefits { padding: 100px 0; background: var(--gray-bg); }
.benefit-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-height: 260px;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; flex-shrink: 0; }
.benefit-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; flex-shrink: 0; }
.benefit-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0; margin-top: auto; }

/* ── FAQ ── */
#faq { padding: 100px 0; }
.accordion-button {
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  background: white;
}
.accordion-button:not(.collapsed) {
  background: rgba(0,134,255,0.04);
  color: var(--blue);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-item { border: 1px solid var(--gray-border); border-radius: var(--radius-md) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── DEMO FORM ── */
#demo { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
#demo::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,134,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
#demo .section-title { color: white; }
#demo .section-desc { color: rgba(255,255,255,0.6); }
.form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,134,255,0.1);
}

/* ── FOOTER ── */
footer {
  background: #060E24;
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.55);
}
footer .footer-brand { font-size: 1.3rem; font-weight: 800; color: white; font-family: 'Manrope', sans-serif; margin-bottom: 0.5rem; }
footer .footer-logo {
  max-height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  background: transparent !important;
}
footer .footer-desc { font-size: 0.85rem; max-width: 280px; line-height: 1.7; }
footer .footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: white; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
footer a:hover { color: var(--teal); }
footer .footer-link { display: block; margin-bottom: 0.6rem; }
.social-links { display: flex; gap: 10px; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.social-link:hover { background: var(--blue); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-address { font-size: 0.8rem; color: rgba(255,255,255,0.35); display: flex; align-items: flex-start; gap: 6px; margin-top: 1rem; }

/* Çerez onayı */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 1.1rem max(16px, env(safe-area-inset-left, 0px)) calc(1.1rem + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 -10px 40px rgba(11, 31, 77, 0.12);
}
.cookie-consent[hidden] {
  display: none !important;
}
.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.cookie-consent-text {
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-consent-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.4rem;
  font-family: 'Manrope', sans-serif;
}
.cookie-consent-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}
.cookie-consent-desc a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.cookie-consent-desc a:hover {
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem 0.75rem;
  flex: 0 1 auto;
}
.btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-cookie:active {
  transform: translateY(1px);
}
.btn-cookie-primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 134, 255, 0.35);
}
.btn-cookie-primary:hover {
  box-shadow: 0 6px 18px rgba(0, 134, 255, 0.42);
}
.btn-cookie-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-border);
}
.btn-cookie-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 134, 255, 0.04);
}
@media (max-width: 576px) {
  .cookie-consent-actions {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cookie {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

/* Yukarı çık — sağ alt, üstteyken gizli */
.scroll-to-top-btn {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 1155;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 134, 255, 0.38);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, box-shadow 0.2s ease;
}
.scroll-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top-btn:hover {
  box-shadow: 0 8px 26px rgba(0, 134, 255, 0.45);
}
.scroll-to-top-btn:focus-visible {
  outline: 3px solid rgba(0, 134, 255, 0.45);
  outline-offset: 3px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── COUNTER ── */
.counter-num { font-size: 2.5rem; font-weight: 800; font-family: 'Manrope', sans-serif; }

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #hero { padding: 100px 0 60px; }
  .hero-mockup { margin-top: 3rem; }
  .dashboard-frame { display: none; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .roadmap-line { display: none; }
  .phase-badge { display: none; }
  .process-step::after { display: none; }
}
