/* ============================================
   BBCHALLENGE — Pazarlama sayfası (home)
   Palet styles.css'ten devralınır (--accent gold, cream bg)
   ============================================ */

.home {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 13px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #d8c29a, var(--accent) 55%, var(--accent-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(198, 167, 105, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(198, 167, 105, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--icon);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.nav.scrolled {
  border-bottom-color: rgba(198, 167, 105, 0.22);
  box-shadow: 0 8px 30px rgba(74, 60, 49, 0.08);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(43, 43, 43, 0.72);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobil menüdeki CTA linkleri — masaüstünde gizli (sağdaki butonlar kullanılır) */
.nav-cta-link {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.6);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ---------- Genel bölüm ---------- */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  scroll-margin-top: 84px;
}

.section--soft[id],
.hero[id] {
  scroll-margin-top: 84px;
}

.section--soft {
  width: 100%;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(180deg, rgba(198, 167, 105, 0.06), rgba(198, 167, 105, 0.02));
  border-block: 1px solid rgba(198, 167, 105, 0.14);
}

.section--soft > * {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- HERO ---------- */
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  min-height: 560px;
}

.pill {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 105, 0.34);
  background: rgba(255, 255, 255, 0.6);
  color: var(--icon);
  font-size: 13px;
  font-weight: 700;
}

.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 17px;
  line-height: 1.62;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-badges span:first-child {
  color: var(--accent-dark);
}

.hero-media {
  position: relative;
  height: 100%;
  min-height: 480px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: url("assets/hero.jpeg") center 30% / cover;
  box-shadow: var(--shadow);
}

.hero-float {
  position: absolute;
  left: -14px;
  bottom: 30px;
  display: grid;
  gap: 3px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(74, 60, 49, 0.18);
}

.hero-float strong {
  font-size: 15px;
  color: var(--text);
}

.hero-float span {
  font-size: 12px;
  color: var(--muted);
}

/* Ürün sayfası (kalca-bandi) — kırpımı alta yasla ki alttaki BB damgası tam çıksın */
.product-photo {
  background-position: center bottom;
  background-size: cover;
}

.buy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Kalça bandı sayfası: özellik listesi ile satın al butonu arası boşluk */
.hero-highlights + .hero-cta {
  margin-top: 26px;
}

/* Fiyat + satın al satırı */
.product-buy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price-amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.01em;
}

/* İndirim: üstü çizili liste fiyatı */
.product-price-old {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted, #9a9a9a);
  text-decoration: line-through;
}

.price-old-inline {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 4px;
}

/* Vitrin kartlarında indirimli fiyat gösterimi */
.showcase-price.has-discount {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.showcase-price .price-old {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted, #9a9a9a);
  text-decoration: line-through;
}

.showcase-price .price-now {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Ürün detayları */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.spec-list {
  margin: 0;
  padding: 8px 4px;
  list-style: none;
  display: grid;
  gap: 2px;
}

.spec-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.spec-list li:last-child {
  border-bottom: 0;
}

.spec-list span {
  color: var(--muted);
  font-size: 14px;
}

.spec-list strong {
  color: var(--text);
  font-size: 15px;
  text-align: right;
}

.detail-note {
  padding: 24px;
  border-radius: 20px;
  background: rgba(198, 167, 105, 0.08);
  border: 1px solid rgba(198, 167, 105, 0.2);
}

.detail-note h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--accent-dark);
}

.detail-note p {
  margin: 0 0 12px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 14.5px;
  line-height: 1.62;
}

.detail-note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Ana sayfa kalça bandı tanıtım alanı */
.band-promo {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: stretch;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(74, 60, 49, 0.08);
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.band-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(198, 167, 105, 0.2);
}

.band-promo-media {
  min-height: 340px;
  background: url("assets/band/D4FCBA88-BAF6-4FA9-A452-1F9C1F13FD22.JPEG") center 50% / cover no-repeat;
}

.band-promo-text {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.band-promo-text h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.band-promo-text > p {
  margin: 0 0 22px;
  color: rgba(43, 43, 43, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.band-promo-text .btn {
  align-self: flex-start;
}

@media (max-width: 720px) {
  .band-promo {
    grid-template-columns: 1fr;
  }

  .band-promo-media {
    min-height: 240px;
  }

  .band-promo-text {
    padding: 32px 28px;
  }
}

/* Kalça bandı ürün galerisi */
.band-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.band-item {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 36px rgba(74, 60, 49, 0.08);
  aspect-ratio: 3 / 4;
}

.band-item--wide {
  grid-column: span 1;
}

.band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 760px) {
  .band-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .band-gallery {
    grid-template-columns: 1fr;
  }
}

/* ---------- İSTATİSTİKLER ---------- */
.stats {
  width: min(1180px, calc(100% - 40px));
  margin: 64px auto 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
  border-radius: 24px;
  background: var(--footer-bg);
  color: #fff;
  box-shadow: 0 24px 60px rgba(41, 35, 29, 0.24);
}

.stat {
  text-align: center;
  padding: 8px 12px;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--accent-light);
}

.stat strong span {
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.72);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(248, 245, 240, 0.7);
}

/* ---------- PROGRAM VİTRİNİ ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.showcase-status {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 18px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(74, 60, 49, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
  /* Kart bir <a> etiketi — varsayılan link stilini sıfırla */
  color: var(--text);
  text-decoration: none;
}

.showcase-card h3,
.showcase-card p,
.showcase-price {
  text-decoration: none;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(198, 167, 105, 0.2);
}

.showcase-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft) center / cover no-repeat;
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.5));
}

.showcase-daybadge {
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.showcase-deadline {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.showcase-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  flex: 1;
}

.showcase-body h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.showcase-body p {
  margin: 0;
  color: rgba(43, 43, 43, 0.66);
  font-size: 14.5px;
  line-height: 1.6;
  /* Paket açıklamasında girilen satır sonları/paragraf boşlukları korunsun
     (programlar.html'deki .program-desc ile aynı davranış). */
  white-space: pre-line;
}

.showcase-meals {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.showcase-meals figure {
  position: relative;
  margin: 0;
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 11px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}

.showcase-meals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 6px;
}

.showcase-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ---------- BAŞARI HİKAYELERİ ---------- */
.stories-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.story-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 34px rgba(74, 60, 49, 0.12);
  scroll-snap-align: start;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Fotoğrafların kolayca kaydedilmesini/sürüklenmesini zorlaştır */
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.32));
}

/* Tekrarlayan "BBCHALLENGE" filigranı (fotoğraf çalınmasını caydırır) */
.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='190'%20height='150'%3E%3Ctext%20x='95'%20y='75'%20fill='%23ffffff'%20fill-opacity='0.26'%20font-family='sans-serif'%20font-size='15'%20font-weight='700'%20letter-spacing='1.5'%20text-anchor='middle'%20transform='rotate(-28%2095%2075)'%3EBBCHALLENGE%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}

.story-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
}

/* ---------- ADIMLAR ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 28px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 36px rgba(74, 60, 49, 0.07);
}

.step-no {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  color: rgba(198, 167, 105, 0.55);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: rgba(43, 43, 43, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- ÖZELLİK BLOKLARI ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.feature-row + .feature-row {
  margin-top: 56px;
}

.feature-row--reverse .feature-media {
  order: 2;
}

.feature-media {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: center / cover no-repeat;
  box-shadow: var(--shadow);
}

.feature-media--a {
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1200&q=82");
}

.feature-media--b {
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1200&q=82");
}

.feature-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.feature-copy > p {
  margin: 0 0 18px;
  color: rgba(43, 43, 43, 0.7);
  font-size: 16px;
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(43, 43, 43, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(198, 167, 105, 0.18);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- SSS ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-dark);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(43, 43, 43, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

/* ---------- YORUMLAR ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 36px rgba(74, 60, 49, 0.07);
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.review-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- UYGULAMA İNDİR ---------- */
.app-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 84px auto;
  scroll-margin-top: 84px;
}

.app-cta-inner {
  padding: 52px 40px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -20%, rgba(198, 167, 105, 0.28), transparent 60%),
    var(--footer-bg);
  color: #fff;
  box-shadow: 0 24px 70px rgba(41, 35, 29, 0.24);
}

.app-cta-text .eyebrow {
  color: var(--accent-light);
}

.app-cta-text h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.01em;
}

.app-cta-text > p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(248, 245, 240, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  min-width: 200px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.store-btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-btn-text small {
  font-size: 11px;
  color: #555;
}

.store-btn-text strong {
  font-size: 17px;
  font-weight: 700;
}

/* ---------- SON CTA ---------- */
.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 84px auto;
  padding: 56px 40px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(198, 167, 105, 0.18), rgba(198, 167, 105, 0.04)),
    var(--footer-bg);
  color: #fff;
  box-shadow: 0 24px 70px rgba(41, 35, 29, 0.22);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.01em;
}

.cta-band p {
  margin: 0 0 26px;
  color: rgba(248, 245, 240, 0.78);
  font-size: 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(245, 242, 236, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(198, 167, 105, 0.22);
    box-shadow: 0 16px 40px rgba(74, 60, 49, 0.12);
    transform: translateY(-140%);
    transition: transform 260ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 16px;
  }

  /* Hamburger menü açıkken sağdaki CTA butonlarını gizle; onların yerine
     menü içindeki CTA linkleri (kalın) gösterilir */
  .nav-cta {
    display: none;
  }

  .nav-cta-link {
    display: block;
    font-weight: 700;
    color: var(--accent-dark);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 20px 0 10px;
  }

  .hero-media {
    min-height: 360px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row--reverse .feature-media {
    order: 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  /* Yalnızca dikey padding'i küçült; yatay padding'i SIFIRLAMA — aksi halde
     shorthand, .section--soft'un yan boşluğunu ezip metni ekran kenarına yapıştırır. */
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* Tam genişlikteki yumuşak bölümlerin içeriği telefonlarda kenara yapışmasın */
  .section--soft {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-cta {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
  }
}
