/* ===================================================
   ARAS ÇIKMA – Premium CSS
   Theme: Dark Anthracite + Gold + Silver
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Variables ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07828;
  --silver: #B0B8C8;
  --silver-light: #D8E0EC;
  --bg-dark: #121418;
  --bg-card: #1A1E26;
  --bg-card2: #20252F;
  --border: rgba(201, 168, 76, 0.2);
  --border-silver: rgba(176, 184, 200, 0.15);
  --text-primary: #F0F2F8;
  --text-muted: #7A8090;
  --text-gold: var(--gold);
  --text-silver: var(--silver-light);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Color Utilities ===== */
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver-light); }

/* ===== Buttons ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}
.btn-gold.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--silver-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid rgba(176, 184, 200, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== Section Labels ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(18, 20, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(18, 20, 24, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link { flex-shrink: 0; }
.nav-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
  transition: var(--transition);
}
.nav-logo:hover { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.6)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
=================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius);
  padding: 28px 40px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-silver);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===================================================
   ABOUT
=================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-gold);
}
.about-image-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.3), transparent, rgba(201,168,76,0.1));
  z-index: -1;
}
.about-logo-img {
  width: 100%;
  border-radius: var(--radius-sm);
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.badge-icon { font-size: 1.5rem; }
.about-badge-float strong { display: block; font-size: 0.9rem; color: #0a0a0a; font-weight: 700; }
.about-badge-float small { font-size: 0.75rem; color: rgba(0,0,0,0.6); }

.about-text { }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 10px 16px;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.feature-icon { font-size: 1rem; }

/* ===================================================
   PRODUCTS
=================================================== */
.products-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.product-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.product-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================================================
   HOW IT WORKS
=================================================== */
.how-section {
  padding: 100px 0;
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===================================================
   WHY US
=================================================== */
.why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: sticky;
  top: 100px;
}
.why-cta-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.4), transparent 60%);
  z-index: -1;
}
.why-cta-box { position: relative; }
.why-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.why-cta-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================================================
   CONTACT
=================================================== */
.contact-section {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-card a {
  color: var(--gold);
  font-weight: 600;
  transition: var(--transition);
}
.contact-card a:hover { color: var(--gold-light); }
.contact-card span {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  border-top: 1px solid var(--border-silver);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: wa-pop 0.5s ease 1.5s both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================================================
   RESPONSIVE
=================================================== */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 520px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-cta-box { position: static; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { gap: 12px; }
  .section-header { margin-bottom: 40px; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {

  /* Container */
  .container { padding: 0 16px; }

  /* Sections */
  .about-section,
  .products-section,
  .how-section,
  .why-section,
  .contact-section { padding: 64px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.75rem; }

  /* ── Navbar ── */
  .navbar { padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; }
  .nav-inner { gap: 12px; }
  .nav-logo { height: 56px; }

  /* Nav menü: tam ekran overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12, 14, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px 32px 40px;
    gap: 28px;
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  .hamburger { display: flex; margin-left: auto; z-index: 1001; position: relative; }
  .navbar .btn-gold { display: none; }

  /* ── Hero ── */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; padding: 0 8px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-scroll-indicator { display: none; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-wrap { max-width: 100%; }
  .about-image-card { padding: 24px; }
  .about-badge-float {
    position: static;
    margin-top: 20px;
    border-radius: var(--radius-sm);
    justify-content: center;
  }
  .about-features { grid-template-columns: 1fr; gap: 10px; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { padding: 24px 20px; }

  /* ── Steps ── */
  .steps-row { flex-direction: column; gap: 12px; }
  .step-arrow { transform: rotate(90deg); font-size: 1.5rem; }
  .step-card { padding: 28px 20px; }

  /* ── Why ── */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cta-box { padding: 32px 24px; }
  .why-cta-box h3 { font-size: 1.3rem; }
  .btn-gold.btn-large { padding: 14px 28px; font-size: 1rem; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-card { padding: 24px 16px; }
  .contact-icon { font-size: 1.6rem; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* ── Floating WA ── */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Hero */
  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  .hero-desc { font-size: 0.88rem; }

  /* Contact tek kolon */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 20px 16px; }

  /* Ürünler */
  .product-card { padding: 20px 16px; }
  .product-icon { font-size: 2rem; }

  /* Section title */
  .section-title { font-size: 1.5rem; }

  /* Why CTA */
  .why-cta-box { padding: 28px 20px; }

  /* Footer */
  .footer-logo img { height: 36px; }
  .footer-copy { font-size: 0.78rem; }
}
