/* ═══════════════════════════════════════════════
   ANASAYFA — index.css (Açık Mavi Tema)
   ═══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 110px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-blob-1 { width: 550px; height: 550px; background: rgba(200,150,12,0.22); top: -150px; right: -120px; animation-delay: 0s; }
.hero-blob-2 { width: 380px; height: 380px; background: rgba(180,120,8,0.14); bottom: -80px; left: -80px; animation-delay: 3s; }
.hero-blob-3 { width: 250px; height: 250px; background: rgba(220,170,30,0.1); top: 35%; left: 38%; animation-delay: 1.5s; }

@keyframes blobFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-28px) scale(1.05); }
}

.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 80px; }

.hero-content { position: relative; z-index: 2; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  color: #f0d080;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px;
  background: #86efac;
  border-radius: 50%;
  box-shadow: 0 0 8px #86efac;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

/* Hero Başlık */
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-title .text-grad {
  background: linear-gradient(135deg, #d4a825 0%, #f0c84a 45%, #ffe48a 75%, #f0c84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-title .line { overflow: hidden; display: block; }

.hero-desc {
  font-size: 17px;
  color: rgba(220,228,248,0.88);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Güven şeridi */
.hero-trust { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-size: 26px; font-weight: 900; color: #f0c84a; line-height: 1; letter-spacing: -1px; }
.hero-trust-label { font-size: 11.5px; color: rgba(220,228,248,0.7); margin-top: 3px; font-weight: 500; }
.hero-trust-sep { width: 1px; height: 40px; background: rgba(200,150,12,0.3); }

/* Hero sağ — 3D Canvas */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 2;
  overflow: hidden;
  /* Kenarları arka plana yumuşakça karıştır */
  -webkit-mask-image: radial-gradient(ellipse 88% 80% at 50% 50%, black 30%, rgba(0,0,0,.7) 58%, transparent 80%);
  mask-image: radial-gradient(ellipse 88% 80% at 50% 50%, black 30%, rgba(0,0,0,.7) 58%, transparent 80%);
}

/* Sketchfab iframe */
#hero3d-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: transparent;
}

/* Kenar blend overlay — hero bg rengiyle kaynaşır */
.hero-3d-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background:
    linear-gradient(to right,  #102238 0%, transparent 22%),
    linear-gradient(to left,   #102238 0%, transparent 16%),
    linear-gradient(to bottom, #1f3d60 0%, transparent 18%),
    linear-gradient(to top,    #14284a 0%, transparent 22%);
}

/* ── Badge'ler ── */
.hero-badge {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  white-space: nowrap;
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.badge-top-left    { top: 12%; left: 4%;   animation-delay: 0s; }
.badge-top-right   { top: 8%;  right: 4%;  animation-delay: 1s; }
.badge-bottom-left { bottom: 10%; left: 4%; animation-delay: 2s; }
.badge-bottom-right{ bottom: 8%;  right: 4%; animation-delay: 0.5s; }

.hb-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(200,150,12,.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #e8b84b;
}
.hb-icon.hb-green  { background: rgba(74,222,128,.2);  color: #4ade80; }
.hb-icon.hb-purple { background: rgba(167,139,250,.2); color: #c4b5fd; }
.hb-icon.hb-orange { background: rgba(251,191,36,.2);  color: #fcd34d; }

.hb-text { display: flex; flex-direction: column; }
.hb-title { font-size: 13px; font-weight: 700; color: white; line-height: 1.2; }
.hb-sub   { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 1px; }

/* Eski float-card (artık kullanılmıyor) */
.float-card { position: absolute; z-index: 20; }

/* Floating badge'ler */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  padding: 11px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}
.float-card .fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.float-card-1 { top: 8%; left: -50px; animation: cardFloat 5.5s 1s ease-in-out infinite; }
.float-card-2 { bottom: 12%; right: -40px; animation: cardFloat 5.5s 2s ease-in-out infinite; }
@keyframes cardFloat {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-12px); }
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--c-card);
  padding: 60px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(37,99,235,.06);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center; padding: 20px 12px; border-radius: 18px;
  transition: var(--transition); cursor: default; border: 1px solid transparent;
  opacity: 1;
}
.stat-item:hover { background: rgba(200,150,12,0.08); border-color: rgba(200,150,12,.15); }
.stat-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(200,150,12,0.12), rgba(200,150,12,0.06));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--c-blue1); margin-bottom: 12px; transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap {
  background: var(--grad-primary); color: white;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(200,150,12,.35);
}
.stat-num {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 13px; color: var(--c-muted); font-weight: 500; margin-top: 4px; }

/* ── NEDEN BİZ ── */
.why-section {
  padding: 110px 0;
  background: var(--c-surface);
  position: relative;
}

.feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.feature-card:hover {
  border-color: rgba(200,150,12,.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200,150,12,.12);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(200,150,12,0.08), rgba(200,150,12,0.12));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--c-blue1); margin-bottom: 18px; transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--grad-primary); color: white;
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(200,150,12,.35);
}
.feature-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--c-text); }
.feature-card p  { font-size: 13.5px; color: var(--c-muted); margin: 0; line-height: 1.7; }

/* ── ÜRÜN KARTI ── */
.product-preview-section { padding: 110px 0; background: var(--c-bg); }

.product-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  height: 300px; display: block; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(200,150,12,.1); transition: var(--transition);
  border: 1px solid var(--c-border);
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(200,150,12,.18);
  border-color: rgba(200,150,12,.3);
}
.product-card:hover img { transform: scale(1.1); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,30,75,.9) 0%, rgba(14,30,75,.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; transition: var(--transition);
}
.product-card-tag {
  display: inline-block; background: var(--grad-primary); color: white;
  font-size: 10.5px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 8px; align-self: flex-start;
  box-shadow: 0 4px 14px rgba(200,150,12,.4);
}
.product-card-overlay h4 { color: white; font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.product-card-overlay p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s; opacity: 0; }
.product-card:hover .product-card-overlay p { max-height: 80px; opacity: 1; }
.product-card-arrow {
  margin-top: 12px; color: #7dd3fc; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 6px; opacity: 0; transform: translateX(-10px); transition: var(--transition);
}
.product-card:hover .product-card-arrow { opacity: 1; transform: translateX(0); }

/* ── ARAÇ SPOTLIGHT ── */
.anim-spotlight {
  background: var(--c-bg);
  padding: 90px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.anim-feat-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.anim-feat-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-muted); font-size: 14.5px;
}
.anim-feat-list li i {
  color: var(--c-green, #22c55e); font-size: 16px; flex-shrink: 0;
}

.anim-frame-wrap {
  background: linear-gradient(135deg, var(--c-surface), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200,150,12,.1);
  position: relative;
}
.anim-frame-wrap iframe,
.anim-frame-wrap video {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
  border: none;
  object-fit: cover;
}

/* ── İKON ANİMASYON ── */
.icons-anim-wrap {
  background: linear-gradient(135deg, var(--c-bg), var(--c-surface));
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(37,99,235,.07);
}
.icons-anim-wrap iframe {
  width: 100%; height: 300px;
  display: block; border: none;
  background: var(--c-bg);
}

/* ── CTA BANT ── */
.cta-band {
  background: linear-gradient(145deg, #030407 0%, #080d1a 100%);
  padding: 100px 0; position: relative; overflow: hidden; text-align: center; border-top: 1px solid rgba(200,150,12,.2);
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,.12) 0%, transparent 65%); pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white;
  margin-bottom: 14px; position: relative; z-index: 2; letter-spacing: -.5px;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 36px; position: relative; z-index: 2; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #b8860b 0%, #d4a520 55%, #e8c040 100%);
  color: #fff;
  font-weight: 800; font-size: 16px;
  padding: 18px 48px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 36px rgba(184,134,11,.55), 0 0 0 4px rgba(184,134,11,.18);
  transition: var(--transition); position: relative; z-index: 2;
  letter-spacing: .3px;
}
.btn-cta-white:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 52px rgba(184,134,11,.7), 0 0 0 6px rgba(184,134,11,.22);
  color: #fff;
}
.btn-cta-white i { font-size: 17px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 100px 0 80px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 60px; }
  .float-card-1, .float-card-2 { display: none; }
  .hero-wave svg { height: 50px; }
}
@media (max-width: 767px) {
  .hero { padding: 80px 0 60px; }
  .hero-title { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-trust { gap: 18px; }
  .hero-trust-num { font-size: 22px; }
  .stat-num { font-size: 2rem; }
  .why-section { padding: 70px 0; }
  .anim-spotlight { padding: 60px 0; }
  .anim-frame-wrap iframe { height: 230px; }
  .icons-anim-wrap iframe { height: 260px; }
  .product-preview-section { padding: 70px 0; }
  .product-card { height: 250px; }
  .cta-band { padding: 70px 0; }
}
@media (max-width: 575px) {
  .hero-wave { displa