/* ═══════════════════════════════════════════════
   PARS GLOBAL — Shared Stylesheet
   Theme: Black Steel + Signal Red
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --ink:        #07070A;
  --ink-2:      #0D0D12;
  --ink-3:      #131318;
  --steel:      #1A1A22;
  --steel-2:    #222230;
  --line:       rgba(255,255,255,0.07);
  --line-dim:   rgba(255,255,255,0.035);

  --red:        #CC1512;
  --red-2:      #E82220;
  --red-3:      #FF3330;
  --red-dim:    rgba(204,21,18,0.12);
  --red-glow:   rgba(204,21,18,0.28);
  --red-border: rgba(204,21,18,0.30);

  --silver:     #B0BDD0;
  --amber:      #E5A00D;
  --fog:        #68778F;
  --fog-2:      #48566A;

  --white:      #FFFFFF;
  --off-white:  #F3F4F6;
  --border:     #E0E5EC;
  --border-2:   #CDD3DC;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --shadow-sm:  0 2px 14px rgba(0,0,0,0.28);
  --shadow:     0 8px 36px rgba(0,0,0,0.38);
  --shadow-lg:  0 20px 70px rgba(0,0,0,0.50);
  --shadow-red: 0 8px 30px rgba(204,21,18,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--ink); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.section-title.light { color: var(--white); }

.section-sub {
  color: var(--fog);
  font-size: 1rem;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}
.section-sub.light { color: var(--silver); opacity: 0.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius-xs);
  transition: all 0.25s var(--ease);
  white-space: nowrap; cursor: pointer; border: none;
  position: relative; overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-red {
  background: var(--red); color: white;
  box-shadow: 0 2px 14px rgba(204,21,18,0.30);
}
.btn-red:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-outline-red {
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: white; }

.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--steel-2); transform: translateY(-2px); }

.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-white-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }

/* ── LOGO ── */
.logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.logo-img.dark { filter: brightness(0); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dim);
  padding: 7px 0;
}

.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
}

.topbar-left { display: flex; gap: 24px; }

.topbar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: var(--fog);
  transition: color 0.2s; text-decoration: none;
}
.topbar-item:hover { color: var(--red); }
.topbar-item i { color: var(--red); font-size: 0.7rem; }

.topbar-right { display: flex; align-items: center; gap: 8px; }

.topbar-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 1px;
  background: var(--red-dim); color: var(--red);
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--red-border);
}
.topbar-badge i { animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 15px; border-radius: var(--radius-xs);
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  transition: all 0.2s;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--red); }

.chev { font-size: 0.62rem; margin-top: 1px; transition: transform 0.22s; }
.nav-item:hover .chev { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  margin-top: -2px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 248px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: dropFade 0.2s var(--ease) both;
  padding-top: 6px;
}
.nav-item:hover .dropdown { display: block; }

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  font-size: 0.86rem; font-weight: 500;
  color: var(--silver);
  border-bottom: 1px solid var(--line-dim);
  transition: all 0.2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 24px; }
.dropdown a i { color: var(--red); width: 16px; font-size: 0.82rem; }
.dropdown-header {
  display: block;
  padding: 10px 18px 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--line-dim);
}
.dropdown-header:first-child { padding-top: 14px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none;
}
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 28px; color: var(--silver);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--line-dim);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 36px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--ink);
  padding: 150px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,21,18,0.12) 0%, transparent 65%);
  right: 5%; top: -10%;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.page-hero-label::before { content: ''; width: 20px; height: 2px; background: var(--red); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400; line-height: 0.95;
  letter-spacing: 2px;
  color: white; margin-bottom: 16px;
}

.page-hero p { color: var(--silver); max-width: 560px; font-size: 1rem; opacity: 0.75; }
.page-hero .breadcrumb { margin-top: 24px; }

/* ── HAKKIMIZDA / INTRO SECTION ── */
.intro-section {
  padding: 72px 0 80px;
  background: var(--off-white);
}
.intro-grid {
  max-width: 800px;
  margin: 0 auto;
}
.intro-content .section-label { margin-bottom: 14px; }
.intro-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.intro-content p {
  color: var(--fog-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.intro-content p:last-child { margin-bottom: 0; }

/* ── HOME HERO ── */
.hero {
  position: relative;
  min-height: 72vh;
  background: var(--ink);
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero canvas,
.hero-grid,
.hero-radial {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero-desc {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn { margin-bottom: 0; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.trust-avatars {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.trust-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: var(--steel-2);
  border: 2px solid var(--line);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--silver);
  margin-left: -8px;
  line-height: 1;
  overflow: visible;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 2px; }
.trust-text small { color: var(--fog); font-size: 0.8rem; }

/* Hero sağ panel — özellikler listesi */
.hero-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.h-panel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-sm);
  min-height: 72px;
}
.h-panel.featured { border-color: var(--red-border); background: var(--red-dim); }
.panel-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.06);
  color: var(--red);
  font-size: 1.15rem;
  line-height: 1;
  overflow: visible;
}
.panel-ico i {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.h-panel > div:not(.panel-ico) {
  flex: 1;
  min-width: 0;
}
.h-panel h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
  line-height: 1.2;
}
.h-panel strong {
  display: block;
  color: white;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.h-panel p {
  color: var(--fog);
  font-size: 0.82rem;
  margin-top: 2px;
  line-height: 1.3;
}
.h-panel .panel-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.h-panel .panel-bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.5s var(--ease);
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panels { max-width: 480px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 56px; }
  .hero-trust { flex-wrap: wrap; }
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 30px; font-size: 0.8rem;
}
.breadcrumb a { color: var(--fog); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.15); }
.breadcrumb strong { color: var(--red); }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--red);
  padding: 52px 0;
  position: relative; overflow: hidden;
}

.stat-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(0,0,0,0.04) 24px,
    rgba(0,0,0,0.04) 48px
  );
}

.stat-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; position: relative; z-index: 1;
}

.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3.2rem; color: white; line-height: 1; letter-spacing: 2px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }

/* ── TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-xs);
}
.tag-red   { background: var(--red-dim); color: var(--red); border: 1px solid var(--red-border); }
.tag-green { background: rgba(22,163,74,0.10); color: #16a34a; border: 1px solid rgba(22,163,74,0.25); }
.tag-silver { background: rgba(176,189,208,0.12); color: var(--silver); border: 1px solid rgba(176,189,208,0.2); }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-3); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.9rem; background: white;
  color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  color: var(--fog); font-size: 0.87rem;
  line-height: 1.75; margin: 20px 0 26px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 8px; }

.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 0.88rem;
  transition: all 0.2s;
}
.footer-social:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }

.footer-col h5 {
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: white; margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 32px; height: 1px; background: var(--red);
}

.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: var(--fog); font-size: 0.86rem;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--red); transform: translateX(4px); }
.footer-col a i { font-size: 0.62rem; color: var(--red); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
  font-size: 0.78rem; color: var(--fog-2);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--fog-2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--red); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── SECTION LAYOUT ── */
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 54px; gap: 24px;
}

/* ── CARDS GRID ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── CATEGORIES SECTION (ana sayfa) ── */
.categories-section { padding: 72px 0; background: var(--off-white); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.cat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--red-dim);
  color: var(--red);
  font-size: 1.35rem;
  margin-bottom: 18px;
  overflow: visible;
}
.cat-icon i { display: inline-block; line-height: 1; vertical-align: middle; }
.cat-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.cat-card p {
  color: var(--fog);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
}
.cat-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.3px;
}
.cat-arrow { font-size: 0.75rem; color: var(--red); transition: transform 0.2s; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* ── PRODUCTS SECTION (ana sayfa) ── */
.products-section { padding: 72px 0; background: white; }
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover { border-color: var(--red-border); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.product-body { padding: 18px 20px; flex: 1; }
.product-cat { font-size: 0.72rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-body h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.product-body p { font-size: 0.85rem; color: var(--fog); line-height: 1.5; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border-2);
  gap: 12px;
}
.product-footer .detail { font-size: 0.85rem; color: var(--fog); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.product-footer .detail:hover { color: var(--red); }

/* ── ÜRÜN GRUPLARI SAYFASI ── */
.groups-section { padding: 56px 0 72px; background: var(--off-white); }
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.group-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.group-card:hover { border-color: var(--red-border); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }
.group-card-top { padding: 28px 24px 20px; }
.group-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.group-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--red-dim);
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 16px;
  overflow: visible;
}
.group-icon-wrap i { display: inline-block; line-height: 1; vertical-align: middle; }
.group-card-top h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.group-card-body { padding: 0 24px 20px; flex: 1; }
.group-card-body p { color: var(--fog); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.group-sub-list { list-style: none; padding: 0; margin: 0; }
.group-sub-item {
  border-top: 1px solid var(--border-2);
  padding: 12px 0;
}
.group-sub-item a { color: var(--ink-3); font-size: 0.9rem; transition: color 0.2s; }
.group-sub-item a:hover { color: var(--red); }
.group-card-footer { padding: 20px 24px; border-top: 1px solid var(--border-2); }
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--ink);
  color: white;
  padding: 32px 40px;
  border-radius: var(--radius);
}
.cta-banner h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.cta-banner p { color: var(--silver); font-size: 0.9rem; margin: 0; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ÜRÜNLER SAYFASI ── */
.products-page-section { padding: 48px 0 72px; background: var(--off-white); }
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
.products-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.sidebar-block { margin-bottom: 0; }
.sidebar-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-title i { color: var(--red); }
.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-item a {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.2s, color 0.2s;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-item.active a { background: var(--red-dim); color: var(--red); font-weight: 600; }
.filter-item:not(.active) a:hover { background: var(--off-white); color: var(--ink); }
.products-main { min-width: 0; }
.products-toolbar { margin-bottom: 20px; }
.products-count { font-size: 0.9rem; color: var(--fog); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.p-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-card:hover { border-color: var(--red-border); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.p-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.p-card .p-card-meta { font-size: 0.8rem; color: var(--fog); margin-bottom: 12px; }
.p-card .btn { margin-top: 10px; }
/* Ürünler sayfası: sadece görsel + başlık */
.p-card-simple {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 0;
  overflow: hidden;
}
.p-card-simple .p-thumb {
  aspect-ratio: 1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-card-simple .p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card-simple .p-title {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.p-card-simple:hover .p-title { color: var(--red); }

/* ── İLETİŞİM SAYFASI ── */
.contact-section { padding: 56px 0 72px; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.info-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--red-dim);
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: visible;
}
.info-card-icon i { display: inline-block; line-height: 1; vertical-align: middle; }
.info-card > div:last-child { min-width: 0; }
.info-card strong { display: block; font-size: 0.8rem; color: var(--fog); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.info-card span,
.info-card a { font-size: 1rem; color: var(--ink); text-decoration: none; }
.info-card a:hover { color: var(--red); }
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.form-card h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-card p { color: var(--fog); font-size: 0.9rem; margin-bottom: 24px; }

/* Buton metin rengi (tüm sayfalarda görünür olsun) */
.btn-red,
.btn.btn-red { color: #fff !important; }
.btn-red:hover,
.btn.btn-red:hover { color: #fff !important; }

/* ── ALERT ── */
.alert { padding: 14px 18px; border-radius: var(--radius-xs); margin-bottom: 20px; }
.alert-success { background: rgba(22,163,74,0.12); color: #15803d; border: 1px solid rgba(22,163,74,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .groups-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar .topbar-left { display: none; }
  .main-nav, .nav-actions { display: none; }
  .burger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border: none !important; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── RED GLOW PULSE ── */
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(204,21,18,0.25); }
  50%      { box-shadow: 0 0 40px rgba(204,21,18,0.50); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 52px; width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.marquee-sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* ── LINE ACCENTS ── */
.red-line {
  display: block; width: 48px; height: 3px;
  background: var(--red); border-radius: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(0,0,0,0.04) 28px, rgba(0,0,0,0.04) 56px);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); color: white; margin-bottom: 14px; letter-spacing: 2px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── SABIT WHATSAPP BUTONU (tüm sayfalarda) ── */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float i { display: block; }
@media (max-width: 768px) {
  .whatsapp-float { right: 30px; bottom: 24px; width: 52px; height: 52px; font-size: 1.5rem; }
}
