/* =========================================================
   MINOBOT
   MODERN EDUCATION PLATFORM
   YELLOW • BLACK • WHITE
   ========================================================= */


/* =========================================================
   ROOT / DESIGN SYSTEM
   ========================================================= */

:root {

  --yellow: #facc15;
  --yellow-light: #fde047;
  --yellow-dark: #eab308;

  --black: #111111;
  --black-2: #181818;
  --black-3: #242424;

  --white: #ffffff;
  --off-white: #fafafa;

  --gray-50: #f8f8f8;
  --gray-100: #f1f1f1;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;

  --text: #404040;
  --text-dark: #111111;
  --text-muted: #737373;

  --border: #e5e5e5;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-sm:
    0 4px 14px rgba(0, 0, 0, .06);

  --shadow-md:
    0 12px 35px rgba(0, 0, 0, .09);

  --shadow-lg:
    0 25px 70px rgba(0, 0, 0, .13);

  --container: 1380px;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;

  background: var(--white);
  color: var(--text);

  font-size: 16px;
  line-height: 1.65;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  padding: 14px 24px;

  transition:
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 56px;
}


/* Logo */

.logo {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: var(--black);

  text-decoration: none;

  font-size: 28px;
  font-weight: 900;

  letter-spacing: -.055em;

  transition:
    transform .25s ease,
    color .25s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo span {
  color: var(--yellow-dark);
}


/* Scrolled navbar */

nav.scrolled {
  background: rgba(17, 17, 17, .94);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, .14);
}

nav.scrolled .logo {
  color: var(--white);
}

nav.scrolled .logo span {
  color: var(--yellow);
}


/* Nav links */

.nav-links {
  display: flex;
  align-items: center;

  gap: 5px;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 9px 13px;

  color: var(--gray-600);

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  border-radius: var(--radius-pill);

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.nav-links a:hover {
  color: var(--black);
  background: rgba(250, 204, 21, .16);

  transform: translateY(-1px);
}

nav.scrolled .nav-links a {
  color: #d4d4d4;
}

nav.scrolled .nav-links a:hover {
  color: var(--yellow);
  background: rgba(255,255,255,.08);
}


/* =========================================================
   LANGUAGE SWITCH
   ========================================================= */

.lang-switch {
  display: inline-flex;
  align-items: center;

  gap: 2px;

  padding: 3px;

  background: var(--gray-100);

  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);

  flex-shrink: 0;

  transition:
    background .35s ease,
    border-color .35s ease;
}

.lang-btn {
  appearance: none;
  border: none;
  cursor: pointer;

  padding: 6px 13px;

  border-radius: var(--radius-pill);

  background: transparent;
  color: var(--gray-600);

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;

  transition:
    background .2s ease,
    color .2s ease,
    transform .15s ease;
}

.lang-btn:hover {
  color: var(--black);
}

.lang-btn.active {
  background: var(--yellow);
  color: var(--black);

  box-shadow: 0 3px 10px rgba(250, 204, 21, .35);
}

.lang-btn:active {
  transform: scale(.94);
}

nav.scrolled .lang-switch {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

nav.scrolled .lang-btn {
  color: #d4d4d4;
}

nav.scrolled .lang-btn:hover {
  color: var(--white);
}

nav.scrolled .lang-btn.active {
  background: var(--yellow);
  color: var(--black);
}

@media (max-width: 650px) {

  .lang-switch {
    margin-left: auto;
    margin-right: 10px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE MENU TOGGLE (hamburger)
   ========================================================= */

.nav-toggle {
  display: none;

  position: relative;
  z-index: 210;

  flex-direction: column;
  justify-content: space-between;

  width: 28px;
  height: 20px;

  padding: 0;

  background: none;
  border: none;

  cursor: pointer;
}

.nav-toggle .bar {
  display: block;

  width: 100%;
  height: 3px;

  border-radius: 3px;

  background: var(--black);

  transition:
    transform .3s ease,
    opacity .25s ease,
    background .3s ease;
}

nav.scrolled .nav-toggle .bar {
  background: var(--white);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.nav-backdrop {
  display: none;

  position: fixed;
  inset: 0;

  background: rgba(17, 17, 17, .5);

  z-index: 190;

  opacity: 0;

  transition: opacity .3s ease;
}

body.menu-open .nav-backdrop {
  display: block;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}


/* =========================================================
   SHOP BUTTON
   ========================================================= */

.btn-shop {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 11px 20px;

  border-radius: var(--radius-pill);

  background: var(--yellow);

  color: var(--black) !important;

  border: 2px solid var(--yellow);

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  overflow: hidden;

  box-shadow:
    0 7px 20px rgba(250, 204, 21, .28);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.btn-shop::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.7),
      transparent
    );

  transform: skewX(-20deg);

  transition: left .6s ease;
}

.btn-shop:hover {
  background: var(--yellow-light);

  transform:
    translateY(-3px)
    scale(1.02);

  box-shadow:
    0 14px 32px rgba(250, 204, 21, .38);
}

.btn-shop:hover::before {
  left: 150%;
}

.btn-shop:active {
  transform: scale(.97);
}

.btn-shop span,
.btn-shop svg {
  position: relative;
  z-index: 2;
}

.btn-shop svg {
  transition: transform .25s ease;
}

.btn-shop:hover svg {
  transform:
    rotate(-8deg)
    scale(1.08);
}


/* =========================================================
   GENERAL BUTTONS
   ========================================================= */

.btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 50px;

  padding: 13px 25px;

  border-radius: var(--radius-pill);

  font-size: 15px;
  font-weight: 800;

  text-decoration: none;

  border: 2px solid transparent;

  cursor: pointer;

  overflow: hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

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

.btn:active {
  transform: translateY(-1px) scale(.98);
}


/* Yellow */

.btn-primary {
  background: var(--yellow) !important;
  color: var(--black) !important;

  border-color: var(--yellow);

  box-shadow:
    0 9px 24px rgba(250, 204, 21, .30);
}

.btn-primary::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 65%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.65),
      transparent
    );

  transform: skewX(-20deg);

  transition: left .6s ease;
}

.btn-primary:hover {
  background: var(--yellow-light) !important;

  box-shadow:
    0 16px 35px rgba(250, 204, 21, .40);
}

.btn-primary:hover::before {
  left: 150%;
}


/* Black */

.btn-dark {
  background: var(--black) !important;
  color: var(--white) !important;

  border-color: var(--black);

  box-shadow:
    0 9px 24px rgba(0,0,0,.18);
}

.btn-dark:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;

  border-color: var(--yellow);

  box-shadow:
    0 15px 32px rgba(250, 204, 21, .28);
}


/* Outline */

.btn-outline {
  background: var(--white) !important;

  color: var(--black) !important;

  border-color: var(--black);

  box-shadow:
    0 5px 15px rgba(0,0,0,.06);
}

.btn-outline:hover {
  background: var(--black) !important;
  color: var(--white) !important;

  box-shadow:
    0 12px 25px rgba(0,0,0,.18);
}


/* =========================================================
   HERO
   ========================================================= */

   .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-600);
}

.eyebrow-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;

  padding:
    130px 24px
    80px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(250,204,21,.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(0,0,0,.045),
      transparent 28%
    ),
    var(--white);
}


/* Grid */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(17,17,17,.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(17,17,17,.035) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 90%
    );

  pointer-events: none;
}


/* Decorative yellow circle */

.hero::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(250,204,21,.22),
      transparent 68%
    );

  filter: blur(10px);

  pointer-events: none;

  animation:
    heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(-25px,25px);
  }
}


.hero-inner {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns:
    minmax(0, .9fr)
    minmax(0, 1.1fr);

  gap: 65px;

  align-items: center;
}


/* Hero badge */

.hero-badge {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 7px 14px 7px 8px;

  margin-bottom: 24px;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: var(--radius-pill);

  box-shadow:
    var(--shadow-sm);

  color: var(--gray-600);

  font-size: 13px;
  font-weight: 700;
}

.hero-badge span {
  padding: 5px 10px;

  border-radius: var(--radius-pill);

  background: var(--yellow);

  color: var(--black);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .05em;
}


/* Hero heading */

.hero h1 {
  max-width: 700px;

  font-size:
    clamp(40px, 5vw, 68px);

  line-height: 1.03;

  letter-spacing: -.055em;

  font-weight: 900;

  color: var(--black);

  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--black);

  background: none;

  -webkit-text-fill-color: initial;
}

.hero h1 .accent::after {
  content: "";
  display: block;
  width: 90px;
  height: 7px;
  margin-top: 7px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
}

.hero h1 .dark {
  color: var(--black);
}

.hero h1 .aviation {
  color: var(--black);

  background: none;

  -webkit-text-fill-color: initial;
}


/* Typewriter */

.typewriter-line {
  min-height: 1.5em;

  margin-bottom: 18px;

  font-size:
    clamp(21px, 2.5vw, 30px);

  line-height: 1.3;

  font-weight: 800;

  color: var(--black);
}

.typewriter-line .typed {
  color: var(--black);
}

.cursor {
  display: inline-block;

  width: 3px;
  height: 1em;

  margin-left: 4px;

  background: var(--yellow-dark);

  vertical-align: -.1em;

  animation: blink .8s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


/* Hero paragraph */

.hero p {
  max-width: 580px;

  margin-bottom: 30px;

  color: var(--gray-600);

  font-size: 18px;

  line-height: 1.75;

  transition: opacity 0.3s ease;
}


/* Hero buttons */

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 12px;
}

.hero-actions .btn-primary {
  padding: 15px 30px;

  font-size: 16px;

  border-radius: var(--radius-pill);
}


/* =========================================================
   HERO VISUAL — SADE, SAYFA İLE BÜTÜNLEŞİK 3D DRONE
   ========================================================= */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: auto;
  /* Kart yok, çerçeve yok — sadece drone sahneye yerleşir */
}

/* Arka plan sarı ışıması — hafif ve yumuşak, drone'un arkasında */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 15%;
  background:
    radial-gradient(
      circle,
      rgba(250, 204, 21, 0.20),
      transparent 70%
    );
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: droneAura 7s ease-in-out infinite;
}

@keyframes droneAura {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.5;
  }
}

/* 3D Drone Canvas — tamamen şeffaf, kartsız */
#drone-canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  max-width: 760px;
  margin: auto;

  /* Kart görünümü kaldırıldı */
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;

  cursor: grab;
}

#drone-canvas-container:active {
  cursor: grabbing;
}

#drone-canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
  background: transparent;
}

/* =========================================================
   HERO CODE OVERLAY — Arkada yazılan Python kodları
   ========================================================= */

.code-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  will-change: transform;
}

#code-lines .code-line {
  transition: opacity .25s ease, filter .25s ease;
}

#code-lines {
  position: absolute;
  top: 8%;
  left: 4%;
  right: 4%;
  margin: 0;

  font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: clamp(11px, 1.05vw, 15px);
  line-height: 1.85;
  font-weight: 500;

  color: rgba(17, 17, 17, 0.75);
  text-align: left;
  white-space: pre-wrap;
  word-break: break-word;

  /* Hafif code-editor glow efekti */
  text-shadow:
    0 0 6px rgba(250, 204, 21, 0.35),
    0 0 1px rgba(0, 0, 0, 0.5);
}

/* Her satırın başında küçük bir ">" işareti */
#code-lines .code-line {
  display: block;
  opacity: 0.9;
}

#code-lines .code-line::before {
  content: "› ";
  color: var(--yellow-dark);
  font-weight: 900;
  margin-right: 4px;
}

/* Aktif satır imleci */
#code-lines .code-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  background: var(--yellow);
  vertical-align: -0.18em;
  animation: codeBlink 0.75s step-end infinite;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.8);
}

@keyframes codeBlink {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* Farklı renkler: fonksiyonlar sarı-turuncu, noktalı virgüller soluk */
#code-lines .fn { color: #b45309; font-weight: 700; }   /* drone.takeoff gibi */
#code-lines .kw { color: #7c3aed; font-weight: 700; }   /* import, def, while */
#code-lines .comment { color: #6b7280; font-style: italic; }
#code-lines .punct { color: rgba(17,17,17,0.35); }

/* Drone canvas'ı kodların ÜSTÜNDE kalsın */
#drone-canvas-container {
  position: relative;
  z-index: 2;
}

/* Mobil uyum */
@media (max-width: 650px) {
  #code-lines {
    top: 4%;
    left: 3%;
    right: 3%;
    font-size: 10px;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.55);
  }
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

section {
  padding: 90px 24px;
}

.section-inner {
  width: 100%;

  max-width: var(--container);

  margin: 0 auto;
}

.section-header {
  max-width: 760px;

  margin:
    0 auto
    55px;

  text-align: center;
}

.section-header .tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 14px;

  margin-bottom: 14px;

  border-radius: var(--radius-pill);

  background:
    rgba(250,204,21,.18);

  color:
    #8a6800;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 14px;

  color: var(--black);

  font-size:
    clamp(30px, 4vw, 46px);

  line-height: 1.1;

  letter-spacing: -.045em;

  font-weight: 900;
}

.section-header p {
  max-width: 650px;

  margin: auto;

  color: var(--gray-600);

  font-size: 17px;

  line-height: 1.75;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.products {
  position: relative;

  background:
    var(--gray-50);

  border-top:
    1px solid var(--gray-100);

  border-bottom:
    1px solid var(--gray-100);
}

.products-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  max-width: var(--container);

  margin: auto;

  align-items: stretch;
}


/* Product card */

.product-item {
  display: flex;

  flex-direction: column;

  height: 100%;

  overflow: hidden;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: var(--radius-lg);

  box-shadow:
    var(--shadow-sm);

  opacity: 0;

  transform:
    translateY(30px);

  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease;
}

.product-item.visible {
  opacity: 1;

  transform:
    translateY(0);
}

.product-item:hover {
  box-shadow:
    var(--shadow-lg);

  transform:
    translateY(-5px);
}


/* Product image */

.product-item .product-image {
  position: relative;

  min-height: 260px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 26px;

  overflow: hidden;

  border-radius:
    var(--radius-lg)
    var(--radius-lg)
    0
    0;
}

.product-item:not(.reverse) .product-image {
  background:
    linear-gradient(
      145deg,
      #fffef2,
      #fff8c7
    );
}

.product-item.reverse .product-image {
  background:
    linear-gradient(
      145deg,
      #f4f4f4,
      #e8e8e8
    );
}


/* Product image */

.product-item .product-image img {
  position: relative;

  z-index: 2;

  width: 100%;
  height: 100%;

  max-height: 210px;

  object-fit: contain;

  display: block;

  border-radius: var(--radius-md);

  cursor: zoom-in;

  filter:
    drop-shadow(
      0 22px 32px rgba(0,0,0,.15)
    );

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    filter .45s ease;
}

.product-item .product-image img:hover {
  transform: scale(1.045);

  filter:
    drop-shadow(
      0 28px 45px rgba(0,0,0,.20)
    );
}

.product-item .product-image img.zoomed {
  transform: scale(1.12);

  cursor: zoom-out;
}


/* Product number */

.product-item .product-index {
  position: absolute;

  left: 22px;
  bottom: 15px;

  z-index: 1;

  color:
    rgba(17,17,17,.08);

  font-size: 60px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.08em;

  pointer-events: none;

  user-select: none;
}


/* Age badge */

.product-item .age-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 4;

  padding: 7px 14px;

  border-radius: var(--radius-pill);

  background: var(--black);

  color: var(--yellow);

  font-size: 12px;

  font-weight: 800;

  box-shadow:
    0 5px 14px rgba(0,0,0,.16);
}

.product-item:nth-child(even) .age-badge {
  background: var(--yellow);

  color: var(--black);
}


/* Product body */

.product-item .product-body {
  display: flex;

  flex: 1;

  flex-direction: column;

  justify-content: flex-start;

  padding:
    32px 32px 30px;
}


/* Label */

.product-item .card-label {
  margin-bottom: 8px;

  color: var(--yellow-dark);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: .14em;

  text-transform: uppercase;
}


/* Product title */

.product-item h3 {
  margin-bottom: 12px;

  color: var(--black);

  font-size:
    clamp(22px, 2vw, 26px);

  line-height: 1.15;

  letter-spacing: -.045em;

  font-weight: 900;
}


/* Product description */

.product-item .product-desc {
  max-width: none;

  margin-bottom: 18px;

  color: var(--gray-600);

  font-size: 15px;

  line-height: 1.65;
}


/* Product list */

.product-item .product-list {
  display: flex;

  flex-direction: column;

  gap: 9px;

  margin-bottom: 22px;

  list-style: none;
}

.product-item .product-list li {
  position: relative;

  padding-left: 28px;

  color: var(--gray-700);

  font-size: 14.5px;

  line-height: 1.5;

  font-weight: 500;
}

.product-item .product-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 2px;

  width: 21px;
  height: 21px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--yellow);

  color: var(--black);

  font-size: 11px;

  font-weight: 900;
}


/* Product footer */

.product-item .card-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: auto;
}


/* Tags */

.product-item .tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.product-item .tag-item {
  padding: 6px 12px;

  border-radius: var(--radius-pill);

  background: var(--gray-100);

  color: var(--gray-600);

  font-size: 13px;

  font-weight: 700;
}


/* Discover button */

.product-item .go {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 40px;

  padding: 9px 16px;

  border-radius: var(--radius-pill);

  background: var(--black);

  color: var(--white);

  border: 2px solid var(--black);

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;

  box-shadow:
    0 7px 17px rgba(0,0,0,.13);

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.product-item .go:hover {
  background: var(--yellow);

  color: var(--black);

  border-color: var(--yellow);

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 25px rgba(250,204,21,.30);
}

.product-item .go span {
  transition:
    transform .25s ease;
}

.product-item .go:hover span {
  transform:
    translateX(5px);
}


/* =========================================================
   FUTURE CLASSROOM LAB
   ========================================================= */

.fcl {
  position: relative;

  overflow: hidden;

  background: var(--yellow);

  padding:
    100px 24px;
}

.fcl::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: -220px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.20);
}

.fcl-inner {
  position: relative;

  z-index: 2;

  max-width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns:
    1.05fr
    .95fr;

  gap: 70px;

  align-items: center;
}

.fcl-visual {
  position: relative;
}

.fcl-visual::after {
  content: "";

  position: absolute;

  inset: 10px;

  border:
    2px solid rgba(17,17,17,.12);

  border-radius: var(--radius-lg);

  pointer-events: none;
}

.fcl-visual img {
  width: 100%;

  display: block;

  border-radius: var(--radius-lg);

  filter:
    drop-shadow(
      0 25px 40px rgba(0,0,0,.20)
    );

  cursor: zoom-in;

  transition:
    transform .4s ease;
}

.fcl-visual img.zoomed {
  transform: scale(1.05);

  cursor: zoom-out;
}

.fcl-content h2 {
  margin-bottom: 17px;

  color: var(--black);

  font-size:
    clamp(32px, 4vw, 48px);

  line-height: 1.1;

  letter-spacing: -.045em;

  font-weight: 900;
}

.fcl-content > p {
  margin-bottom: 27px;

  color: rgba(17,17,17,.78);

  font-size: 18px;

  line-height: 1.75;
}

.fcl-list {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin-bottom: 32px;

  list-style: none;
}

.fcl-list li {
  position: relative;

  padding-left: 34px;

  color: var(--black);

  font-size: 16px;

  line-height: 1.6;

  font-weight: 600;
}

.fcl-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 1px;

  width: 22px;
  height: 22px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--black);

  color: var(--yellow);

  font-size: 11px;

  font-weight: 900;
}


/* =========================================================
   LEARNING PATH
   ========================================================= */

.path {
  position: relative;

  overflow: hidden;

  background: var(--black);

  padding:
    100px 24px;
}

.path::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -200px;
  top: -200px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(250,204,21,.16),
      transparent 70%
    );
}

.path .section-header {
  position: relative;

  z-index: 2;
}

.path .section-header .tag {
  background:
    rgba(250,204,21,.14);

  color: var(--yellow);
}

.path .section-header h2 {
  color: var(--white);
}

.path .section-header p {
  color: #a3a3a3;
}


/* Path */

.path-steps {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  max-width: 1200px;

  margin: auto;

  gap: 12px;
}

.path-steps::before {
  content: "";

  position: absolute;

  top: 43px;

  left: 7%;
  right: 7%;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--yellow),
      transparent
    );

  opacity: .45;
}


/* Step */

.step {
  position: relative;

  z-index: 2;

  flex: 1;

  min-width: 125px;

  text-align: center;

  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .55s ease,
    transform .55s ease;
}

.step.visible {
  opacity: 1;

  transform:
    translateY(0);
}

.step-num {
  position: relative;

  width: 86px;
  height: 86px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin:
    0 auto
    16px;

  padding: 12px;

  overflow: hidden;

  border-radius: 23px;

  background:
    var(--black-3);

  border:
    2px solid rgba(250,204,21,.35);

  box-shadow:
    0 10px 30px rgba(0,0,0,.3);
}

.step-num::after {
  content: attr(data-n);

  position: absolute;

  right: -5px;
  top: -5px;

  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--yellow);

  color: var(--black);

  font-size: 11px;

  font-weight: 900;
}

.step-num img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 12px rgba(0,0,0,.25)
    );
}

.step h4 {
  margin-bottom: 4px;

  color: var(--white);

  font-size: 15px;

  font-weight: 800;
}

.step p {
  color: #a3a3a3;

  font-size: 13px;

  line-height: 1.45;
}


/* =========================================================
   FEATURES
   ========================================================= */

#ozellikler {
  background: var(--white);
}

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  max-width: var(--container);

  margin: auto;
}

.feature {
  position: relative;

  padding: 30px 28px;

  background: var(--white);

  border:
    1px solid var(--gray-200);

  border-radius: var(--radius-md);

  box-shadow:
    var(--shadow-sm);

  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .55s ease,
    transform .55s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.feature.visible {
  opacity: 1;

  transform:
    translateY(0);
}

.feature:hover {
  border-color:
    rgba(250,204,21,.55);

  box-shadow:
    0 18px 40px rgba(0,0,0,.10);

  transform:
    translateY(-5px);
}


/* Feature icon */

.feature .f-icon {
  width: 54px;
  height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 16px;

  background:
    rgba(250,204,21,.16);

  font-size: 24px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.feature:hover .f-icon {
  transform:
    rotate(-4deg)
    scale(1.06);

  background:
    var(--yellow);
}

.feature h3 {
  margin-bottom: 8px;

  color: var(--black);

  font-size: 19px;

  line-height: 1.3;

  font-weight: 800;
}

.feature p {
  color: var(--gray-600);

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  padding:
    90px 24px;
}

.cta-box {
  position: relative;

  max-width: 1050px;

  margin: auto;

  padding:
    70px 40px;

  overflow: hidden;

  text-align: center;

  color: var(--white);

  background:
    var(--black);

  border-radius: var(--radius-xl);

  box-shadow:
    0 30px 80px rgba(0,0,0,.18);
}

.cta-box::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -130px;
  top: -180px;

  border-radius: 50%;

  background:
    rgba(250,204,21,.15);
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -100px;
  bottom: -110px;

  border-radius: 50%;

  background:
    rgba(250,204,21,.08);
}

.cta-box h2 {
  position: relative;

  z-index: 2;

  margin-bottom: 14px;

  color: var(--white);

  font-size:
    clamp(29px, 4vw, 44px);

  line-height: 1.1;

  letter-spacing: -.04em;

  font-weight: 900;
}

.cta-box p {
  position: relative;

  z-index: 2;

  max-width: 600px;

  margin:
    0 auto
    30px;

  color: #bdbdbd;

  font-size: 17px;

  line-height: 1.7;
}

.cta-box .btn-primary {
  position: relative;

  z-index: 2;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding:
    60px 24px
    30px;

  background:
    var(--black);

  color:
    #a3a3a3;

  border-top:
    1px solid #292929;
}

.footer-inner {
  max-width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr;

  gap: 60px;
}

.footer-brand .logo {
  color: var(--white);

  margin-bottom: 12px;
}

.footer-brand .logo span {
  color: var(--yellow);
}

.footer-brand p {
  max-width: 320px;

  color: #929292;

  font-size: 14px;

  line-height: 1.7;
}

.footer-links h5 {
  margin-bottom: 15px;

  color: var(--white);

  font-size: 14px;

  font-weight: 800;
}

.footer-links a {
  display: block;

  width: fit-content;

  margin-bottom: 9px;

  color: #999;

  font-size: 14px;

  text-decoration: none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-links a:hover {
  color: var(--yellow);

  transform:
    translateX(3px);
}

.footer-bottom {
  max-width: var(--container);

  margin:
    40px auto
    0;

  padding-top: 20px;

  border-top:
    1px solid #292929;

  text-align: center;

  color: #777;

  font-size: 13px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .hero-inner {
    gap: 35px;
  }

  .product-item .product-body {
    padding:
      26px 24px 24px;
  }

  .fcl-inner {
    gap: 40px;
  }

}


@media (max-width: 900px) {

  nav {
    padding:
      10px 18px;
  }

  .nav-inner {
    min-height: 52px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    z-index: 200;

    width: min(300px, 82vw);
    height: 100vh;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 4px;

    padding: 90px 26px 30px;

    background: var(--black);

    box-shadow: -10px 0 40px rgba(0, 0, 0, .25);

    transition: right .35s ease;
  }

  .nav-links.mobile-open {
    right: 0;
  }

  .nav-links a {
    padding: 15px 6px;

    color: #e5e5e5;

    font-size: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    border-radius: 0;
  }

  .nav-links a:hover {
    background: none;
    color: var(--yellow);

    transform: none;
  }

  nav.scrolled .nav-links a {
    color: #e5e5e5;
  }

  .nav-links .btn-shop {
    margin-top: 18px;

    justify-content: center;

    border-bottom: none;
  }

  .btn-shop {
    padding:
      9px 14px;
  }


  /* Hero */

  .hero {
    padding:
      110px 20px
      65px;
  }

  .hero-inner {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 45px;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 .accent::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 650px;

    width: 100%;

    margin:
      auto;
  }


  /* Products */

  .products-grid {
    gap: 20px;
  }

  .product-item .product-image {
    min-height: 220px;
  }

  .product-item .product-body {
    padding:
      24px 22px 22px;
  }


  /* FCL */

  .fcl-inner {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .fcl-visual {
    max-width: 700px;

    margin:
      auto;
  }


  /* Features */

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


  /* Footer */

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

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


  /* Path */

  .path-steps {
    flex-wrap: wrap;

    justify-content: center;

    gap:
      28px 12px;
  }

  .path-steps::before {
    display: none;
  }

  .step {
    flex:
      0 0 calc(33.333% - 15px);
  }

}


@media (max-width: 650px) {

  body {
    font-size: 15px;
  }


  /* Navigation */

  nav {
    padding:
      9px 14px;
  }

  .logo {
    font-size: 24px;
  }


  /* Hero */

  .hero {
    min-height: auto;

    padding:
      105px 16px
      55px;
  }

  .hero-badge {
    font-size: 11px;

    padding:
      6px 10px 6px 6px;
  }

  .hero-badge span {
    padding:
      4px 8px;
  }

  .hero h1 {
    font-size:
      clamp(36px, 11vw, 52px);
  }

  .hero h1 .accent::after {
    width: 65px;
    height: 5px;
  }

  .typewriter-line {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;

    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  #drone-canvas-container {
    aspect-ratio: 1 / .95;
    border-radius: var(--radius-lg);
  }


  /* Sections */

  section {
    padding:
      65px 16px;
  }

  .section-header {
    margin-bottom:
      38px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 15px;
  }


  /* Products */

  .products {
    padding:
      65px 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .product-item {
    border-radius:
      var(--radius-md);
  }

  .product-item .product-image {
    min-height: 230px;
    height: 230px;

    padding: 22px;

    border-radius:
      var(--radius-md)
      var(--radius-md)
      0
      0;
  }

  .product-item .product-image img {
    max-height: 190px;
  }

  .product-item .age-badge {
    top: 13px;
    right: 13px;

    font-size: 11px;

    padding:
      6px 11px;
  }

  .product-item .product-index {
    font-size: 52px;
  }

  .product-item .product-body {
    padding:
      24px 22px 26px;
  }

  .product-item h3 {
    font-size: 24px;
  }

  .product-item .product-desc {
    font-size: 15px;

    line-height: 1.6;
  }

  .product-item .product-list {
    gap: 11px;
  }

  .product-item .product-list li {
    font-size: 15.5px;
  }

  .product-item .card-footer {
    align-items: stretch;

    flex-direction: column;
  }

  .product-item .tags {
    width: 100%;
  }

  .product-item .go {
    width: 100%;
  }


  /* FCL */

  .fcl {
    padding:
      70px 16px;
  }

  .fcl-content h2 {
    font-size: 32px;
  }

  .fcl-content > p {
    font-size: 16px;
  }

  .fcl-list li {
    font-size: 15px;
  }


  /* Path */

  .path {
    padding:
      70px 16px;
  }

  .step {
    flex:
      0 0 calc(50% - 8px);
  }

  .step-num {
    width: 76px;
    height: 76px;
  }


  /* Features */

  .features-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .feature {
    padding:
      25px 22px;
  }


  /* CTA */

  .cta {
    padding:
      65px 14px;
  }

  .cta-box {
    padding:
      50px 22px;

    border-radius:
      var(--radius-lg);
  }

  .cta-box h2 {
    font-size: 29px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .cta-box .btn {
    width: 100%;
  }


  /* Footer */

  footer {
    padding:
      50px 20px
      25px;
  }

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

    gap: 35px;
  }

  .footer-brand {
    grid-column:
      auto;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .hero h1 {
    font-size: 35px;
  }

  .typewriter-line {
    font-size: 20px;
  }

  .product-item h3 {
    font-size: 25px;
  }

  .product-item .product-desc {
    font-size: 15px;
  }

  .product-item .product-list li {
    font-size: 14.5px;
  }

  .step {
    flex:
      0 0 100%;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline:
    3px solid var(--yellow-dark);

  outline-offset:
    3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: .01ms !important;
  }
}

/* =========================================================
   MENTOR WHATSAPP BUTTON - GELİŞTİRİLMİŞ
   ========================================================= */

.mentor-wrapper {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Ana Buton */
.whatsapp-float {
    width: 72px;
    height: 72px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    border: 3px solid #ffffff;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.92);
}

/* Mentor Avatar */
.mentor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* WhatsApp Badge */
.whatsapp-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: #25D366;
    border-radius: 50%;
    padding: 4px;
    border: 2.5px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-badge path {
    fill: #ffffff;
}

/* =========================================================
   DROPDOWN MENÜ - HOVER + TIKLAMA DESTEKLİ
   ========================================================= */

.mentor-dropdown {
    position: absolute;
    bottom: 85px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
    transform: scale(0.9) translateY(10px);
    z-index: 1;
}

/* Hover ile açılma - masaüstü için */
.mentor-wrapper:hover .mentor-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
}

/* Tıklama ile açılma - tüm cihazlar için */
.mentor-wrapper.active .mentor-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
}

/* Hover alanını genişlet */
.mentor-wrapper::after {
    content: '';
    position: absolute;
    bottom: 65px;
    right: 0;
    width: 200px;
    height: 30px;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

/* Her bir seçenek */
.mentor-option {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #1a1a2e;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    white-space: nowrap;
    min-width: 190px;
    justify-content: flex-start;
    letter-spacing: 0.3px;
}

.mentor-option:hover {
    transform: translateX(-5px) scale(1.03);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* Her seçeneğin farklı renkleri */
.option-1:hover {
    border-left: 5px solid #4CAF50;
    background: #f0faf0;
}

.option-2:hover {
    border-left: 5px solid #FF9800;
    background: #fff8f0;
}

.option-3:hover {
    border-left: 5px solid #2196F3;
    background: #f0f7ff;
}

.option-icon {
    font-size: 22px;
    line-height: 1;
}

.option-text {
    font-size: 16px;
    font-weight: 700;
}

/* =========================================================
   NABIZ ATIŞI
   ========================================================= */

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3.5px solid rgba(37, 211, 102, 0.2);
    animation: mentorPulse 2.8s ease-in-out infinite;
    z-index: -1;
}

@keyframes mentorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Dışarı tıklandığında kapanması için overlay */
.mentor-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
}

.mentor-wrapper.active .mentor-overlay {
    display: block;
}

/* === PRODUCT IMAGE SIZE FIX (GIF uyumlu) === */
.product-item .product-image {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}
.product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.step-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fcl-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero h1 .accent-orange,
.accent-orange {
  color: #ea580c;
}


/* === THEME TOGGLE & DARK/LIGHT === */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 6px;
  padding: 0;
  border: 1.5px solid var(--border, #e5e5e5);
  border-radius: 999px;
  background: var(--off-white, #fafafa);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: #fb923c;
}
.theme-icon {
  font-size: 18px;
  line-height: 1;
  position: absolute;
}
.theme-icon-moon { display: none; }
.theme-icon-sun { display: inline; }
html[data-theme="dark"] .theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: inline; }
html[data-theme="dark"] .theme-toggle {
  background: #1a1520;
  border-color: rgba(251, 146, 60, 0.35);
}

html[data-theme="light"] {
  color-scheme: light;
}
html[data-theme="light"] body {
  background: #fafafa;
  color: var(--text, #404040);
}
html[data-theme="light"] .hero {
  background: linear-gradient(160deg, #fffbeb 0%, #ffffff 45%, #f8fafc 100%);
}

/* ---- DARK: sıcak lacivert + turuncu vurgu (tam siyah değil) ---- */
html[data-theme="dark"] {
  color-scheme: dark;
  --yellow: #fbbf24;
  --yellow-light: #fde68a;
  --yellow-dark: #f59e0b;
  --orange: #fb923c;
  --orange-bright: #fdba74;
  --black: #f1e8dc;
  --black-2: #1a1520;
  --black-3: #241c28;
  --white: #14101a;
  --off-white: #1a1520;
  --gray-50: #14101a;
  --gray-100: #1e1824;
  --gray-200: #2a2230;
  --gray-300: #3d3448;
  --gray-500: #b8a99a;
  --gray-600: #d4c4b0;
  --gray-700: #f1e8dc;
  --text: #e8dcc8;
  --text-dark: #fff7ed;
  --text-muted: #b8a99a;
  --border: #3d2e28;
}

html[data-theme="dark"] body {
  background: #16121c !important;
  color: #f1e8dc !important;
}

html[data-theme="dark"] #nav {
  background: rgba(20, 16, 26, 0.92) !important;
  border-bottom: 1px solid rgba(251, 146, 60, 0.2) !important;
  backdrop-filter: blur(14px);
}
html[data-theme="dark"] .logo { color: #fff7ed !important; }
html[data-theme="dark"] .logo span { color: #fb923c !important; }

html[data-theme="dark"] .nav-links a { color: #c4b5a5 !important; }
html[data-theme="dark"] .nav-links a:hover {
  color: #fff7ed !important;
  background: rgba(251, 146, 60, 0.15) !important;
}

html[data-theme="dark"] .lang-switch {
  background: rgba(251, 146, 60, 0.08) !important;
  border-color: rgba(251, 146, 60, 0.25) !important;
}
html[data-theme="dark"] .lang-btn { color: #a89b8c !important; }
html[data-theme="dark"] .lang-btn.active {
  background: #fb923c !important;
  color: #1a1520 !important;
}
html[data-theme="dark"] .nav-toggle .bar { background: #fdba74 !important; }

/* Hero — sıcak koyu + turuncu glow */
html[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(251, 146, 60, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 45%),
    linear-gradient(160deg, #1a1520 0%, #1e1828 40%, #241c2e 100%) !important;
}
html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero h1 .accent { color: #fff7ed !important; }
html[data-theme="dark"] .hero h1 .accent-orange,
html[data-theme="dark"] .accent-orange { color: #fb923c !important; }
html[data-theme="dark"] .hero p,
html[data-theme="dark"] .eyebrow-row { color: #c4b5a5 !important; }
html[data-theme="dark"] .eyebrow-dot { background: #fb923c !important; }
html[data-theme="dark"] .typewriter-line .typed { color: #fdba74 !important; }
html[data-theme="dark"] .cursor { background: #fb923c !important; }

html[data-theme="dark"] .btn-ghost {
  color: #f1e8dc !important;
  border-color: rgba(251, 146, 60, 0.35) !important;
}
html[data-theme="dark"] .btn-ghost:hover {
  background: rgba(251, 146, 60, 0.12) !important;
  border-color: #fb923c !important;
}
html[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #fb923c, #f59e0b) !important;
  color: #1a1520 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.35) !important;
}
html[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(251, 146, 60, 0.45) !important;
}
html[data-theme="dark"] .btn-dark {
  background: #2a2230 !important;
  color: #f1e8dc !important;
  border-color: rgba(251, 146, 60, 0.3) !important;
}
html[data-theme="dark"] .btn-dark:hover {
  background: #fb923c !important;
  color: #1a1520 !important;
}

/* Ürünler — koyu ama gri-siyah değil, sıcak kartlar; GIF alanları */
html[data-theme="dark"] .products {
  background: #1a1520 !important;
}
html[data-theme="dark"] .section-header h2 { color: #fff7ed !important; }
html[data-theme="dark"] .section-header p { color: #c4b5a5 !important; }
html[data-theme="dark"] .section-header .tag {
  background: rgba(251, 146, 60, 0.15) !important;
  color: #fdba74 !important;
  border-color: rgba(251, 146, 60, 0.3) !important;
}

html[data-theme="dark"] .product-item {
  background: #221c2a !important;
  border: 1px solid rgba(251, 146, 60, 0.18) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25) !important;
}
html[data-theme="dark"] .product-item:hover {
  border-color: rgba(251, 146, 60, 0.45) !important;
  box-shadow: 0 12px 36px rgba(251, 146, 60, 0.15) !important;
}
html[data-theme="dark"] .product-item h3 { color: #fff7ed !important; }
html[data-theme="dark"] .product-item .product-desc,
html[data-theme="dark"] .product-item .product-list li { color: #c4b5a5 !important; }
html[data-theme="dark"] .product-item .product-image {
  background: linear-gradient(160deg, #1e1824, #2a2230) !important;
}
html[data-theme="dark"] .product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
html[data-theme="dark"] .product-item .tag-item {
  background: rgba(251, 146, 60, 0.12) !important;
  color: #fdba74 !important;
  border-color: rgba(251, 146, 60, 0.25) !important;
}
html[data-theme="dark"] .product-item .go {
  color: #fb923c !important;
  font-weight: 800;
}
html[data-theme="dark"] .product-item .go:hover { color: #fdba74 !important; }
html[data-theme="dark"] .product-item .card-label { color: #fb923c !important; }
html[data-theme="dark"] .product-item .age-badge {
  background: rgba(26, 21, 32, 0.9) !important;
  color: #fdba74 !important;
  border-color: rgba(251, 146, 60, 0.4) !important;
}
html[data-theme="dark"] .product-item .product-list li::before {
  background: rgba(251, 146, 60, 0.2) !important;
  color: #fb923c !important;
}
html[data-theme="dark"] .product-item .product-index {
  color: rgba(251, 146, 60, 0.12) !important;
}

html[data-theme="dark"] section,
html[data-theme="dark"] .path,
html[data-theme="dark"] #ozellikler {
  background: #16121c !important;
}

html[data-theme="dark"] .fcl {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(251, 146, 60, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #1a1520, #221828) !important;
}
html[data-theme="dark"] .fcl-content h2 { color: #fff7ed !important; }
html[data-theme="dark"] .fcl-content > p,
html[data-theme="dark"] .fcl-list li { color: #c4b5a5 !important; }
html[data-theme="dark"] .fcl-list li::before {
  background: rgba(251, 146, 60, 0.2) !important;
  color: #fb923c !important;
}

html[data-theme="dark"] .step,
html[data-theme="dark"] .feature {
  background: #221c2a !important;
  border: 1px solid rgba(251, 146, 60, 0.15) !important;
}
html[data-theme="dark"] .step:hover,
html[data-theme="dark"] .feature:hover {
  border-color: rgba(251, 146, 60, 0.4) !important;
}
html[data-theme="dark"] .step h4,
html[data-theme="dark"] .feature h3 { color: #fff7ed !important; }
html[data-theme="dark"] .step p,
html[data-theme="dark"] .feature p { color: #c4b5a5 !important; }
html[data-theme="dark"] .step-num,
html[data-theme="dark"] .feature .f-icon {
  background: #2a2230 !important;
  border-color: rgba(251, 146, 60, 0.25) !important;
}
html[data-theme="dark"] .step-num::after {
  background: #fb923c !important;
  color: #1a1520 !important;
}
html[data-theme="dark"] .path-steps::before {
  background: linear-gradient(90deg, transparent, #fb923c, transparent) !important;
  opacity: 0.5 !important;
}

html[data-theme="dark"] .cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a1520, #221828, #1a1520) !important;
}
html[data-theme="dark"] .cta-box {
  background: #221c2a !important;
  border: 1px solid rgba(251, 146, 60, 0.25) !important;
}
html[data-theme="dark"] .cta-box h2 { color: #fff7ed !important; }
html[data-theme="dark"] .cta-box p { color: #c4b5a5 !important; }

html[data-theme="dark"] footer {
  background: #120e16 !important;
  border-top: 1px solid rgba(251, 146, 60, 0.15) !important;
  color: #a89b8c !important;
}
html[data-theme="dark"] .footer-links h5,
html[data-theme="dark"] .footer-brand .logo { color: #fff7ed !important; }
html[data-theme="dark"] .footer-brand .logo span { color: #fb923c !important; }
html[data-theme="dark"] .footer-links a { color: #a89b8c !important; }
html[data-theme="dark"] .footer-links a:hover { color: #fb923c !important; }

html[data-theme="dark"] .mentor-option {
  background: #221c2a !important;
  color: #f1e8dc !important;
  border-color: rgba(251, 146, 60, 0.2) !important;
}
html[data-theme="dark"] .option-text { color: #f1e8dc !important; }

html[data-theme="dark"] .code-overlay .kw { color: #fb923c !important; }
html[data-theme="dark"] .code-overlay .fn { color: #fdba74 !important; }
html[data-theme="dark"] #code-lines .code-line::before { color: #fb923c !important; }
html[data-theme="dark"] #code-lines .code-cursor { background: #fb923c !important; }

/* Dark modda Mağaza butonu metni beyaz */
html[data-theme="dark"] .btn-shop,
html[data-theme="dark"] .btn-shop span {
  color: #ffffff !important;
}

/* İkon (SVG) da beyaz olsun */
html[data-theme="dark"] .btn-shop svg {
  stroke: #ffffff !important;
}

/* Hover durumunda da beyaz kalsın */
html[data-theme="dark"] .btn-shop:hover,
html[data-theme="dark"] .btn-shop:hover span {
  color: #ffffff !important;
}

html[data-theme="dark"] .btn-shop:hover svg {
  stroke: #ffffff !important;
}

@media (max-width: 900px) {
  html[data-theme="dark"] .nav-links {
    background: #14101a !important;
  }
  html[data-theme="dark"] .nav-links a {
    color: #f1e8dc !important;
    border-bottom-color: rgba(251, 146, 60, 0.12) !important;
  }
  .product-item .product-image { height: 260px; }
}
@media (max-width: 650px) {
  .product-item .product-image { height: 220px; }
}

