/* ═══════════════════════════════════════════════════════════════
   TUDEFIX DARK THEME OVERRIDE
   Loads after main.css — overrides Bootstrap + bootsnav visuals
   Color system matches tudefix_responsive.html design spec
═══════════════════════════════════════════════════════════════ */

:root {
  --bg-0:       #050810;
  --bg-1:       #0A0F1C;
  --bg-2:       #0F1729;
  --bg-card:    #121A2E;
  --border:     rgba(255,255,255,.08);
  --border-h:   rgba(0,180,255,.30);

  --brand-1:    #00B4FF;
  --brand-2:    #0078FF;
  --brand-3:    #0050C8;
  --brand-glow: rgba(0,180,255,.45);

  --text:       #E6EEF8;
  --text-dim:   #9BAACB;
  --text-muted: #6B7896;

  --accent:     #00E5FF;
  --warn:       #FFB020;
  --good:       #22C55E;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  22px;

  --shadow-sm:  0 4px 14px rgba(0,0,0,.30);
  --shadow:     0 16px 48px rgba(0,0,0,.45);
  --shadow-lg:  0 28px 80px rgba(0,0,0,.55);
  --glow:       0 0 40px rgba(0,180,255,.35);
}

/* ─────────────────────────────────────────
   GLOBAL
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
}

/* Animated radial gradient background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -10%,  rgba(0,120,255,.18), transparent 60%),
    radial-gradient(800px 500px at 88%  110%, rgba(0,180,255,.14), transparent 60%),
    linear-gradient(180deg, #050810 0%, #0A0F1C 60%, #050810 100%);
}

/* Dot grid overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,180,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

a { text-decoration: none; }

/* ─────────────────────────────────────────
   PRELOADER
───────────────────────────────────────── */
.page-preloader {
  background: var(--bg-0) !important;
}
.page-preloader .spinner > div {
  background: var(--brand-1) !important;
}

/* ─────────────────────────────────────────
   NAVBAR (bootsnav override)
───────────────────────────────────────── */
nav.navbar.bootsnav,
.bootsnav.navbar-default,
.bootsnav.navbar-fixed {
  background: rgba(8,12,22,.85) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
}

.bootsnav.navbar-fixed.sticked {
  background: rgba(8,12,22,.96) !important;
}

/* Brand logo */
.bootsnav .navbar-brand img.logo {
  filter: brightness(1.05);
}

/* Nav links */
.bootsnav ul.nav > li > a {
  color: var(--text-dim) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.bootsnav ul.nav > li > a:hover,
.bootsnav ul.nav > li.active > a,
.bootsnav ul.nav > li.scroll.active > a {
  color: #fff !important;
  background: rgba(255,255,255,.05) !important;
  border-radius: 8px;
}

/* Download button in navbar */
.navbar .btn-blue.navbar-btn {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border: none !important;
  border-radius: 10px;
  font-weight: 700;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0,120,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.navbar .btn-blue.navbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,120,255,.55);
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
}

/* Dropdown menus */
.bootsnav .dropdown-menu,
.bootsnav ul.dropdown-menu {
  background: rgba(10,15,28,.97) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(18px);
}
.bootsnav .dropdown-menu a,
.bootsnav ul.dropdown-menu li a {
  color: var(--text-dim) !important;
}
.bootsnav .dropdown-menu a:hover,
.bootsnav ul.dropdown-menu li a:hover {
  background: rgba(0,180,255,.07) !important;
  color: var(--brand-1) !important;
}

/* Sectors dropdown */
.sectors-menu {
  background: rgba(8,12,22,.97) !important;
  border: 1px solid var(--border) !important;
}
.sector-item {
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  background: rgba(18,26,46,.5) !important;
  transition: border-color .2s, background .2s;
}
.sector-item:hover {
  border-color: var(--border-h) !important;
  background: rgba(0,180,255,.07) !important;
}
.sector-item strong { color: var(--text) !important; }
.sector-item small  { color: var(--text-muted) !important; }
.sector-icon {
  background: rgba(0,180,255,.12) !important;
  border-color: rgba(0,180,255,.25) !important;
}
.sector-icon .material-icons { color: var(--brand-1) !important; }

/* Mobile hamburger — hidden on desktop, matches bootsnav selector specificity */
nav.navbar.bootsnav .navbar-toggle { display: none !important; }
@media (max-width: 991px) {
  nav.navbar.bootsnav .navbar-toggle { display: inline-block !important; }
}
.navbar-toggle {
  border-color: var(--border) !important;
}
.navbar-toggle .fa-bars,
.navbar-toggle .icon-bar {
  color: var(--text) !important;
  background: var(--text) !important;
}

/* ─────────────────────────────────────────
   HERO (#home)
───────────────────────────────────────── */
#home {
  background: transparent !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
}
#home .container { position: relative; z-index: 1; }

/* Ambient glow behind hero visual */
.hero-glow {
  position: absolute;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(0,180,255,.25), transparent 70%);
  top: 5%; right: -5%;
  filter: blur(80px);
  z-index: 0; pointer-events: none;
}

/* Text column */
#home .caption {
  padding-top: 20px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,180,255,.08);
  border: 1px solid rgba(0,180,255,.25);
  color: var(--brand-1);
  font-size: 12.5px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .5px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-1);
  box-shadow: 0 0 12px var(--brand-1);
  display: inline-block; flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.85); }
}

/* h1 */
#home .caption h1 {
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--text) !important;
  margin-bottom: 18px;
}
#home .caption h1 .grad {
  background: linear-gradient(120deg, var(--brand-1) 10%, #fff 50%, var(--brand-1) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* h2 (typed.js subtitle) */
#home .caption h2 {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dim) !important;
  margin-bottom: 14px;
}
#home .caption h2 .typed-cursor { color: var(--brand-1); }

/* Lead paragraph */
#home .caption > p {
  color: var(--text-dim) !important;
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero buttons */
#home .caption .btn-transparent {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 10px;
  font-weight: 600;
  padding: 12px 24px;
  margin-right: 10px; margin-bottom: 10px;
  transition: background .2s, transform .2s;
}
#home .caption .btn-transparent:first-of-type {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 32px rgba(0,120,255,.40);
}
#home .caption .btn-transparent:first-of-type:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,120,255,.55);
}
#home .caption .btn-transparent:hover {
  background: rgba(255,255,255,.08) !important;
  transform: translateY(-2px);
}

/* Hero stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(15,23,41,.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-top: 32px;
  max-width: 480px;
}
.stat-num {
  font-size: 24px; font-weight: 900; line-height: 1.2;
  background: linear-gradient(135deg, var(--brand-1), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-lbl {
  font-size: 10px; color: var(--text-muted);
  margin-top: 3px; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600;
}

/* Hero visual column (POS monitor) */
.hero-visual-col {
  position: relative;
  perspective: 1600px;
  padding-top: 20px;
}
.pos-monitor {
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .8s ease;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.55));
}
.hero-visual-col:hover .pos-monitor {
  transform: rotateY(-2deg) rotateX(0deg);
}
.pos-monitor svg {
  width: 100%; height: auto; display: block;
}
.pos-monitor-glow {
  position: absolute; inset: 8% 8% 25% 8%;
  background: radial-gradient(ellipse at center, rgba(0,180,255,.18), transparent 70%);
  filter: blur(40px); z-index: -1; pointer-events: none;
}

/* Particles canvas stays behind */
#particles-js {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: .45;
}

/* ─────────────────────────────────────────
   GENERAL SECTIONS
───────────────────────────────────────── */
section,
.section-padding {
  background: transparent !important;
  position: relative; z-index: 1;
}
section h2 {
  color: var(--text) !important;
  font-weight: 800;
  letter-spacing: -.5px;
}
section > .container > p,
.section-padding > .container > p {
  color: var(--text-dim) !important;
}
hr {
  border-color: var(--border) !important;
}

/* Section heading pattern */
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--brand-1); padding: 6px 16px;
  background: rgba(0,180,255,.08);
  border: 1px solid rgba(0,180,255,.18);
  border-radius: 100px; margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -1.2px; margin-bottom: 14px;
  color: var(--text) !important;
}
.sec-title .grad {
  background: linear-gradient(120deg, var(--brand-1), #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-sub {
  font-size: 16.5px; color: var(--text-dim) !important;
  max-width: 600px; margin: 0 auto;
}

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
#about p { color: var(--text-dim) !important; }

/* Icon boxes — dark glass cards */
.icon-box {
  background: linear-gradient(180deg, rgba(18,26,46,.65), rgba(12,18,32,.55)) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 28px 24px !important;
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: none !important;
}
.icon-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-1), transparent);
  opacity: 0; transition: opacity .3s;
}
.icon-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-h) !important;
  box-shadow: var(--shadow) !important;
}
.icon-box:hover::before { opacity: 1; }

.icon-box .material-icons {
  color: var(--brand-1) !important;
  background: rgba(0,180,255,.10);
  border: 1px solid rgba(0,180,255,.20);
  border-radius: 12px;
  padding: 10px;
  font-size: 26px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.icon-box h4 {
  color: var(--text) !important;
  font-weight: 700;
  margin-top: 14px; margin-bottom: 10px;
}
.icon-box p { color: var(--text-dim) !important; font-size: 14px; line-height: 1.7; }

/* ─────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────── */
#story { background: var(--bg-1) !important; }
#story .story-content h2 { color: var(--text) !important; }
#story .story-quote {
  color: var(--brand-1) !important;
  border-left: 3px solid var(--brand-1);
  padding-left: 16px; font-style: italic;
}
#story .story-text p { color: var(--text-dim) !important; }
#story .btn-white {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 10px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,120,255,.35);
  transition: transform .2s, box-shadow .2s;
}
#story .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,120,255,.55);
  color: #fff !important;
}

/* ─────────────────────────────────────────
   HOW IT WORKS (STEPS)
───────────────────────────────────────── */
#how-it-works h2 { color: var(--text) !important; }
.steps-connector { background: var(--border) !important; }

.step-circle {
  background: linear-gradient(135deg, rgba(0,180,255,.15), rgba(0,80,200,.08)) !important;
  border: 2px solid rgba(0,180,255,.30) !important;
  box-shadow: 0 0 32px rgba(0,180,255,.15) !important;
}
.step-circle .material-icons { color: var(--brand-1) !important; }
.step-number {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.step-item h4 { color: var(--text) !important; font-weight: 700; }
.step-item p  { color: var(--text-dim) !important; font-size: 14px; }

.steps-cta .btn-blue {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border: none !important;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,120,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.steps-cta .btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,120,255,.55);
}
.steps-cta .btn-transparent {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dim) !important;
  border-radius: 10px;
  transition: background .2s, color .2s, transform .2s;
}
.steps-cta .btn-transparent:hover {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   PRICING / MODULES (#price)
───────────────────────────────────────── */
#price { background: var(--bg-1) !important; }
#price h2 { color: var(--text) !important; }
#price > .container > p { color: var(--text-dim) !important; }

.plan {
  background: linear-gradient(180deg, rgba(18,26,46,.7), rgba(12,18,32,.6)) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.plan::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-1), transparent);
  opacity: 0; transition: opacity .3s;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--border-h) !important;
  box-shadow: var(--shadow) !important;
}
.plan:hover::before { opacity: 1; }

.pricing-header {
  background: linear-gradient(135deg, rgba(0,180,255,.12), rgba(0,80,200,.06)) !important;
  border-bottom: 1px solid var(--border) !important;
}
.pricing-header h3 { color: var(--text) !important; font-weight: 800; }

.pricing-body ul li {
  color: var(--text-dim) !important;
  border-bottom-color: var(--border) !important;
}
.pricing-body ul li .material-icons { color: var(--brand-1) !important; }
.pricing-body ul li b  { color: var(--text) !important; }
.pricing-body ul li:hover {
  background: rgba(0,180,255,.05) !important;
  color: var(--text) !important;
}

/* ─────────────────────────────────────────
   MOBIL MODULLER
───────────────────────────────────────── */
.module-card {
  background: linear-gradient(180deg, rgba(18,26,46,.75), rgba(12,18,32,.65)) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-h) !important;
  box-shadow: var(--shadow) !important;
}
.module-card-header h3 { color: var(--text) !important; }

.module-badge {
  background: rgba(0,180,255,.12) !important;
  color: var(--brand-1) !important;
  border: 1px solid rgba(0,180,255,.25) !important;
}
.module-badge--garson {
  background: rgba(34,197,94,.12) !important;
  color: #4ADE80 !important;
  border: 1px solid rgba(34,197,94,.25) !important;
}
.module-card-desc { color: var(--text-dim) !important; }

.module-feature-list li {
  color: var(--text-dim) !important;
  border-bottom-color: var(--border) !important;
}
.module-feature-list .material-icons { color: var(--brand-1) !important; }
.module-feature-list li strong { color: var(--text) !important; }
.module-card--garson .module-feature-list .material-icons { color: #4ADE80 !important; }

.module-card--patron .module-card-icon {
  background: linear-gradient(135deg, rgba(0,180,255,.2), rgba(0,80,200,.1)) !important;
  border: 1px solid rgba(0,180,255,.25) !important;
}
.module-card--garson .module-card-icon {
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(21,128,61,.1)) !important;
  border: 1px solid rgba(34,197,94,.25) !important;
}
.module-cta.btn-blue {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border: none !important;
  box-shadow: 0 8px 22px rgba(0,120,255,.3);
  transition: transform .2s, box-shadow .2s;
}
.module-cta.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,120,255,.5);
}

/* ─────────────────────────────────────────
   CLIENTS / REFERANSLAR
───────────────────────────────────────── */
#clients {
  background: #D6E0F0 !important;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
#clients h2 { color: #0F1729 !important; }
#clients > .container > .row > p,
#clients p { color: #3A4A66 !important; }
/* Owl carousel client logos — keep natural colors */
#clients .clients-images img { filter: none !important; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact h2 { color: var(--text) !important; }
#contact > .container > p { color: var(--text-dim) !important; }
#contact label { color: var(--text-dim) !important; }

#contact .form-control {
  background: rgba(18,26,46,.6) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
#contact .form-control:focus {
  border-color: var(--border-h) !important;
  box-shadow: 0 0 0 3px rgba(0,180,255,.12) !important;
  background: rgba(18,26,46,.75) !important;
}
#contact .form-control::placeholder { color: var(--text-muted) !important; }

#contact .btn-blue,
#contact .btn[type="submit"] {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3)) !important;
  border: none !important;
  border-radius: 10px;
  font-weight: 700; color: #fff !important;
  box-shadow: 0 8px 22px rgba(0,120,255,.35);
  transition: transform .2s, box-shadow .2s;
}
#contact .btn-blue:hover,
#contact .btn[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,120,255,.5);
}

/* Contact info / address boxes if present */
.contact-info, .address-box {
  background: linear-gradient(180deg, rgba(18,26,46,.65), rgba(12,18,32,.5)) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}
.contact-info .material-icons,
.address-box .material-icons { color: var(--brand-1) !important; }
.contact-info p, .address-box p { color: var(--text-dim) !important; }
.contact-info h4, .address-box h4 { color: var(--text) !important; }

/* ─────────────────────────────────────────
   MODALS
───────────────────────────────────────── */
.modal-content {
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  color: var(--text) !important;
}
.modal-header {
  border-bottom-color: var(--border) !important;
  background: rgba(18,26,46,.8) !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}
.modal-header .modal-title { color: var(--text) !important; font-weight: 700; }
.modal-header .close {
  color: var(--text-dim) !important; text-shadow: none; opacity: .7;
}
.modal-header .close:hover { opacity: 1; color: #fff !important; }
.modal-body { color: var(--text-dim) !important; }
.modal-body p, .modal-body li { color: var(--text-dim) !important; }
.modal-body strong, .modal-body b { color: var(--text) !important; }
.modal-backdrop { background: #000; }
.modal-backdrop.in { opacity: .7; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--bg-1) !important;
  border-top: 1px solid var(--border) !important;
  padding: 64px 0 24px !important;
  color: var(--text) !important;
}
/* Legacy bootstrap footer override */
footer h5, footer p, footer a { color: var(--text-muted) !important; }
footer a:hover { color: var(--brand-1) !important; }

/* Dark grid footer layout */
footer .footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer .footer-brand p {
  color: var(--text-muted) !important;
  font-size: 13.5px; margin-top: 14px;
  max-width: 300px; line-height: 1.7;
}
footer .footer-h {
  font-size: 11.5px; font-weight: 800; color: #fff !important;
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 18px;
}
footer .footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
footer .footer-list a {
  color: var(--text-muted) !important;
  font-size: 13.5px;
  transition: color .2s;
}
footer .footer-list a:hover { color: var(--brand-1) !important; }
footer .footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
footer .footer-bottom p {
  font-size: 12.5px; color: var(--text-muted) !important;
  margin: 0;
}
footer .footer-social { display: flex; gap: 10px; }
footer .footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim) !important;
  font-size: 15px;
  transition: background .2s, color .2s, border-color .2s;
}
footer .footer-social a:hover {
  background: rgba(0,180,255,.10);
  color: var(--brand-1) !important;
  border-color: var(--border-h);
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   FLOATING BUTTONS — WhatsApp + Scroll-Top
   Stack: WhatsApp bottom: 24px
          toTop   bottom: 96px  (24 + 60 + 12 gap)
   Both aligned right: 24px
───────────────────────────────────────── */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  background: #25D366 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(37,211,102,.45) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 14px 32px rgba(37,211,102,.60) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────
   SCROLL TO TOP BUTTON
───────────────────────────────────────── */
#toTop {
  position: fixed;
  bottom: 96px;   /* 24px WA bottom + 56px WA height + 16px gap */
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-3));
  color: #fff;
  border: none;
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,120,255,.45);
  z-index: 9998;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  opacity: 0;
}
#toTop.show {
  display: flex;
  opacity: 1;
}
#toTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,120,255,.65);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   FEAT-CARDS  (#ozellikler)
───────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feat-card {
  background: linear-gradient(180deg, rgba(18,26,46,.65), rgba(12,18,32,.55));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  opacity: 0;
  transition: opacity .3s;
}
.feat-card:hover {
  border-color: var(--border-h);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,100,255,.18);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feat-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.feat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────
   SCREEN-CARDS  (#ekranlar)
───────────────────────────────────────── */
.screens-section { padding: 100px 0; }

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.screen-card {
  background: linear-gradient(180deg, rgba(18,26,46,.70), rgba(12,18,32,.60));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.screen-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,100,255,.20);
}
.screen-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #060c18;
  border-bottom: 1px solid var(--border);
}
.screen-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}
.screen-meta {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.screen-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--brand-1);
  background: rgba(0,180,255,.10);
  border: 1px solid rgba(0,180,255,.20);
  border-radius: 6px;
  padding: 3px 10px;
  width: fit-content;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.screen-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.screen-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
.screen-form-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(0,78,200,.18), rgba(0,180,255,.10));
  border: 1px solid rgba(0,180,255,.22);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,180,255,.18), transparent 70%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,78,200,.15), transparent 70%);
  pointer-events: none;
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-1);
  background: rgba(0,180,255,.10);
  border: 1px solid rgba(0,180,255,.20);
  border-radius: 100px;
  padding: 6px 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(0,100,255,.35);
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,100,255,.50);
  text-decoration: none;
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-cta-secondary:hover {
  border-color: var(--border-h);
  background: rgba(0,180,255,.08);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ─────────────────────────────────────────
   QR DEMO CARD
───────────────────────────────────────── */
.qr-demo-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(10,20,48,0.75);
  border: 1px solid rgba(0,180,255,0.35);
  border-radius: 14px;
  padding: 10px 18px 10px 10px;
  margin-top: 18px;
  backdrop-filter: blur(8px);
  animation: qr-pulse 3s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s;
}
.qr-demo-card:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}
@keyframes qr-pulse {
  0%,100% { box-shadow: 0 0 18px rgba(0,180,255,.12); border-color: rgba(0,180,255,.35); }
  50%      { box-shadow: 0 0 32px rgba(0,180,255,.28); border-color: rgba(0,180,255,.65); }
}
.qr-demo-card #qr-demomenu-canvas canvas,
.qr-demo-card #qr-demomenu-canvas img {
  border-radius: 8px;
  display: block;
}
.qr-demo-info { display: flex; flex-direction: column; gap: 3px; }
.qr-demo-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #00B4FF;
  letter-spacing: .3px;
}
.qr-demo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
}
.qr-demo-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: rgba(0,180,255,.6);
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 991px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .pos-monitor { transform: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .screens-grid .screen-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 640px; margin-left: auto; margin-right: auto; }
  .cta-title { font-size: 32px; }
}

@media (max-width: 767px) {
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 14px; gap: 12px; }
  .stat-num   { font-size: 22px; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-glow  { display: none; }
  .feat-grid  { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: 1fr !important; }
  .screens-grid .screen-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .cta-inner  { padding: 48px 24px; }
  .cta-title  { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-stats { padding: 12px; gap: 10px; }
  .stat-num   { font-size: 20px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .screen-title { font-size: 16px; }
  .cta-title  { font-size: 22px; }
}

/* ─────────────────────────────────────────
   SITE FOOTER BAR
───────────────────────────────────────── */
.site-footer {
  background: rgba(5,8,16,.95);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
}
.site-footer .footer-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.footer-links a {
  color: var(--text-muted) !important;
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--brand-1) !important;
}
.footer-sep {
  color: rgba(255,255,255,.2);
}
@media (max-width: 600px) {
  .site-footer .footer-inner { justify-content: center; text-align: center; }
}

/* ─────────────────────────────────────────
   QR CALLOUT (kıvrımlı ok + el yazısı)
───────────────────────────────────────── */
.qr-demo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.qr-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 6px;
  position: relative;
  top: -10px;
}
.qr-callout-text {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  color: #00B4FF;
  white-space: nowrap;
  animation: qr-blink 1.6s ease-in-out infinite;
  text-shadow: 0 0 14px rgba(0,180,255,.55);
  transform: rotate(-4deg);
  display: block;
  margin-bottom: 2px;
}
@keyframes qr-blink {
  0%, 100% { opacity: 1; }
  45%       { opacity: 1; }
  50%       { opacity: .15; }
  55%       { opacity: 1; }
}
.qr-arrow {
  width: 52px;
  height: 46px;
  margin-top: -4px;
  margin-left: -6px;
  filter: drop-shadow(0 0 6px rgba(0,180,255,.4));
  animation: qr-arrow-bob 2.2s ease-in-out infinite;
}
@keyframes qr-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}
@media (max-width: 480px) {
  .qr-callout-text { font-size: 15px; }
  .qr-arrow { width: 40px; height: 36px; }
}
