/* Ana sayfa — profesyonel düzen */
.page-home main {
  background: var(--cream-50);
}

/* Hızlı erişim şeridi */
.home-strip {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.home-strip-grid {
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: 2rem;
  align-items: center;
}

.home-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gt-earth-700);
}

.home-strip-eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gt-earth-700), var(--gt-spice));
}

.home-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.home-strip-title span {
  color: var(--brown-600);
}

.home-strip-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.home-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Metrikler */
.home-metrics {
  padding: 0 0 3.5rem;
  margin-top: -1px;
  background: var(--white);
}

.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-metric {
  padding: 1.35rem 1.25rem;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.home-metric:hover {
  border-color: rgba(115, 73, 49, 0.25);
  box-shadow: var(--shadow-card);
}

.home-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.875rem;
  border-radius: var(--radius);
  background: var(--gt-cream-100);
  color: var(--gt-earth-700);
  box-shadow: var(--shadow);
}

.home-metric-value {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.home-metric-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Bölüm başlıkları */
.home-section {
  padding: 4.5rem 0;
}

.home-section--alt {
  background: var(--cream-100);
}

.home-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.home-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-section-head--center .home-section-desc {
  margin-inline: auto;
}

.home-section-desc {
  margin: 0.5rem 0 0;
  max-width: 32rem;
  color: var(--text-muted);
}

.home-section h2,
.home-about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

/* Hakkında */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-check-list {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.home-check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.home-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gt-earth-700);
}

/* Zaman çizelgesi */
.home-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-timeline-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.home-timeline-item--accent {
  border-color: rgba(220, 38, 38, 0.25);
  background: linear-gradient(180deg, var(--white) 0%, rgba(220, 38, 38, 0.04) 100%);
}

.home-timeline-year {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-earth-700);
}

.home-timeline-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--text);
}

.home-timeline-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Değer kartları */
.home-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-value-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.home-section--alt .home-value-card {
  background: var(--white);
}

.home-value-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(220, 38, 38, 0.15);
}

.home-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--cream-100);
}

.home-value-icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.home-value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.home-value-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Ürün önizleme */
.home-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.home-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.home-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-product-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.home-product-body p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.home-product-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gt-earth-700);
}

.home-product-link:hover {
  color: var(--gt-spice);
}

/* Franchise — bayilik modelleri */
.home-franchise {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--white) 100%);
}

.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.home-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 23, 42, 0.12);
}

.home-package-card--featured {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.08),
    0 20px 48px rgba(220, 38, 38, 0.12);
}

.home-package-card--featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.15),
    0 28px 56px rgba(220, 38, 38, 0.16);
}

.home-package-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.04) 100%);
  border-bottom: 1px solid rgba(220, 38, 38, 0.12);
}

.home-package-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

.home-package-badge--accent {
  color: var(--gt-cream-50);
  background: linear-gradient(135deg, var(--gt-spice-light), var(--gt-spice));
  border-color: var(--gt-spice-hover);
  box-shadow: var(--btn-shadow-spice);
}

.home-package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 0;
}

.home-package-card-top--featured {
  justify-content: flex-start;
  padding-top: 1.25rem;
}

.home-package-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--cream-100);
  color: var(--brown-700);
  border: 1px solid var(--border);
}

.home-package-card--featured .home-package-icon {
  background: linear-gradient(145deg, var(--gt-earth-600), var(--gt-earth-700));
  color: var(--gt-cream-200);
  border-color: transparent;
}

.home-package-tier {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-package-card h3 {
  margin: 0;
  padding: 1rem 1.75rem 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.home-package-desc {
  margin: 0;
  padding: 0.65rem 1.75rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-package-features {
  flex: 1;
  margin: 1.25rem 0 0;
  padding: 1.25rem 1.75rem;
  list-style: none;
  border-top: 1px solid var(--border);
  background: var(--cream-50);
}

.home-package-features li {
  position: relative;
  padding-left: 1.625rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.45;
}

.home-package-features li:last-child {
  margin-bottom: 0;
}

.home-package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23734931' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-package-foot {
  padding: 1.5rem 1.75rem 1.75rem;
}

.home-package-invest {
  margin: 0 0 1rem;
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.home-package-invest strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.home-franchise-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 2rem 0 0;
  font-size: 0.9375rem;
}

.home-franchise-footer a {
  font-weight: 600;
  color: var(--gt-earth-700);
}

.home-franchise-footer a:hover {
  color: var(--gt-spice);
}

.home-franchise-footer span {
  color: var(--text-muted);
  opacity: 0.5;
}

/* Süreç */
.home-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: home-step;
}

.home-process-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.home-section--alt .home-process-step {
  background: var(--white);
}

.home-process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brown-800);
  border-radius: 50%;
}

.home-process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.home-process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Blog */
.home-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.home-blog-card:hover {
  box-shadow: var(--shadow-card);
}

.home-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-blog-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
}

.home-blog-body time {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.home-blog-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.35;
}

.home-blog-body h3 a:hover {
  color: var(--gt-spice);
}

.home-blog-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Alıntı */
.home-quote {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--gt-earth-700) 0%, var(--gt-earth-900) 100%);
  color: var(--text-on-dark);
  text-align: center;
}

.home-quote-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.home-quote-mark {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gt-cream-200);
  opacity: 0.9;
}

.home-quote-text {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.55;
}

.home-quote cite {
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(248, 250, 252, 0.7);
}

/* CTA */
.home-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gt-earth-800) 0%, var(--gt-earth-900) 100%);
  color: var(--text-on-dark);
}

.home-cta-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.5rem 0 0.75rem;
}

.home-cta p {
  margin: 0;
  max-width: 28rem;
  color: rgba(248, 250, 252, 0.85);
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.home-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.home-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Sembol şeridi */
.page-home .heritage-ribbon {
  background: var(--cream-100);
  border-block: 1px solid var(--border);
}

.page-home .heritage-ribbon-icon {
  opacity: 0.92;
  /* Açık zemin: style.css’teki invert filtresi ikonları arka planla kaynaştırıyordu */
  filter: none;
}

.page-home .heritage-ribbon-icon:hover {
  opacity: 1;
  filter: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-metrics-grid,
  .home-timeline,
  .home-values,
  .home-products,
  .home-process,
  .home-blog {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-packages-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .home-about-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .home-strip-grid {
    grid-template-columns: 1fr;
  }

  .home-strip-actions {
    justify-content: flex-start;
  }

.home-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-strip-actions .btn {
  flex: 1;
  min-width: 10.5rem;
}

  .home-metrics-grid,
  .home-timeline,
  .home-values,
  .home-products,
  .home-process,
  .home-blog {
    grid-template-columns: 1fr;
  }

  .home-packages-grid {
    max-width: none;
  }


  .home-section {
    padding: 3.5rem 0;
  }

  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-actions {
    width: 100%;
  }

  .home-cta-actions .btn {
    flex: 1;
    min-width: 0;
  }
}
