/* =============================================
   mikroida — CORPORATE WEBSITE DESIGN SYSTEM
   ============================================= */

:root {
  /* Brand Colors */
  --navy: #070d1a;
  --navy-2: #0d1829;
  --navy-3: #132038;
  --navy-4: #1a2d4a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.15);
  --purple: #7c3aed;
  --purple-light: #8b5cf6;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --green: #10b981;
  --teal: #06b6d4;

  /* Neutrals */
  --border: rgba(255, 255, 255, 0.07);
  --border-blue: rgba(37, 99, 235, 0.2);
  --white: #ffffff;
  --text-primary: #f0f6ff;
  --text-secondary: #8faec4;
  --text-muted: #4d6d85;
  --card-bg: rgba(13, 24, 41, 0.8);
  --card-border: rgba(255, 255, 255, 0.06);

  /* Layout */
  --nav-height: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 88px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* GRADIENTS */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======= POPPINS headings ======= */
h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

/* ======= TOP-BAR (TicariMod style) ======= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: white;
  z-index: 1100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  width: 100%;
  padding: 0 32px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* ── Ticker ── */
.top-ticker {
  flex: 1;
  overflow: hidden;
  margin-left: 24px;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.15px;
}

.ticker-item i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}


.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: all 0.3s;
}

.top-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.top-item:hover {
  color: white;
  opacity: 0.85;
}

.divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* ======= HEADER-WRAPPER / NAVBAR (TicariMod style) ======= */
.header-wrapper {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: none;
  width: 100%;
}

.header-wrapper .container {
  transition: all 0.3s;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar {
  background: rgba(7, 13, 26, 0.97);
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 0 20px;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.header-wrapper.is-sticky {
  background: transparent;
}

.header-wrapper.is-sticky .container {
  max-width: 100%;
  padding: 0;
}

.header-wrapper.is-sticky .navbar {
  border-radius: 0;
  width: 100%;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.nav-logo-tm {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 20px;
  flex-shrink: 0;
}

.logo-icon-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.logo-tm-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #f0f6ff;
}

.logo-tm-accent {
  color: #60a5fa;
}

/* Nav menu */
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  flex-shrink: 1;
}

.nav-link {
  text-decoration: none;
  color: #c8d8e8;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 10px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-link:hover {
  color: #60a5fa;
}

.nav-link i.fa-chevron-down {
  font-size: 10px;
  opacity: 0.4;
  transition: all 0.3s;
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

.nav-icon {
  font-size: 15px;
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mega-menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 18, 32, 0.98);
  width: 780px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-item {
  position: relative;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}

.mega-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #60a5fa;
  transition: all 0.3s;
  flex-shrink: 0;
}

.mega-item:hover .mega-icon {
  background: #2563eb;
  color: white;
}

.mega-text b {
  display: block;
  font-size: 13px;
  color: #e8f0fe;
  margin-bottom: 2px;
}

.mega-text span {
  display: block;
  font-size: 11px;
  color: #7a8fa8;
  line-height: 1.3;
}

.badge {
  position: absolute;
  top: -5px;
  left: -5px;
  padding: 3px 8px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  color: white !important;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 10;
}

.badge-new {
  background: linear-gradient(135deg, #FF5E5E, #ff8c8c);
}

.badge-premium {
  background: linear-gradient(135deg, #1C8DBE, #29abe2);
}

/* Header action buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-odea {
  padding: 10px 22px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-login {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4 50%, #14b8a6);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.btn-register {
  background: linear-gradient(135deg, #f59e0b, #f97316 50%, #ef4444);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-register:hover::before {
  left: 100%;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.hamburger-btn {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #c8d8e8;
  margin: 5px 0;
  transition: 0.4s;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  transition: 0.4s;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.close-menu-btn {
  cursor: pointer;
  font-size: 22px;
  color: #101828;
}

.mobile-nav-link {
  text-decoration: none;
  color: #101828;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link .fa-chevron-right {
  margin-left: auto;
}

.mobile-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ======= ICON STRIP ======= */
.icon-strip {
  position: fixed;
  top: 146px;
  /* topbar(50) + padding(24) + navbar(72) */
  left: 0;
  right: 0;
  z-index: 990;
  height: 52px;
  background: rgba(7, 13, 26, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: top 0.3s ease;
}

.icon-strip-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.icon-strip-inner::-webkit-scrollbar {
  display: none;
}

.is-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 15px;
  border-radius: 7px;
  color: #8899aa;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.is-item i {
  font-size: 15px;
}

.is-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e0eaf5;
}

.is-item.is-featured {
  color: #fbbf24;
}

.is-item.is-featured:hover {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
}

.hero-section {
  position: relative;
  isolation: isolate;
  height: calc(78vh);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition sadece active eklenince tetiklenir — eski slide anında kapanır */
  transition: opacity 0s, transform 0s, visibility 0s;
  transform: scale(0.97);
  padding: 50px max(24px, calc((100% - 1260px) / 2)) 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: scale(1);
  z-index: 1;
  /* active gelince smooth aç */
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Stagger content reveal on active */
.hero-slide.active .slide-eyebrow {
  animation: heroFadeUp 0.6s 0.1s both cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .slide-title {
  animation: heroFadeUp 0.65s 0.22s both cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .slide-desc {
  animation: heroFadeUp 0.65s 0.34s both cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .slide-ctas {
  animation: heroFadeUp 0.65s 0.44s both cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .hero-stats,
.hero-slide.active .slide-trust-row {
  animation: heroFadeUp 0.65s 0.54s both cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .slide-visual {
  animation: heroFadeRight 0.7s 0.2s both cubic-bezier(0.4,0,0.2,1);
}

@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0);    }
}
@keyframes heroFadeRight {
  from { opacity:0; transform: translateX(48px) scale(0.96); }
  to   { opacity:1; transform: translateX(0) scale(1);       }
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.04); }
}

.slide-bg-1 {
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 10% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 60%), linear-gradient(160deg, #070d1a 0%, #0a1220 100%);
}

.slide-bg-2 {
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%), linear-gradient(160deg, #070d1a 0%, #100c02 100%);
}

.slide-bg-3 {
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 60%), linear-gradient(160deg, #070d1a 0%, #0a0714 100%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(7, 13, 26, 0.55) 0%, transparent 70%);
}

.hero-slide>* {
  position: relative;
  z-index: 2;
}

.hero-slide .slide-content {
  flex: 0 0 auto;
  width: 500px;
  max-width: 500px;
}

.hero-slide .slide-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
}

.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}

.eyebrow-dot.eyebrow-orange {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.eyebrow-dot.eyebrow-purple {
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.slide-title {
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.slide-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
}

.slide-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border-radius: 11px;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-hero-primary.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.3);
}

.btn-hero-primary.btn-orange:hover {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-hero-primary.btn-purple {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.3);
}

.btn-hero-primary.btn-purple:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hstat {
  display: flex;
  flex-direction: column;
}

.hstat-n {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hstat-l {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.hstat-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* Hero visual */
.hero-img-wrap {
  position: relative;
  max-width: 460px;
  width: 100%;
  animation: heroFloatIn 0.8s 0.3s ease both;
}

@keyframes heroFloatIn {
  from { opacity:0; transform: translateX(60px) scale(0.94); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  animation: heroFloat 6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.5deg); }
  66%       { transform: translateY(-5px) rotate(-0.3deg); }
}

.hero-glow {
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37,99,235,0.28), transparent);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-glow-orange {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245, 158, 11, 0.28), transparent);
}

.hero-glow-purple {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124, 58, 237, 0.28), transparent);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* Floating orb decorations in hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  filter: blur(60px);
}
.hero-orb-1 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  top: -80px; right: 10%;
  animation: orbDrift1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -60px; left: 5%;
  animation: orbDrift2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  top: 40%; right: 35%;
  animation: orbDrift3 10s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px, 20px) scale(1.1); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-25px) scale(1.08); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(15px, 15px); }
}

/* Canvas particle overlay */
#heroParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* AKINSOFT card */
.akinsoft-card {
  max-width: 420px;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  animation: fadeLeft 0.8s 0.3s ease both;
}

.akinsoft-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ak-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
}

.ak-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.ak-logo-block {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ak-logo-block i {
  color: var(--orange);
}

.ak-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.ak-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.ak-prod {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-secondary);
}

.ak-prod i {
  color: var(--orange);
  font-size: 14px;
}

.ak-footer-text {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Device showcase */
.device-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  width: 100%;
  animation: fadeLeft 0.8s 0.3s ease both;
}

.device-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.device-card:hover {
  border-color: var(--border-blue);
  transform: translateX(-4px);
}

.device-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.device-pos .device-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #4ade80;
}

.device-pavo .device-icon {
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple-light);
}

.device-hw .device-icon {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-light);
}

.device-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.device-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.dot.active {
  background: var(--blue);
  width: 22px;
  border-radius: 4px;
}

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--blue-light);
  font-size: 16px;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ===================== SECTION COMMONS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tag-orange {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: #fbbf24;
}

.tag-red {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.25);
  color: #f87171;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section buttons */
.btn-section-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border-radius: 11px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
  margin-top: 8px;
}

.btn-section-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.btn-section-primary.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-section-primary.btn-orange:hover {
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.4);
}

.btn-section-primary.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-section-primary.btn-red:hover {
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4);
}

.btn-section-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  border-radius: 11px;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-section-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* ===================== SERVICES ===================== */
.services-section {
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.08);
}

.service-card.svc-featured {
  border-color: rgba(37, 99, 235, 0.3);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(13, 24, 41, 0.9));
}

.service-card.svc-featured:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(37, 99, 235, 0.15);
}

.svc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  border-radius: 20px;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.svc-orange {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.svc-red {
  background: rgba(220, 38, 38, 0.12);
  color: #f87171;
}

.svc-blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-light);
}

.svc-green {
  background: rgba(16, 185, 129, 0.12);
  color: #4ade80;
}

.svc-purple {
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple-light);
}

.svc-teal {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  transition: var(--transition);
}

.svc-link:hover {
  gap: 10px;
}

/* ===================== AKINSOFT SECTION ===================== */
.akinsoft-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.ak-section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
}

.ak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.ak-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.ak-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ak-feat i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ak-feat div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ak-feat strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.ak-feat span {
  font-size: 13px;
  color: var(--text-muted);
}

.ak-showcase-card {
  background: var(--card-bg);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ak-sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.ak-sc-header span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ak-sc-header i {
  color: var(--orange);
}

.ak-auth-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  border-radius: 20px;
}

.ak-sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.ak-sc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  transition: var(--transition);
}

.ak-sc-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.ak-sc-item i {
  font-size: 20px;
}

.ak-sc-footer {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===================== TICARIMOD SECTION ===================== */
.ticarimod-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.tm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tm-card {
  background: var(--card-bg);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tm-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tm-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tm-logo i {
  color: #ef4444;
}

.tm-own-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #f87171;
  border-radius: 20px;
}

.tm-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.tm-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.tm-feat:hover {
  color: var(--white);
  border-color: rgba(220, 38, 38, 0.2);
}

.tm-feat i {
  color: #ef4444;
  font-size: 13px;
}

.tm-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tm-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.tm-price small {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-tm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  border-radius: 9px;
  transition: var(--transition);
}

.btn-tm:hover {
  transform: translateY(-2px);
}

.tm-highlight-list {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.tm-hl {
  display: flex;
  flex-direction: column;
}

.tm-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.tm-hl span:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.tm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================== PRODUCTS ===================== */
.products-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

/* ══ E-TİCARET ÜRÜN GALERİSİ ══ */
.shop-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

/* Kategori Filtreleri */
.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.shop-filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.shop-filter-btn:hover {
  border-color: #3b82f6;
  color: #60a5fa;
}

.shop-filter-btn.active {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

/* Ürün Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Ürün Kartı */
.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.15);
}

.shop-card-featured {
  border-color: rgba(124,58,237,0.35);
  background: linear-gradient(160deg, rgba(124,58,237,0.08), rgba(13,24,41,0.95));
}

/* Görsel Alan */
.shop-img-wrap {
  position: relative;
  overflow: hidden;
}

.shop-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  transition: transform 0.4s;
}

.shop-card:hover .shop-img-placeholder {
  transform: scale(1.06);
}

.sh-blue   { background: linear-gradient(135deg, #1e3a6e 0%, #0a1828 100%); color: #60a5fa; }
.sh-purple { background: linear-gradient(135deg, #3b0f6e 0%, #0a0a28 100%); color: #c084fc; }
.sh-teal   { background: linear-gradient(135deg, #0f4e5e 0%, #061820 100%); color: #2dd4bf; }
.sh-green  { background: linear-gradient(135deg, #0d4a1e 0%, #061208 100%); color: #4ade80; }
.sh-orange { background: linear-gradient(135deg, #5e2d0f 0%, #1e0c04 100%); color: #fb923c; }

/* Badge */
.shop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(37,99,235,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.shop-badge-orange { background: rgba(234,88,12,0.85); }
.shop-badge-purple { background: rgba(124,58,237,0.85); }

/* Kart İçi Bilgi */
.shop-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.shop-cat-label {
  font-size: 11px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.shop-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
  margin: 0;
}

.shop-info p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.shop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.shop-specs span {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.shop-specs i {
  color: #22c55e;
  font-size: 11px;
}

/* Footer butonları */
.shop-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 2px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.shop-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-price {
  font-size: 20px;
  font-weight: 800;
  color: #f0f6ff;
  letter-spacing: -0.5px;
}

.shop-price small {
  font-size: 11px;
  font-weight: 500;
  color: #6b7f94;
  margin-left: 3px;
}

.shop-price-usd {
  font-size: 11.5px;
  font-weight: 600;
  color: #60a5fa;
  opacity: 0.85;
}

.shop-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
}

.shop-stock i {
  font-size: 11px;
}

.shop-footer {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.shop-btn-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  font-family: inherit;
}

.shop-btn-cart:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.shop-btn-cart.added {
  background: linear-gradient(135deg, #0f766e, #0d9488);
}


.shop-btn-price {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.shop-btn-price:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.shop-btn-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 14px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.shop-btn-demo:hover {
  border-color: #3b82f6;
  color: #60a5fa;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), var(--blue-glow);
}

.product-card.prod-featured {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(13, 24, 41, 0.9));
}

.prod-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.prod-badge-blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.prod-badge-purple {
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.prod-badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #4ade80;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.prod-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.prod-icon i {
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.prod-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.prod-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.prod-specs i {
  color: var(--green);
  font-size: 11px;
}

.prod-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border-blue);
  color: var(--blue-light);
  border-radius: 10px;
  transition: var(--transition);
}

.prod-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ===================== DEV SECTION ===================== */
.dev-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.dev-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(37, 99, 235, 0.05), transparent);
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
}

.dev-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  text-align: center;
}

.dev-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

.dev-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dev-icon-blue {
  color: var(--blue-light);
}

.dev-icon-teal {
  color: #22d3ee;
}

.dev-icon-purple {
  color: var(--purple-light);
}

.dev-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.dev-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.dev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.dev-tags span {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--blue-light);
  border-radius: 6px;
}

.dev-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.proc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.proc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  max-width: 100px;
}

.proc-arrow {
  color: var(--text-muted);
  font-size: 14px;
  padding: 0 4px;
}

/* ===================== REFERENCES ===================== */
.refs-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.refs-slider-wrap {
  position: relative;
}

.refs-slider {
  overflow: hidden;
}

.refs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-card {
  width: 340px;
  min-width: 340px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  flex-shrink: 0;
  transition: var(--transition);
}

.ref-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ref-img-wrap {
  width: 100%;
  aspect-ratio: 2.2/1;
  position: relative;
  overflow: hidden;
}

.ref-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ref-card:hover .ref-img {
  transform: scale(1.08);
}

.ref-img-wrap .ref-icon {
  position: absolute;
  bottom: -15px;
  right: 18px;
  width: 38px;
  height: 38px;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  margin-bottom: 0;
  z-index: 2;
}

.ref-content {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ref-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.ref-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.ref-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

.ref-services {
  margin: 12px 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

.ref-services strong {
  display: block;
  font-size: 10.5px;
  color: #94a3b8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ref-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ref-services li {
  font-size: 12px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ref-services li i {
  color: #10b981;
  font-size: 11px;
}

.ref-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ref-tags span {
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--blue-light);
  border-radius: 4px;
}

.refs-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.refs-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.refs-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* ===================== WHY SECTION ===================== */
.why-section {
  padding: 96px 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: visible;
  padding-bottom: 22px;
}

.why-img {
  width: 100%;
  height: calc(100% - 22px);
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

.why-card:hover .why-img {
  transform: scale(1.08);
}

.why-img-wrap .why-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(13, 24, 41, 0.9), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 2;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(37,99,235,0.4);
}

.why-content {
  padding: 36px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ===================== CONTACT ===================== */
.contact-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(37, 99, 235, 0.06), transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.ci-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-item strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.ci-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.contact-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.cf-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  resize: none;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--text-muted);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.04);
}

.cf-group select {
  appearance: none;
  cursor: pointer;
}

.cf-group select option {
  background: var(--navy-2);
  color: var(--text-primary);
}

.btn-submit {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  border-radius: 11px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.5);
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 68px 0 0;
  border-top: 1px solid var(--border);
  background: rgba(7, 13, 26, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-mini {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact-mini p {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-contact-mini i {
  color: var(--blue-light);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-slide {
    flex-direction: column;
    padding: calc(var(--nav-height) + 20px) 24px 80px;
    gap: 32px;
  }

  .hero-slide .slide-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-slide .slide-content .slide-eyebrow {
    justify-content: center;
  }

  .hero-slide .slide-content .slide-ctas {
    justify-content: center;
  }

  .hero-slide .slide-content .hero-stats {
    justify-content: center;
  }

  .hero-slide .slide-visual {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ak-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .dev-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-grid {
    gap: 0;
  }

  .trust-sep {
    display: none;
  }
}

@media (max-width: 768px) {

  /* ---- BODY ---- */
  body {
    padding-top: 120px; /* topbar(50) gizleniyor → navbar(50) + iconstrip(52) + 18 pay */
  }

  /* ---- TOP BAR ---- */
  .top-bar {
    display: none;
  }

  /* ---- HEADER / NAVBAR ---- */
  .header-wrapper {
    top: 0 !important;
  }

  .nav-menu,
  .header-actions {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  /* ---- ICON STRIP ---- */
  .icon-strip {
    top: 72px !important; /* navbar yüksekliği */
  }

  .icon-strip-inner {
    justify-content: flex-start;
    padding: 0 8px;
  }

  .is-item {
    padding: 4px 10px;
    font-size: 9px;
  }

  .is-item i {
    font-size: 13px;
  }

  /* ---- HERO ---- */
  .hero-section {
    height: auto;
    min-height: 70vh;
  }

  /* ---- GRIDS ---- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .slide-desc {
    font-size: 14px;
  }

  /* ---- SECTIONS ---- */
  .ak-layout,
  .tm-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .products-grid,
  .dev-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto 32px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .tm-card {
    max-width: 100%;
  }

  .refs-slider-wrap {
    padding: 0;
  }

  .dev-process {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .trust-grid {
    flex-wrap: wrap;
    gap: 8px;
  }

  .trust-sep {
    display: none;
  }
}

@media (max-width: 480px) {

  /* ---- BODY ---- */
  body {
    padding-top: 110px;
  }

  /* ---- HERO ---- */
  .slide-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .hero-section {
    min-height: 60vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hstat-sep {
    display: none;
  }

  .slide-ctas {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  /* ---- ICON-STRIP ---- */
  .is-item {
    padding: 4px 8px;
    font-size: 8.5px;
  }

  .is-item i {
    font-size: 12px;
  }

  /* ---- WHY CARDS ---- */
  .why-img-wrap {
    aspect-ratio: 5/2;
  }

  /* ---- PROCESS ---- */
  .proc-arrow {
    display: none;
  }

  .dev-process {
    flex-direction: column;
    align-items: center;
  }

  /* ---- BUTTONS ---- */
  .btn-odea {
    padding: 9px 16px;
    font-size: 13px;
  }

  /* ---- FOOTER ---- */
  .footer-col {
    padding: 0;
  }

  /* ---- AKINSOFT card ---- */
  .ak-products {
    grid-template-columns: 1fr;
  }
}

/* ===================== UTILITY CLASSES (inline style replacements) ===================== */
/* Icon colors for AKINSOFT product grid */
.ic-amber {
  color: #f59e0b;
}

.ic-red {
  color: #ef4444;
}

.ic-violet {
  color: #8b5cf6;
}

.ic-emerald {
  color: #10b981;
}

.ic-blue {
  color: #3b82f6;
}

.ic-orange {
  color: #f97316;
}

.ic-cyan {
  color: #06b6d4;
}

.ic-pink {
  color: #ec4899;
}

/* Reference card icon colors */
.ref-ic-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.ref-ic-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.ref-ic-violet {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
}

.ref-ic-green {
  background: rgba(16, 185, 129, 0.1);
  color: #4ade80;
}

.ref-ic-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.ref-ic-amber2 {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
}

/* Section description text alignment variants */
.desc-left {
  text-align: left;
  margin-left: 0;
}

.desc-mb32 {
  margin: 0 0 32px;
}

.desc-mb28 {
  margin: 0 0 28px;
}

/* Title alignment */
.title-left {
  text-align: left;
}

/* Contact intro paragraph */
.contact-intro-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Slide trust row (compact badge strip) */
.slide-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.slide-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.slide-trust-row i {
  font-size: 12px;
  color: var(--orange);
}


/* ===================== TOP BAR (TicariMod tarzı) ===================== */
:root {
  --topbar-h: 80px;
  --iconstrip-h: 50px;
  --header-total: calc(var(--topbar-h) + var(--nav-height) + var(--iconstrip-h));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #c05902 0%, #f59e0b 40%, #f59e0b 60%, #c05902 100%);
  z-index: 1100;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.topbar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar a {
  font-size: 12px;
  font-weight: 600;
  color: #1a0500;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: var(--topbar-h);
  transition: background 0.2s;
}

.topbar a:hover {
  background: rgba(0, 0, 0, 0.12);
}

.topbar a i {
  font-size: 11px;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.topbar-panel-btn {
  background: rgba(0, 0, 0, 0.18);
  height: 24px !important;
  padding: 0 12px !important;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 11px !important;
  color: #fff !important;
}

.topbar-panel-btn:hover {
  background: rgba(0, 0, 0, 0.32) !important;
}

/* Navbar positioned below topbar */
.navbar {
  top: var(--topbar-h);
  transition: top 0.3s ease;
}

.navbar.scrolled {
  top: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.scrolled-past .topbar {
  transform: translateY(-100%);
}

body.scrolled-past .navbar {
  top: 0;
}

body.scrolled-past .icon-strip {
  top: var(--nav-height);
}

/* ===================== ICON NAV STRIP ===================== */
.icon-strip {
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-height));
  left: 0;
  right: 0;
  height: var(--iconstrip-h);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.98) 0%, rgba(7, 13, 26, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 980;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: top 0.3s ease;
}

.icon-strip-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
}

.icon-strip-inner::-webkit-scrollbar {
  display: none;
}

.is-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 16px;
  border-radius: 7px;
  color: #8899aa;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.is-item i {
  font-size: 15px;
}

.is-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e0eaf5;
}

.is-item.is-featured {
  color: #fbbf24;
}

.is-item.is-featured:hover {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
}

/* ===================== HERO OFFSET ===================== */
.hero-section {
  margin-top: 0 !important;
}

/* Slide içeriği fixed header'ların (topbar+navbar+iconstrip) altında konumlanır */
.hero-slide {
  padding-top: calc(var(--topbar-h) + var(--nav-height) + var(--iconstrip-h) + 10px) !important;
  padding-bottom: 50px !important;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .topbar {
    display: none;
  }

  .navbar {
    top: 0 !important;
  }

  .icon-strip {
    top: var(--nav-height);
  }
}

/* ===================== CART WIDGET & TOAST ===================== */
.cart-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.45);
  overflow: hidden;
  animation: cartSlideIn 0.35s ease;
}

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

.cart-widget-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cart-badge {
  background: #fff;
  color: #16a34a;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.cart-sep {
  opacity: 0.6;
  margin: 0 2px;
}

.cart-clear {
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  padding: 0 14px;
  height: 100%;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  font-family: inherit;
}

.cart-clear:hover {
  background: rgba(0,0,0,0.38);
}

/* Toast */
.cart-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 3000;
  background: #0f172a;
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #f0f6ff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.cart-toast i {
  color: #22c55e;
  font-size: 16px;
}

.cart-toast.show {
  transform: translateX(0);
}