/* =============================================
   SELCAP ENHANCED CSS v3
   ============================================= */

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0;
  background: white; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.preloader-logo { height: 44px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.preloader-ring {
  width: 40px; height: 40px;
  border: 3px solid #eee; border-top-color: #E8440A;
  border-radius: 50%; animation: spin2 0.8s linear infinite;
}
@keyframes spin2 { to { transform: rotate(360deg); } }

/* ── SCROLL TO TOP ── */
.scroll-top-btn {
  position: fixed; bottom: 96px; right: 28px;
  width: 44px; height: 44px; background: var(--dark); color: white;
  border: none; cursor: pointer; border-radius: 50%; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  z-index: 998; opacity: 0; transform: translateY(12px);
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary); }

/* ══════════════════════════════════════════════
   HERO v3 — matches 4th reference image exactly
   Full viewport, large cap, turuncu orbit rings,
   features BELOW cap not above
   ══════════════════════════════════════════════ */
.hero {
  min-height: auto;
  padding-top: 72px;
  display: flex; align-items: center;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}

/* Subtle dot grid */
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,68,10,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── ORBIT RINGS — inside cap-360-wrap only ── */
.hero-orbit {
  display: none; /* handled by cap-ring inside cap-360-wrap */
}

/* orbit dots handled inside cap-360-wrap */

/* ── HERO LAYOUT ── */
.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 48px 0 32px;
  position: relative; z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-inner .hero-text   { flex: 1 1 50%; min-width: 0; overflow: hidden; }
.hero-inner .hero-visual { flex: 1 1 50%; min-width: 0; display: flex !important; align-items: center; justify-content: center; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--primary);
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 900; line-height: 1.05;
  color: var(--dark); margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 16px; color: var(--muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.8;
}

.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 30px; font-weight: 900; color: var(--dark);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.hero-stat-num + span { font-size: 22px; font-weight: 800; color: var(--primary); }
.hero-stat-lbl { font-size: 11px; color: var(--muted); display: block; margin-top: 4px; font-weight: 600; letter-spacing: 0.5px; }
.hero-stat-sep { width: 1px; height: 44px; background: var(--border); }

/* ── 360° CAP VISUAL ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  max-width: min(640px, 90vw);
  margin: 0 auto;
  overflow: visible;
}

/* ── 360 WRAP ── */
.cap-360-wrap {
  position: relative;
  width: min(640px, 90vw); height: min(560px, 80vw);
  max-width: 100%;
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
  user-select: none;
  overflow: visible;
}
.cap-360-wrap:active { cursor: grabbing; }

/* Orbit halkaları */
.cap-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cap-ring-outer {
  width: clamp(240px, 520px, 52vw); height: clamp(240px, 520px, 52vw);
  border: 1.5px dashed rgba(232,68,10,0.18);
  animation: cap-ring-spin 28s linear infinite;
}
.cap-ring-mid {
  width: clamp(185px, 400px, 40vw); height: clamp(185px, 400px, 40vw);
  border: 1px solid rgba(232,68,10,0.10);
  animation: cap-ring-spin 40s linear infinite reverse;
}
.cap-ring-inner {
  width: clamp(140px, 300px, 30vw); height: clamp(140px, 300px, 30vw);
  border: 1px dashed rgba(232,68,10,0.06);
}
@keyframes cap-ring-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.cap-dot {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; pointer-events: none;
}
.cap-dot-1 {
  width: 10px; height: 10px; background: var(--primary); opacity: 0.65;
  animation: cap-dot-orbit-1 28s linear infinite;
}
.cap-dot-2 {
  width: 7px; height: 7px; background: var(--primary); opacity: 0.35;
  animation: cap-dot-orbit-2 40s linear infinite reverse;
}
@keyframes cap-dot-orbit-1 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(290px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(290px); }
}
@keyframes cap-dot-orbit-2 {
  from { transform: translate(-50%,-50%) rotate(90deg) translateX(225px); }
  to   { transform: translate(-50%,-50%) rotate(450deg) translateX(225px); }
}

/* ── SPIN STAGE ── */
/* ── 3D SPIN STAGE ── */
.cap-360-img-wrap {
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  /* Perspektif: 3D derinlik hissi için */
  perspective: 1000px;
  perspective-origin: 50% 38%;
  transform-style: preserve-3d;
}

/* Zemin gölgesi — ürünün altında sahte shadow */
.cap-360-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: shadow-pulse 5s ease-in-out infinite;
}
@keyframes shadow-pulse {
  0%,100% { width: 220px; opacity: 0.6; }
  50%      { width: 180px; opacity: 0.35; }
}

/* Görsel — WebP, şeffaf arka plan, derin drop-shadow */
.cap-360-img {
  width: 380px; height: 380px;
  object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 28px 52px rgba(0,0,0,0.20))
          drop-shadow(0 6px 18px rgba(232,68,10,0.10));
  animation: cap-float-3d 5s ease-in-out infinite;
  transition: opacity 0.07s ease, filter 0.2s ease;
  will-change: transform, opacity;
  image-rendering: -webkit-optimize-contrast;
  transform-origin: center bottom;
}
@keyframes cap-float-3d {
  0%   { transform: rotateX(6deg) rotateY(-3deg) translateY(0px)   scale(1.0); }
  25%  { transform: rotateX(4deg) rotateY( 2deg) translateY(-8px)  scale(1.01); }
  50%  { transform: rotateX(5deg) rotateY(-1deg) translateY(-14px) scale(1.02); }
  75%  { transform: rotateX(4deg) rotateY( 3deg) translateY(-7px)  scale(1.01); }
  100% { transform: rotateX(6deg) rotateY(-3deg) translateY(0px)   scale(1.0); }
}
.cap-360-img.spinning {
  animation: none !important;
  /* JS tarafından inline transform set edilir */
}

/* ── SEO: NEDEN SELCAP KARTLARI ── */
.seo-why-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}
.seo-why-card:hover {
  border-color: rgba(232,68,10,0.25);
  box-shadow: 0 12px 40px rgba(232,68,10,0.08);
  transform: translateY(-3px);
}
.seo-why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(232,68,10,0.12), rgba(232,68,10,0.06));
  border: 1.5px solid rgba(232,68,10,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #E8440A;
}
.seo-why-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0;
}
.seo-why-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.seo-why-link {
  font-size: 12px;
  font-weight: 700;
  color: #E8440A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}
.seo-why-link:hover { text-decoration: underline; }

/* Materyal chip */
.mat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.mat-chip i { color: #22c55e; font-size: 11px; }

/* Sektör hızlı chip */
.sector-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1.5px solid #e0e0e0;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.2s;
  background: white;
}
.sector-quick-chip:hover {
  border-color: #E8440A;
  color: #E8440A;
  background: rgba(232,68,10,0.04);
  transform: translateY(-1px);
}
.sector-quick-chip i { font-size: 12px; color: #E8440A; opacity: 0.8; }

/* Responsive */
@media (max-width: 900px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 540px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* Döndür ipucu */
.scroll-rotate-hint {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--primary); font-weight: 700;
  letter-spacing: 0.5px; animation: hint-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hint-pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ── Otomatik geçiş progress bar ── */
.cap-auto-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(232,68,10,0.12);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.cap-auto-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(232,68,10,0.4), var(--primary));
  border-radius: 0 0 12px 12px;
  transition: width 0.1s linear;
}
/* Kategori geçiş progress 5s animasyonu */
@keyframes auto-progress-fill {
  from { width: 0%; }
  to   { width: 100%; }
}
.cap-auto-progress-bar.running {
  animation: auto-progress-fill 5s linear forwards;
}

/* ── Drag imleci ── */
.cap-360-wrap        { cursor: grab; }
.cap-360-wrap:active { cursor: grabbing; }

/* Kategori adı geçiş animasyonu */
@keyframes badge-text-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge-animating #badgeTitle,
.hero-badge-animating .badge-sub {
  animation: badge-text-in 0.35s ease forwards;
}

/* Hero badge (bottom right floating card) — positioned against hero-visual, not clipped */
.hero-badge {
  position: absolute; bottom: 10px; right: 0;
  background: white; border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex; gap: 14px; align-items: center;
  border-left: 3px solid var(--primary);
  min-width: 220px; z-index: 3;
  animation: badge-float 4s ease-in-out infinite;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.badge-icon {
  width: 40px; height: 40px; background: rgba(232,68,10,0.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.badge-title { font-size: 14px; font-weight: 800; color: var(--dark); }
.badge-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════════════
   FEATURES BAR — moved to BELOW product tabs
   ══════════════════════════════════════════════ */
.features-bar {
  background: white;
  border-bottom: 1px solid var(--border);
}
.features-bar-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px 24px; border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--light); }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,68,10,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px;
}
.feature-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════
   PRODUCT TABS — above features bar
   ══════════════════════════════════════════════ */
.product-tabs-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.product-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.product-tabs::-webkit-scrollbar { display: none; }
.product-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; border: none; background: none; cursor: pointer;
  border-bottom: 3px solid transparent; transition: all 0.25s;
  white-space: nowrap; font-family: 'Inter', sans-serif; flex-shrink: 0;
}
.product-tab:hover { background: var(--light); }
.product-tab.active { border-bottom-color: var(--primary); background: rgba(232,68,10,0.02); }
.product-tab.active .tab-name { color: var(--primary); font-weight: 800; }
.product-tab-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.tab-name { font-size: 13px; font-weight: 600; color: var(--dark); display: block; }
.tab-arrow { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }

/* ── INDUSTRIES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.20); }
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}
.industry-card:hover img { transform: scale(1.05); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.08) 100%);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.industry-icon-wrap {
  width: 44px; height: 44px;
  background: #E8440A;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 19px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(232,68,10,0.5);
}
.industry-name {
  font-size: 22px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.industry-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  max-width: 340px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.industry-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 13px;
  opacity: 0; transform: translateY(-4px);
  transition: all 0.25s;
}
.industry-card:hover .industry-arrow { opacity: 1; transform: translateY(0); }
/* Wide (Endüstriyel) — tam genişlik, sinematik */
.industry-card-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21/7 !important;
}
.industry-card-wide .industry-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, transparent 75%);
  padding: 48px 56px;
  justify-content: center;
}
.industry-card-wide .industry-name { font-size: 36px; margin-bottom: 10px; }
.industry-card-wide .industry-sub  { font-size: 16px; max-width: 500px; }
.industry-card-wide .industry-sub  { font-size: 15px; max-width: 460px; opacity: 0.85; }

/* ── FULL WIDTH BANNER ── */
.fullwidth-banner {
  position: relative; overflow: hidden; min-height: 360px;
  display: flex; align-items: center;
}
.fullwidth-banner-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.fullwidth-banner:hover .fullwidth-banner-img { transform: scale(1.03); }
.fullwidth-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.4) 60%, transparent 100%);
}
.fullwidth-banner-overlay-light {
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
}
.fullwidth-banner-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 60px 24px; flex-wrap: wrap;
}

/* ── FEATURE SHOWCASE ── */
.feature-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-showcase-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--dark); min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.feature-showcase-card-green { background: #0f2118; }
.feature-showcase-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  opacity: 0.45; transition: transform 0.5s ease, opacity 0.5s;
}
.feature-showcase-card:hover .feature-showcase-img { transform: scale(1.04); opacity: 0.55; }
.feature-showcase-content {
  position: relative; z-index: 1; padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}
.feature-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); background: rgba(232,68,10,0.15);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.feature-tag-light { color: white; background: rgba(255,255,255,0.15); }
.feature-showcase-content h3 { font-size: 20px; font-weight: 800; color: white; margin-bottom: 8px; }
.feature-showcase-content p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.feature-link { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 700; color: var(--primary); transition: gap 0.2s; }
.feature-link:hover { gap: 12px; color: var(--primary); }
.feature-link-dark { color: rgba(255,255,255,0.8); }
.feature-link-dark:hover { color: white; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; align-items: flex-start; gap: 0; position: relative; }
.process-step { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.process-num { font-size: 11px; font-weight: 900; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; opacity: 0.8; }
.process-icon {
  width: 64px; height: 64px; background: white; border-radius: 16px;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px; margin: 0 auto 16px;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.process-step:hover .process-icon {
  background: var(--primary); border-color: var(--primary); color: white;
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232,68,10,0.3);
}
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 12px; color: var(--muted); line-height: 1.7; }
.process-connector {
  width: 60px; flex-shrink: 0; height: 2px;
  background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
  margin-top: 44px; position: relative;
}
.process-connector::after {
  content: ''; position: absolute; right: -4px; top: -4px;
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
}

/* ── GALLERY STRIP ── */
.gallery-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.gallery-strip-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-strip-item:hover img { transform: scale(1.06); }
.gallery-strip-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 11px; font-weight: 700; color: white; text-align: center;
}

/* ── ABOUT FLOAT IMAGE ── */
.about-img-float {
  position: absolute; bottom: -30px; right: -30px;
  width: 160px; height: 110px; border-radius: 12px; overflow: hidden;
  border: 4px solid white; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── AOS ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }
[data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }

/* Mobile menu icon colors */
.mobile-menu a i { margin-right: 10px; width: 16px; color: var(--primary); }

/* ── NAVBAR shrink on scroll ── */
.navbar { transition: background 0.3s, box-shadow 0.3s; }
.navbar.scrolled .nav-inner { height: 60px; }
.nav-inner { transition: height 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-visual { max-width: 480px; }
  .cap-360-wrap { width: 480px; height: 420px; }
  .cap-360-img { width: 720px; height: 720px; }
  .cap-ring-outer { width: 450px; height: 450px; }
  .cap-ring-mid { width: 360px; height: 360px; }
  .cap-ring-inner { width: 270px; height: 270px; }
  .hero-badge { right: 0; }
}

@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-desc { max-width: 100%; margin: 0 auto 36px; }
  .hero-eyebrow, .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .feature-showcase-grid { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .process-connector { display: none; }
  .process-step { flex: 0 0 calc(33% - 24px); }
  .gallery-strip { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .hero-orbit-1, .hero-orbit-2, .hero-orbit-3 { display: none; }
  .features-bar-inner { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .industries-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .industry-card { aspect-ratio: 16/9; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .fullwidth-banner-content { flex-direction: column; gap: 24px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-sep { display: none; }
  .process-step { flex: 0 0 calc(50% - 12px); }
  .hero-inner { gap: 24px; padding: 32px 0 24px; }
  .hero h1 { font-size: clamp(28px, 7vw, 48px); }
}

@media (max-width: 480px) {
  .features-bar-inner { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card { aspect-ratio: 16/9; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .process-step { flex: 0 0 100%; }
  .industry-card-wide { aspect-ratio: 16/6 !important; }
  .industry-card-wide .industry-overlay { padding: 28px 24px; }
  .industry-card-wide .industry-name { font-size: 24px; }
}

/* ══════════════════════════════════════════════
   HERO TRUST TICKER — stats'ın altı
   ══════════════════════════════════════════════ */
.hero-trust {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.hero-trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  opacity: 0.7;
}

.hero-trust-track {
  overflow: hidden;
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-trust-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trust-scroll 22s linear infinite;
}

.hero-trust-inner:hover { animation-play-state: paused; }

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}

.trust-item:hover { color: var(--primary); }

.trust-item i {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.8;
}

/* ── Yıldızlı müşteri memnuniyeti chips (statların yanına) ── */
.hero-trust-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  background: white;
  transition: all 0.25s;
  cursor: default;
  white-space: nowrap;
}
.trust-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232,68,10,0.04);
  transform: translateY(-1px);
}
.trust-chip i { font-size: 12px; color: var(--primary); }

/* ── Compact hero spacing ── */
.hero h1 { margin-bottom: 14px !important; }
.hero-desc { margin-bottom: 26px !important; }
.hero-actions { margin-bottom: 28px !important; }
.hero-stats { padding-top: 22px !important; }
.hero-trust { margin-top: 18px !important; }

/* Product tabs immediately after trust ticker — no gap */
.product-tabs-section { border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════════
   CRITICAL FIXES
   ══════════════════════════════════════════════ */

/* Hero visual MUST show on desktop */
@media (min-width: 769px) {
  .hero-inner { flex-direction: row !important; }
  .hero-visual { display: flex !important; }
}

/* On mobile: stack vertically, hero content full width */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column !important;
    text-align: center;
    align-items: center;
  }
  .hero-inner .hero-text {
    width: 100%;
    flex: none;
  }
  .hero-inner .hero-visual {
    display: flex !important;
    width: 100%;
    max-width: 320px;
    flex: none;
  }
  .hero-eyebrow, .hero-stats, .hero-actions { justify-content: center; }
}

/* Prevent orbit rings from causing overflow/height */
.hero { overflow: hidden; }

/* Cap responsive sizing */
@media (max-width: 1200px) {
  .hero-visual { max-width: 520px; }
  .cap-360-wrap { width: 520px; height: 440px; }
  .cap-360-img  { width: 760px; height: 760px; }
  .cap-ring-outer { width: 480px; height: 480px; }
  .cap-ring-mid   { width: 380px; height: 380px; }
  .cap-ring-inner { width: 280px; height: 280px; }
}

/* On tablet/mobile: show cap in center, smaller */
@media (max-width: 1024px) {
  .hero-visual {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
    max-width: 420px;
  }
  .hero-inner {
    flex-direction: column !important;
    text-align: center;
  }
  .hero-eyebrow, .hero-stats, .hero-actions { justify-content: center; }
  .cap-360-wrap { width: 420px; height: 380px; touch-action: none; }
  .cap-360-img  { width: 340px; height: 340px; }
  .cap-360-img-wrap { width: 360px; height: 360px; }
  .cap-360-img-wrap::after { width: 180px; }
  .cap-ring-outer { width: 360px; height: 360px; }
  .cap-ring-mid   { width: 280px; height: 280px; }
  .cap-ring-inner { width: 210px; height: 210px; }
  .hero-badge { right: 0; bottom: -10px; min-width: 180px; }
  .scroll-rotate-hint { display: none; }
}

@media (max-width: 600px) {
  .hero-visual { max-width: 300px; }
  .cap-360-wrap { width: 300px; height: 280px; touch-action: none; }
  .cap-360-img  { width: 260px; height: 260px; }
  .cap-360-img-wrap { width: 280px; height: 280px; }
  .cap-360-img-wrap::after { width: 140px; height: 20px; }
  .cap-ring-outer { width: 270px; height: 270px; }
  .cap-ring-mid   { width: 210px; height: 210px; }
  .cap-ring-inner { width: 155px; height: 155px; }
}

/* ══════════════════════════════════════════════
   RTL SUPPORT (Arabic / Persian)
   Activated via <html dir="rtl">
   ══════════════════════════════════════════════ */
html[dir="rtl"] body {
  font-family: 'Noto Kufi Arabic', 'Tahoma', 'Inter', sans-serif;
}

html[dir="rtl"] .nav-inner { direction: rtl; }
html[dir="rtl"] .nav-menu { direction: rtl; }
html[dir="rtl"] .nav-cta i,
html[dir="rtl"] .btn-primary i,
html[dir="rtl"] .btn-outline i,
html[dir="rtl"] .btn-secondary i,
html[dir="rtl"] .view-all i,
html[dir="rtl"] .feature-link i {
  transform: scaleX(-1); /* flip arrow icons */
}

html[dir="rtl"] .hero-eyebrow::before { order: 2; }
html[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }
html[dir="rtl"] .hero-text,
html[dir="rtl"] .hero-stats,
html[dir="rtl"] .hero-actions { text-align: right; }
html[dir="rtl"] .hero-stat { text-align: right; }

html[dir="rtl"] .industry-arrow { right: auto; left: 14px; }
html[dir="rtl"] .industry-overlay { text-align: right; }
html[dir="rtl"] .about-img-float { right: auto; left: -30px; }
html[dir="rtl"] .about-stat { left: auto; right: -24px; }
html[dir="rtl"] .hero-badge { right: auto; left: 0; border-left: none; border-right: 3px solid var(--primary); }
html[dir="rtl"] .badge-icon { order: 2; }

html[dir="rtl"] .section-tag::before { order: 2; }
html[dir="rtl"] .section-tag { flex-direction: row-reverse; }
html[dir="rtl"] .section-header-row { direction: rtl; }
html[dir="rtl"] .product-card-body,
html[dir="rtl"] .doc-card-footer,
html[dir="rtl"] .cta-banner,
html[dir="rtl"] .contact-info-item,
html[dir="rtl"] .about-point,
html[dir="rtl"] .feature-item,
html[dir="rtl"] .process-step { direction: rtl; text-align: right; }

html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand { text-align: right; }
html[dir="rtl"] .footer-bottom { direction: rtl; }
html[dir="rtl"] .breadcrumb-nav { direction: rtl; }

html[dir="rtl"] .mobile-menu a i { margin-right: 0; margin-left: 10px; }
html[dir="rtl"] .nav-lang i { margin-left: 6px; }

/* Lang switcher dropdown shares same look across all languages */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-switcher-btn {
  font-size: 13px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); padding: 6px 14px;
  border-radius: 20px; display: flex; align-items: center; gap: 6px;
  cursor: pointer; background: none; font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.lang-switcher-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 170px; padding: 6px; z-index: 200;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all 0.2s;
}
.lang-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--dark);
}
.lang-dropdown a:hover { background: var(--light); color: var(--primary); }
.lang-dropdown a.active { color: var(--primary); background: rgba(232,68,10,0.06); }
.lang-flag { font-size: 16px; line-height: 1; width: 20px; text-align: center; }

@media (max-width: 768px) {
  .lang-switcher { display: none; }
}

/* =============================================
   ÜRÜN DETAY SAYFASI  (Selcap marka stili)
   ============================================= */
.product-detail { padding: 56px 0 72px; }
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Sol: galeri --- */
.pd-gallery { position: sticky; top: 96px; }
.pd-main-img {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pd-main-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 36px;
  transition: opacity .25s ease, transform .25s ease;
}
.pd-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 92px; height: 92px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb:hover { border-color: var(--primary); }
.pd-thumb.active { border-color: var(--primary); box-shadow: 0 4px 14px rgba(232,68,10,0.18); }

/* --- Sağ: açıklama tablosu --- */
.pd-info { min-width: 0; }
.pd-head {
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 10px 10px 0 0;
}
.pd-table {
  width: 100%;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  border-collapse: collapse;
}
.pd-table tr { border-bottom: 1px solid var(--border); }
.pd-table tr:last-child { border-bottom: none; }
.pd-table th, .pd-table td {
  text-align: left;
  padding: 13px 22px;
  font-size: 14.5px;
  vertical-align: top;
}
.pd-table th {
  width: 42%;
  font-weight: 700;
  color: var(--dark);
  background: var(--light);
  border-right: 1px solid var(--border);
}
.pd-table td { color: var(--text); }

.pd-doc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 22px 0 4px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}
.pd-doc-link i { color: var(--primary); }

/* --- Sekmeler (Ambalaj Bilgisi / Yükleme Miktarı) --- */
.pd-tabs {
  display: flex;
  gap: 8px;
  margin: 30px 0 0;
}
.pd-tab-btn {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-bottom: none;
  background: var(--light);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.pd-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; animation: fadeIn .3s ease; }
.pd-tab-panel .pd-table { border-radius: 0 0 10px 10px; border-top: 1.5px solid var(--border); }

.pd-load-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.pd-load-cell { padding: 18px 20px; border-right: 1px solid var(--border); }
.pd-load-cell:last-child { border-right: none; }
.pd-load-cell .lbl { font-weight: 800; color: var(--dark); font-size: 14px; }
.pd-load-cell .val { color: var(--primary); font-size: 22px; font-weight: 800; margin-top: 4px; }
.pd-load-cell .unit { color: var(--muted); font-size: 13px; }

/* RTL desteği */
html[dir="rtl"] .pd-table th, html[dir="rtl"] .pd-table td,
html[dir="rtl"] .pd-head { text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-gallery { position: static; }
  .pd-load-grid { grid-template-columns: 1fr 1fr; }
  .pd-load-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 520px) {
  .pd-load-grid { grid-template-columns: 1fr; }
  .pd-load-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .pd-table th { width: 48%; }
}

/* Hero rozetindeki ince "Detayları Gör" linki */
.badge-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.85;
  transition: var(--transition);
  letter-spacing: .01em;
}
.badge-detail i { font-size: 10px; transition: var(--transition); }
.badge-detail:hover { opacity: 1; }
.badge-detail:hover i { transform: translateX(3px); }
html[dir="rtl"] .badge-detail:hover i { transform: translateX(-3px); }

/* Ürün sekmeleri altındaki "Daha Fazla" detay linki */
.tab-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  margin-top: 3px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.tab-more i { font-size: 9px; transition: var(--transition); }
.tab-more:hover { color: var(--primary); }
.tab-more:hover i { transform: translateX(3px); }
.product-tab.active .tab-more { color: var(--primary); }
html[dir="rtl"] .tab-more:hover i { transform: translateX(-3px); }



/* =============================================
   ÜRÜNLER SAYFASI v3 — KURUMSAL MİNİMAL
   ============================================= */

/* ─── Filtre Seçim Alanı ─── */
.products-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8eb;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid #e0e0e4;
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all .15s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: .01em;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff8f6;
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232,68,10,.2);
}

/* ─── Grid ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ─── KART ─── */
.product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebec;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
  border-color: #d8d8dc;
}

/* Kategori pill — üst sol */
.product-card::after {
  content: attr(data-cat-label);
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,.9);
  border: 1px solid #e5e5e8;
  color: #999;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Görsel sarmalayıcı */
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f7f7f8;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  display: block;
  background: #f7f7f8;
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
}
.product-card:hover .product-card-img {
  transform: scale(1.06);
}

/* Hover CTA — koyu şerit altta */
.product-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,.78);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform .22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 4;
  backdrop-filter: blur(2px);
}
.product-card:hover .product-card-overlay {
  transform: translateY(0);
}
.product-card-cta {
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card-cta i { font-size: 10px; }

/* ─── Alt şerit ─── */
.product-card-body {
  padding: 12px 15px 13px;
  background: #fff;
  border-top: 1px solid #f0f0f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}
.product-card-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.product-card-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
  transition: background .18s;
}
.product-card:hover .product-card-arrow {
  background: var(--primary);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: 1fr; } }

/* Filtre satırı yatay scroll — tek satır tercih */
.products-filter {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}
.products-filter::-webkit-scrollbar { display: none; }

/* Filtre butonları — bükümsüz */
.filter-btn { flex-shrink: 0; }

/* =============================================
   3D CAP VIEWER — Three.js canvas
   ============================================= */
.cap3d-container {
  position: relative;
  width: 540px;
  height: 540px;
  cursor: grab;
  user-select: none;
  flex-shrink: 0;
}
.cap3d-container:active { cursor: grabbing; }

#cap3dCanvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  background: transparent;
  display: block;
}

.cap3d-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  animation: hint-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(232,68,10,0.15);
  white-space: nowrap;
}
.cap3d-hint svg { color: var(--primary); flex-shrink: 0; }

/* orbit halkaları artık Three.js canvas'ın arkasında - CSS ile */
.cap3d-container::before,
.cap3d-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
}
.cap3d-container::before {
  width: 480px; height: 480px;
  border: 1.5px dashed rgba(232,68,10,0.18);
  animation: cap-ring-spin 28s linear infinite;
}
.cap3d-container::after {
  width: 380px; height: 380px;
  border: 1px solid rgba(232,68,10,0.10);
  animation: cap-ring-spin 40s linear infinite reverse;
}
#cap3dCanvas { position: relative; z-index: 1; }
.cap3d-hint { z-index: 2; }

@media (max-width: 1100px) {
  .cap3d-container { width: 420px; height: 420px; }
  .cap3d-container::before { width: 380px; height: 380px; }
  .cap3d-container::after  { width: 300px; height: 300px; }
}
@media (max-width: 768px) {
  .cap3d-container { width: 320px; height: 320px; }
  .cap3d-container::before { width: 290px; height: 290px; }
  .cap3d-container::after  { width: 220px; height: 220px; }
}

/* ══════════════════════════════════════════════
   ANASAYFA YENİ BÖLÜMLER — v8
   ══════════════════════════════════════════════ */

/* ── PROCESS iyileştirme ── */
.process-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(232,68,10,0.08);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 10px;
}
.process-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(232,68,10,0.06), rgba(232,68,10,0.02));
  border: 1.5px solid rgba(232,68,10,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.process-cta-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
}
.process-cta-bar-text i { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.process-cta-bar-text strong { color: #111; }

/* ── POPÜLER ÜRÜNLER ── */
.popular-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pop-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.pop-card-dark {
  background: #111;
  border-color: #222;
}
.pop-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  overflow: hidden;
}
.pop-card-dark .pop-card-img-wrap { background: #1a1a1a; }
.pop-card-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.5s ease;
}
.pop-card:hover .pop-card-img { transform: scale(1.06); }
.pop-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.pop-badge-orange { background: #f97316; }
.pop-badge-green  { background: #16a34a; }
.pop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pop-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pop-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(232,68,10,0.08);
  border-radius: 20px;
  padding: 3px 10px;
}
.pop-card-dark .pop-tag {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.pop-card-title {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  margin: 0;
  letter-spacing: -0.3px;
}
.pop-card-dark .pop-card-title { color: white; }
.pop-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}
.pop-card-dark .pop-card-desc { color: rgba(255,255,255,0.55); }
.pop-card-specs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pop-card-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}
.pop-card-dark .pop-card-specs li { color: rgba(255,255,255,0.65); }
.pop-card-specs li i { color: #22c55e; font-size: 11px; flex-shrink: 0; }
.pop-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.pop-card-btn:hover { gap: 11px; }
.pop-card-dark .pop-card-btn { color: rgba(232,68,10,0.9); }

/* Ürün chip'leri */
.all-products-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 20px 24px;
  background: #f7f7f7;
  border-radius: 16px;
}
.chips-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.prod-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.prod-chip img {
  width: 22px; height: 22px;
  object-fit: contain;
}
.prod-chip i { font-size: 13px; color: var(--primary); }
.prod-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,68,10,0.1);
}

/* ── RENK KİŞİSELLEŞTİRME ── */
.color-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.color-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.color-feature i {
  width: 32px; height: 32px;
  background: rgba(232,68,10,0.15);
  border: 1px solid rgba(232,68,10,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}
.color-palette-visual { position: relative; }
.color-swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.cswatch {
  aspect-ratio: 1;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cswatch:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.cswatch-more {
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  border: 1px dashed rgba(255,255,255,0.2);
}
.color-cap-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--primary);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.stat-plus { font-size: 30px; font-weight: 900; color: rgba(255,255,255,0.7); }
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .popular-products-grid { grid-template-columns: 1fr 1fr; }
  .color-features { grid-template-columns: 1fr; }
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 768px) {
  .popular-products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); }
  .stat-num { font-size: 40px; }
  .color-swatch-grid { grid-template-columns: repeat(4,1fr); }
  .process-cta-bar { flex-direction: column; align-items: flex-start; }
  .all-products-chips { gap: 8px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .popular-products-grid { grid-template-columns: 1fr; }
  .color-swatch-grid { grid-template-columns: repeat(4,1fr); }
  .prod-chip { font-size: 12px; padding: 5px 11px; }
}

/* ══════════════════════════════════════════════
   MEGA MENÜ — Bericap ilhamı
   ══════════════════════════════════════════════ */
.mega-parent { position: static !important; }
.mega-trigger { cursor: pointer; }
.mega-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: white;
  border-top: 3px solid var(--primary);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  pointer-events: none;
}
.navbar.scrolled .mega-menu { top: 60px; }
.mega-parent:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.mega-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  gap: 8px;
}
.mega-col {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #f0f0f0;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; }
.mega-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 16px;
}
/* Kategori linkleri */
.mega-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.mega-cat i { color: var(--primary); width: 16px; text-align: center; font-size: 13px; }
.mega-cat:hover { background: rgba(232,68,10,0.06); color: var(--primary); padding-left: 14px; }
/* Ürün linkleri */
.mega-prod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 3px;
}
.mega-prod:hover { background: #f7f7f7; color: var(--primary); }
.mega-prod-img {
  width: 36px; height: 36px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
/* Genel link */
.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.mega-link i { color: var(--primary); width: 16px; font-size: 13px; }
.mega-link:hover { background: rgba(232,68,10,0.06); color: var(--primary); padding-left: 14px; }
/* Kapak Bulucu kartı */
.mega-col-featured { flex: 0 0 220px; }
.mega-finder-card {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 12px;
}
.mega-finder-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px;
  margin-bottom: 12px;
}
.mega-finder-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin: 0 0 6px;
}
.mega-finder-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
  line-height: 1.5;
}
.mega-finder-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.mega-finder-btn:hover { background: #c73508; gap: 9px; }
.mega-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 6px 0;
}
.mega-all:hover { gap: 9px; }
/* Küçük mega menü */
.mega-menu-sm .mega-inner { max-width: 600px; margin: 0 auto 0 0; }
.mega-menu-sm .mega-col { flex: 1; }

/* Mobilde mega menü gösterme */
@media (max-width: 1024px) {
  .mega-menu { display: none !important; }
  .mega-trigger i { display: none; }
}
