/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --red-light: #e74c3c;
  --gray-50:   #fafafa;
  --gray-100:  #f4f4f4;
  --gray-300:  #d1d1d1;
  --gray-600:  #555;
  --gray-800:  #222;
  --white:     #fff;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navbar ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--red-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background var(--transition);
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo span { color: #ffcdd2; }

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: #ffcdd2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  background: #f7f8fc;
  overflow: hidden;
  padding-top: 68px; /* navbar yüksekliği */
}

/* Arka plan dekorasyon */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.10) 0%, transparent 70%);
}

.hero-bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
}

/* Nokta ızgarası */
.shape-1 {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c0392b18 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.shape-2, .shape-3 { display: none; }

/* Sağ panel kırmızı accent şeridi */
.hero-accent-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 0 0 0 6px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
  box-shadow: 0 4px 14px rgba(192,57,43,0.3);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
}

/* Başlık */
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 2px;
}

/* Alt metin */
.hero-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 500px;
}

/* Butonlar */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hero-actions .btn {
  flex: none;
  width: 200px;
  height: 50px;
  padding: 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(192,57,43,0.35);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(192,57,43,0.45);
}

.btn-ghost {
  background: var(--white);
  color: var(--red-dark);
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Marka logoları */
.hero-brands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.hero-brands-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  white-space: nowrap;
  margin-right: 0.3rem;
}

.hero-brand-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 8px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.hero-brand-link:hover {
  border-color: var(--red-light);
  box-shadow: 0 4px 16px rgba(192,57,43,0.15);
  transform: translateY(-2px);
}

.hero-brand-logo {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}

.hero-brand-sep { color: var(--gray-300); font-size: 1.2rem; }

/* İstatistik kartları */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: 3px solid var(--red);
  border-radius: 16px;
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.14);
}

.hero-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Genel buton — diğer section'lar için */
.btn-white {
  background: var(--white);
  color: var(--red-dark);
}

.btn-white:hover {
  background: #ffcdd2;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--red-dark);
  border: 2px solid var(--red-dark);
}

.btn-outline:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Section Common ───────────────────────────────── */
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-title span { color: var(--red); }

.divider {
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.section-intro {
  color: var(--gray-600);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ─── Hakkımızda ───────────────────────────────────── */
#hakkimizda { background: var(--gray-50); }

.about-grid {
  margin-top: 3rem;
}

.about-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1.4rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.about-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.about-card h3 a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}

.about-card h3 a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.about-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Misyon & Vizyon ──────────────────────────── */
#misyon-vizyon {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(255,255,255,0.5);
  border-radius: 10px 0 0 10px;
}

.mv-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.mv-card .mv-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.mv-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
}

#misyon-vizyon .section-label { color: rgba(255,255,255,0.7); }
#misyon-vizyon .section-title { color: var(--white); }
#misyon-vizyon .section-title span { color: #ffcdd2; }
#misyon-vizyon .divider { background: rgba(255,255,255,0.5); }
#misyon-vizyon .section-intro { color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ─── Hizmetler ────────────────────────────────────── */
#hizmetler { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.12);
  border-color: var(--red-light);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ─── İletişim ──────────────────────────────────────── */
#iletisim { background: var(--gray-100); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 0.2rem;
}

.contact-item .detail span {
  color: var(--gray-800);
  font-size: 0.98rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2.4rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
  background: var(--white);
}

.form-group textarea { min-height: 130px; }

#contact-form .btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid transparent;
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-form .btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192,57,43,0.3);
}

/* Mesaj bildirimi */
#form-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

#form-msg.success { background: #e8f5e9; color: #2e7d32; }
#form-msg.error   { background: #ffebee; color: #b71c1c; }

/* ─── Footer ───────────────────────────────────────── */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.88rem;
}

footer strong { color: var(--white); }

/* ─── Scroll-to-top ────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--red);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(192, 57, 43, 0.15);
  transition: opacity 0.4s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--red);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.35);
  transform: translateY(-3px);
}

#scroll-top:hover svg { stroke: var(--white); transform: translateY(-2px); }

/* ─── Responsive ───────────────────────────────────── */

/* Tablet geniş: 1024px */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero-stats {
    gap: 0.9rem;
  }

  .hero-stat-card {
    padding: 1.5rem 1rem;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }
}

/* ─── Başarı Popup Modal ────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 18px;
  padding: 2.6rem 2.8rem 2.2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}

.modal-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.modal-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.6rem;
}

.modal-box p {
  color: var(--gray-600);
  font-size: 0.97rem;
  margin-bottom: 1.8rem;
}

.modal-close {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  padding: 0.75rem 2.6rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(192,57,43,0.45);
}

/* Tablet: 768px */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--red-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-left: none;
  }

  /* Hero */
  #hero {
    min-height: unset;
  }

  .hero-inner {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-accent-bar { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-badge { margin: 0 auto 1.2rem; }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.97rem;
  }

  .hero-title span::after { display: none; }

  .hero-actions {
    justify-content: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-brands {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-brand-logo {
    max-height: 32px;
    max-width: 110px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 560px;
    margin: 0 auto;
    gap: 0.8rem;
  }

  .hero-stat-card {
    padding: 1.2rem 0.7rem;
  }

  .hero-stat-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .hero-stat-num  { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Diğer */
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobil: 540px */
@media (max-width: 540px) {
  .hero-inner {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-brands {
    gap: 0.5rem;
  }

  .hero-brand-sep { display: none; }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    max-width: 340px;
  }

  .hero-stat-card {
    padding: 1.2rem 0.8rem;
  }

  .hero-stat-num { font-size: 1.7rem; }
}

/* Küçük mobil: 375px */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-brands {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    max-width: 280px;
  }
}
