/* === STYLE.CSS v3.4 - Antrasit + Container nav (slider hizasında) === */
:root {
  /* Yeni antrasit/gri palet - daha modern ve premium */
  --bg: #2A2D33;           /* Ana arka plan - antrasit */
  --bg-deep: #1F2126;      /* Footer/en koyu kısımlar */
  --surface: #34373E;      /* Kartlar */
  --surface-light: #40444C;/* Hover/açık kartlar */
  --line: rgba(255, 214, 10, 0.12);
  --line-bright: rgba(255, 214, 10, 0.28);
  --text: #FFFFFF;
  --text-muted: #C5C9D1;
  --text-dim: #8B8F99;
  --yellow: #FFD60A;
  --yellow-light: #FFE556;
  --yellow-deep: #E5B800;
  --yellow-soft: rgba(255, 214, 10, 0.08);
  --yellow-medium: rgba(255, 214, 10, 0.18);
  --amber: #F59E0B;
  --orange: #EA580C;
  --grad-primary: linear-gradient(135deg, #FFD60A 0%, #F59E0B 100%);
  --grad-warm: linear-gradient(135deg, #FFE556 0%, #EA580C 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animasyonlu sarı blob arka plan */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: blob-float 20s infinite ease-in-out;
}

.blob-1 { width: 500px; height: 500px; background: var(--yellow); top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--amber); top: 30%; right: -100px; animation-delay: -5s; }
.blob-3 { width: 450px; height: 450px; background: var(--yellow-light); bottom: -150px; left: 30%; animation-delay: -10s; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 214, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 10, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Top bar */
.top-bar {
  position: relative;
  z-index: 10;
  background: var(--yellow);
  color: var(--bg);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.top-bar .pulse-dot {
  width: 8px; height: 8px; background: var(--bg); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Navigation - Logo solda, menü ortada, buton sağda */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(42, 45, 51, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 1rem 3rem;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;  /* ← 4 sütun: Logo | Menü | Arama | Buton */
  align-items: center;
  gap: 1.5rem;
}

.logo-wrap {
  display: inline-flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
}

.logo-wrap img {
  height: var(--logo-size, 44px);
  width: auto;
  transition: height 0.2s;
  filter: drop-shadow(0 2px 8px rgba(255, 214, 10, 0.15));
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  align-items: center;
  justify-self: center;
}

nav > .btn-gradient {
  justify-self: end;
}

nav a {
  color: var(--text-muted); text-decoration: none;
  font-weight: 500; font-size: 0.92rem;
  transition: color 0.3s; position: relative;
}

nav a:hover { color: var(--yellow); }
nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

.btn-gradient {
  background: var(--grad-primary); color: var(--bg);
  padding: 0.75rem 1.75rem; border-radius: 100px;
  border: none; font-family: inherit; font-weight: 700;
  font-size: 0.88rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.3);
}

.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 214, 10, 0.5); }

/* Hero Slider */
.hero-slider {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  padding: 2rem 3rem; z-index: 5; overflow: hidden;
}

.slides { position: relative; width: 100%; max-width: 1400px; margin: 0 auto; }

.slide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: center; opacity: 0; visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.slide.active { opacity: 1; visibility: visible; transform: translateX(0); position: relative; }

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: var(--yellow-soft);
  border: 1px solid var(--line-bright); border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 1.5rem;
}

.slide-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
  animation: pulse 2s infinite;
}

.slide h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700; line-height: 1; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}

.slide h1 .yellow-text { color: var(--yellow); display: inline-block; }

.slide-text {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 520px; line-height: 1.7;
}

.slide-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-hero-primary {
  background: var(--yellow); color: var(--bg);
  padding: 1.1rem 2rem; border-radius: 100px; border: none;
  font-family: inherit; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(255, 214, 10, 0.3);
}

.btn-hero-primary:hover { transform: translateY(-3px); background: var(--yellow-light); }

.btn-hero-secondary {
  background: rgba(255, 214, 10, 0.05); backdrop-filter: blur(10px);
  border: 1px solid var(--line-bright); color: var(--yellow);
  padding: 1.1rem 2rem; border-radius: 100px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
}

.btn-hero-secondary:hover { background: var(--yellow-soft); border-color: var(--yellow); }

.hero-stats { display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }

.hero-stat .num {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700;
  line-height: 1; color: var(--yellow); margin-bottom: 0.3rem;
}

.hero-stat .label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-dim); font-weight: 500;
}

.slide-visual { position: relative; height: 580px; }

.product-float {
  position: absolute; background: white; border-radius: 24px;
  padding: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255, 214, 10, 0.1);
  transition: all 0.4s ease; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}

.product-float-img {
  width: 100%; height: 180px;
  background: linear-gradient(180deg, #FAFAFA 0%, #F0F0F0 100%);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; overflow: hidden; padding: 1rem;
}

.product-float-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform 0.4s ease;
}

.product-float:hover .product-float-img img { transform: scale(1.1); }

.product-float-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--yellow-deep); font-weight: 700; margin-bottom: 0.4rem;
}

.product-float-title {
  font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--bg); margin-bottom: 0.3rem; line-height: 1.3;
}

.product-float-meta { font-size: 0.78rem; color: var(--text-dim); }

.product-float.pf-1 { top: 0; right: 5%; width: 280px; animation: float-1 8s ease-in-out infinite; z-index: 3; }
.product-float.pf-2 { top: 25%; left: 0; width: 250px; animation: float-2 9s ease-in-out infinite; z-index: 2; }
.product-float.pf-3 { bottom: 0; right: 15%; width: 270px; animation: float-3 7s ease-in-out infinite; z-index: 4; }

@keyframes float-1 { 0%, 100% { transform: translate(0, 0) rotate(-3deg); } 50% { transform: translate(-10px, -15px) rotate(-2deg); } }
@keyframes float-2 { 0%, 100% { transform: translate(0, 0) rotate(4deg); } 50% { transform: translate(15px, 20px) rotate(3deg); } }
@keyframes float-3 { 0%, 100% { transform: translate(0, 0) rotate(-2deg); } 50% { transform: translate(-18px, -12px) rotate(-3deg); } }

.product-float:hover {
  transform: scale(1.05) translateY(-10px) !important;
  box-shadow: 0 30px 80px rgba(255, 214, 10, 0.25), 0 0 0 2px var(--yellow);
  z-index: 10;
}

.slider-controls {
  position: absolute; bottom: 3rem; right: 3rem;
  display: flex; gap: 0.75rem; z-index: 20;
}

.slider-dot {
  width: 32px; height: 4px; background: rgba(255, 214, 10, 0.2);
  border-radius: 2px; cursor: pointer; transition: all 0.4s;
  border: none; padding: 0;
}

.slider-dot.active { background: var(--yellow); width: 64px; }

/* Section */
.section { padding: 7rem 3rem; position: relative; z-index: 5; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 5rem; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: var(--yellow-soft);
  border: 1px solid var(--line-bright); border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.5rem;
}

.section-title .yellow-text { color: var(--yellow); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* Categories Grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.cat-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-primary); opacity: 0;
  transition: opacity 0.4s; z-index: -1;
}

.cat-card:hover {
  transform: translateY(-8px); border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(255, 214, 10, 0.25);
}

.cat-card:hover::before { opacity: 1; }
.cat-card:hover .cat-num, .cat-card:hover h3, .cat-card:hover p, .cat-card:hover .cat-arrow { color: var(--bg); }

.cat-num {
  font-family: 'Sora', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-dim); margin-bottom: 1.5rem; transition: color 0.4s;
}

.cat-icon {
  width: 56px; height: 56px; background: var(--yellow);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem;
  margin-bottom: 1.5rem; transition: all 0.4s;
}

.cat-card:hover .cat-icon { background: var(--bg); transform: scale(1.1) rotate(-5deg); }

.cat-card h3 {
  font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 700;
  margin-bottom: 0.75rem; letter-spacing: -0.01em; transition: color 0.4s;
}

.cat-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1.5rem; flex: 1; transition: color 0.4s;
}

.cat-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700; color: var(--yellow);
  transition: gap 0.3s, color 0.4s;
}

.cat-card:hover .cat-arrow { gap: 0.85rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-radius: 24px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-bright);
}

.about-visual::before {
  content: ''; position: absolute; top: -20%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--yellow-medium), transparent 70%);
}

.about-visual-content {
  text-align: center; position: relative; z-index: 2; padding: 3rem;
}

.about-visual-content .year {
  font-family: 'Sora', sans-serif; font-size: 8rem; font-weight: 800;
  line-height: 1; color: var(--yellow); margin-bottom: 1rem; letter-spacing: -0.03em;
}

.about-visual-content .desc {
  font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}

.about-visual-content .divider {
  width: 60px; height: 2px; background: var(--yellow);
  margin: 1.5rem auto; border-radius: 2px;
}

.about-visual-content .quote {
  font-family: 'Sora', sans-serif; font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,0.9);
  line-height: 1.5; max-width: 320px; margin: 0 auto;
}

.about-content > h2 {
  font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 2rem;
}

.about-content > h2 .yellow-text { color: var(--yellow); }

.about-content > p {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 1.5rem;
}

.values { margin-top: 3rem; display: grid; gap: 1rem; }

.value-row {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; transition: all 0.3s;
}

.value-row:hover {
  background: var(--yellow-soft); border-color: var(--line-bright);
  transform: translateX(8px);
}

.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--yellow); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-weight: 700; font-size: 1rem; color: var(--bg);
}

.value-text h4 {
  font-family: 'Sora', sans-serif; font-size: 1.05rem;
  font-weight: 600; margin-bottom: 0.3rem;
}

.value-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Stats */
.stats-section {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.04), rgba(245, 158, 11, 0.02));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; z-index: 5;
}

.stats-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}

.stat-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--surface); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 20px; transition: all 0.4s;
}

.stat-card:hover { border-color: var(--yellow); transform: translateY(-4px); background: var(--yellow-soft); }

.stat-num {
  font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1; color: var(--yellow);
  margin-bottom: 0.5rem; letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.service-card {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 1.75rem 1.25rem; text-align: center;
  transition: all 0.4s; cursor: default;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--yellow);
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}

.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); background: var(--yellow-soft); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Sora', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: var(--yellow); margin-bottom: 0.5rem;
}

.service-name { font-size: 0.88rem; font-weight: 600; }

/* Brands */
.brands { padding: 6rem 0 5rem; position: relative; z-index: 5; overflow: hidden; }
.brands-header { max-width: 1400px; margin: 0 auto 3.5rem; text-align: center; padding: 0 3rem; }

.brands-marquee {
  width: 100%; overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-bottom: 1.25rem;
}

.brands-track { display: flex; width: max-content; animation: scroll-brands 45s linear infinite; }
.brands-track:hover { animation-play-state: paused; }
.brands-track.reverse { animation: scroll-brands-reverse 40s linear infinite; }

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

.brand-card {
  flex-shrink: 0; background: var(--surface);
  backdrop-filter: blur(10px); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.25rem 2.5rem; margin: 0 0.5rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 200px; height: 80px;
  transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.brand-card:hover {
  transform: translateY(-6px); background: var(--yellow);
  border-color: var(--yellow); box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

.brand-name {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em; white-space: nowrap; transition: color 0.3s;
}

.brand-card:hover .brand-name { color: var(--bg); }

/* CTA */
.cta-section { padding: 8rem 3rem; position: relative; z-index: 5; overflow: hidden; }

.cta-box {
  max-width: 1100px; margin: 0 auto;
  background: var(--yellow); border-radius: 32px;
  padding: 5rem 4rem; position: relative; overflow: hidden; text-align: center;
}

.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(13, 13, 13, 0.15), transparent 60%);
  animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cta-box > * { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-block; padding: 0.5rem 1.25rem;
  background: rgba(13, 13, 13, 0.15); border: 1px solid rgba(13, 13, 13, 0.3);
  border-radius: 100px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 2rem; color: var(--bg);
}

.cta-box h2 {
  font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; color: var(--bg);
}

.cta-box p {
  font-size: 1.1rem; color: rgba(13, 13, 13, 0.8);
  margin-bottom: 2.5rem; max-width: 580px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-cta-primary {
  background: var(--bg); color: var(--yellow);
  padding: 1.1rem 2.5rem; border-radius: 100px; border: none;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.btn-cta-secondary {
  background: transparent; color: var(--bg);
  padding: 1.1rem 2.5rem; border-radius: 100px;
  border: 2px solid var(--bg);
  font-family: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-cta-secondary:hover { background: var(--bg); color: var(--yellow); }

/* Footer */
footer {
  padding: 5rem 3rem 2rem; position: relative; z-index: 5;
  border-top: 1px solid var(--line); background: var(--bg-deep);
}

.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}

.footer-brand-logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
  background: transparent;
  padding: 0;
}

.footer-brand-logo img {
  height: calc(var(--logo-size, 44px) * 1.05);
  filter: drop-shadow(0 2px 8px rgba(255, 214, 10, 0.15));
}

.footer-brand p {
  font-size: 0.9rem; color: var(--text-muted);
  max-width: 340px; margin-bottom: 2rem; line-height: 1.7;
}

.social-icons { display: flex; gap: 0.6rem; }

.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255, 214, 10, 0.08); border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); text-decoration: none;
  font-size: 0.78rem; font-weight: 700; transition: all 0.3s;
}

.social-icons a:hover { background: var(--yellow); color: var(--bg); transform: translateY(-3px); }

footer h5 {
  color: var(--yellow); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

footer ul a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; transition: color 0.3s;
}

footer ul a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 2.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: var(--text-dim);
}

/* Category Page */
.page-header {
  padding: 5rem 3rem 4rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line); z-index: 5;
}

.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 214, 10, 0.12), transparent 50%);
  z-index: -1;
}

.page-header-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: var(--yellow-soft);
  border: 1px solid var(--line-bright); border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--yellow); margin-bottom: 2rem;
  text-decoration: none; text-transform: uppercase; transition: all 0.3s;
}

.breadcrumb:hover { background: var(--yellow-medium); border-color: var(--yellow); }

.page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem; max-width: 800px;
}

.page-title .italic { color: var(--yellow); font-style: normal; }

.page-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 640px; margin-bottom: 2.5rem; line-height: 1.7;
}

.subcat-nav {
  background: rgba(42, 45, 51, 0.88); backdrop-filter: blur(20px);
  padding: 1.25rem 3rem;
  position: sticky; top: 78px; z-index: 90;
  overflow-x: auto; border-bottom: 1px solid var(--line);
}

.subcat-nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 0.5rem; flex-wrap: nowrap;
}

.subcat-pill {
  background: var(--yellow-soft); color: var(--text-muted);
  padding: 0.55rem 1.25rem; border-radius: 100px;
  border: 1px solid var(--line);
  font-family: inherit; font-weight: 500; font-size: 0.82rem;
  cursor: pointer; transition: all 0.3s; white-space: nowrap; text-decoration: none;
}

.subcat-pill:hover { background: var(--yellow-medium); border-color: var(--line-bright); color: var(--yellow); }
.subcat-pill.active { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }

.products-section { padding: 5rem 3rem; position: relative; z-index: 5; }
.products-inner { max-width: 1400px; margin: 0 auto; }
.subcat-block { margin-bottom: 5rem; }

.subcat-header {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.subcat-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.02em;
}

.subcat-header .subcat-icon {
  width: 52px; height: 52px; background: var(--yellow);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.3);
}

.subcat-count {
  margin-left: auto; font-family: 'Sora', sans-serif;
  font-size: 0.85rem; font-weight: 700; color: var(--yellow);
  letter-spacing: 0.05em;
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}

.product-tile {
  background: var(--surface); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: pointer; position: relative;
  display: flex; flex-direction: column; overflow: hidden;
}

.product-tile::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.product-tile:hover {
  background: var(--surface-light); border-color: var(--yellow);
  transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(255, 214, 10, 0.3);
}

.product-tile:hover::before { transform: scaleX(1); }

.product-image-wrap {
  background: white; border-radius: 12px; padding: 1rem;
  margin-bottom: 1.25rem; height: 180px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: all 0.3s;
}

.product-image-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; transition: transform 0.4s ease;
}

.product-tile:hover .product-image-wrap img { transform: scale(1.08); }

.product-emoji-fallback {
  font-size: 3rem; display: flex; align-items: center;
  justify-content: center; height: 100%; color: var(--yellow);
}

.product-name {
  font-family: 'Sora', sans-serif; font-size: 1.1rem;
  font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3;
  letter-spacing: -0.01em; color: var(--text);
}

.product-features {
  font-size: 0.85rem; color: var(--text-muted);
  list-style: none; display: flex; flex-direction: column;
  gap: 0.3rem; margin-bottom: 1rem; flex: 1;
}

.product-features li {
  padding-left: 1rem; position: relative; line-height: 1.5;
}

.product-features li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
}

.product-cta {
  margin-top: auto; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s; padding-top: 0.75rem;
  border-top: 1px solid var(--line); color: var(--yellow);
}

.product-tile:hover .product-cta { gap: 0.65rem; }

/* Responsive */
@media (max-width: 1024px) {
  .slide, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .slide-visual { height: 460px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 1rem 1.5rem; }
  .nav-inner { grid-template-columns: auto auto; gap: 1rem; }
  nav ul { display: none; }
  .logo-wrap img { height: calc(var(--logo-size, 44px) * 0.85); }
  .hero-slider, .section, .cta-section, .stats-section, footer, .products-section, .page-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .subcat-nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .cta-box { padding: 3rem 1.5rem; }
  .slide h1 { font-size: 2.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .slider-controls { right: 1.5rem; bottom: 1.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .product-tile { padding: 1rem; }
  .product-image-wrap { height: 140px; }
}
