.hero * {
  position: relative;
  z-index: 10;
}

.hero-video {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0 !important;
}

.hero-bg-overlay {
  position: absolute !important;
  inset: 0;
  background: rgba(20, 8, 2, 0.60);
  z-index: 1 !important;
}


/* ── Hero ── */
.hero {
  padding: 110px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
}

/* Gölgeleme kaldırıldı — düz koyu overlay */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 8, 2, 0.62);
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; color: #F5C97A;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1.5px; background: #F5C97A;
}

/* Yazı tam beyaz, net */
.hero h1 {
  font-size: clamp(42px, 7vw, 80px);
  color: #FFFFFF;
  margin-bottom: 22px; line-height: 1.08;
  letter-spacing: -0.02em; min-height: 1.2em;
  text-shadow: none;
}

.typewriter-cursor {
  display: inline-block; color: #F5C97A; font-weight: 300;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Alt yazı daha net */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.75; font-weight: 400;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Outline buton daha belirgin */
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.10);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.20);
  border-color: #fff;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap;
}
.hero-stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: #F5C97A; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.80); margin-top: 2px; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(30px, 4.5vw, 48px); color: var(--ink); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--ink-muted); max-width: 460px; margin: 0 auto; font-weight: 400; }

/* ── How it works ── */
.how-it-works { padding: 80px 0; background: var(--bg2); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.step-card {
  text-align: center; padding: 32px 20px; position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); cursor: pointer;
  transition: all 0.3s ease; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: #5C2D0A; opacity: 0; transition: opacity 0.3s ease; border-radius: var(--radius-lg);
}
[data-theme="dark"] .step-card::before { background: #3D1F0A; }
.step-card:hover::before { opacity: 1; }
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-icon {
  font-size: 30px; margin-bottom: 14px;
  position: relative; z-index: 1; display: block;
  transition: transform 0.4s ease;
}
.step-card:hover .step-icon { transform: rotate(360deg) scale(1.2); }

.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--gold);
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.step-card:hover .step-num { background: var(--gold); color: #fff; border-color: var(--gold); transform: rotate(360deg) scale(1.15); }
.step-card h3 { font-size: 17px; margin-bottom: 8px; font-family: var(--font-display); position: relative; z-index: 1; transition: color 0.3s; }
.step-card:hover h3 { color: #fff; }
.step-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.65; position: relative; z-index: 1; transition: color 0.3s; }
.step-card:hover p { color: rgba(255,255,255,0.75); }

/* ── Letter types ── */
.letter-types { padding: 80px 0; }
.types-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.type-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition); cursor: pointer;
}
.type-card:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.type-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.type-card h3 { font-size: 19px; margin-bottom: 6px; }
.type-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

/* ── Features ── */
.features { padding: 80px 0; background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: #5C2D0A; transition: height 0.4s ease; z-index: 0;
}
[data-theme="dark"] .feature-card::before { background: #3D1F0A; }
.feature-card:hover::before { height: 100%; }
.feature-card:hover { border-color: var(--gold); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
  position: relative; z-index: 1; transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.15); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; position: relative; z-index: 1; transition: color 0.3s; }
.feature-card:hover h3 { color: #fff; }
.feature-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.65; position: relative; z-index: 1; transition: color 0.3s; }
.feature-card:hover p { color: rgba(255,255,255,0.75); }

/* ── Testimonials ── */
.testimonials { padding: 80px 0; background: var(--bg2); }

.testimonial-featured {
  background: var(--navy-soft); border-radius: var(--radius-lg);
  padding: 40px 44px; margin-bottom: 20px;
  position: relative; overflow: hidden;
  display: flex; gap: 40px; align-items: center;
}
[data-theme="dark"] .testimonial-featured { background: #3D1F0A; border: 1px solid var(--border); }
.testimonial-featured::before {
  content: '\201C'; position: absolute; top: -10px; left: 20px;
  font-family: var(--font-display); font-size: 140px;
  color: var(--gold); opacity: 0.2; line-height: 1; pointer-events: none;
}
.testimonial-featured-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 21px; color: #fff; line-height: 1.6; flex: 1; position: relative; z-index: 1;
}
[data-theme="dark"] .testimonial-featured-quote { color: var(--ink); }
.testimonial-featured-author { flex-shrink: 0; text-align: center; z-index: 1; }
.testimonial-featured-stars { color: #F5C97A; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-featured-avatar {
  width: 68px; height: 68px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; color: #fff;
  margin: 0 auto 10px; border: 3px solid rgba(196,120,42,0.4);
}
.testimonial-featured-name { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-featured-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }
[data-theme="dark"] .testimonial-featured-name { color: var(--ink); }
[data-theme="dark"] .testimonial-featured-role { color: var(--ink-muted); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
.testimonial-card {
  background: var(--surface); border: 0.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 22px 20px; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold-light); font-size: 11px; letter-spacing: 1.5px; margin-bottom: 10px; }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-pale); border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 11px; color: var(--ink-faint); }
.testimonial-stats {
  display: flex; background: var(--surface);
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
}
.testimonial-stat { flex: 1; padding: 18px 12px; text-align: center; border-right: 1px solid var(--border); }
.testimonial-stat:last-child { border-right: none; }
.testimonial-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); }
.testimonial-stat-lbl { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

/* ── FAQ ── */
.faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-family: var(--font-display); font-size: 18px;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-chevron {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 11px; color: var(--ink-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--gold); color: var(--gold); }
.faq-answer {
  font-size: 15px; color: var(--ink-muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 24px 80px;
}

.cta-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.15);
  transition: transform 0.1s linear;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 2, 0.65);
  z-index: 1;
}

.cta-banner .cta-inner {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
}

.cta-banner .cta-inner::before,
.cta-banner .cta-inner::after { display: none; }

.cta-banner .cta-inner h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner .cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-banner .btn-gold {
  font-size: 15px;
  padding: 14px 40px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-featured { gap: 24px; padding: 32px 28px; }
  .testimonial-featured-quote { font-size: 18px; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 48px; border-radius: 0 0 24px 24px; }
  .types-grid, .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { flex-direction: column; padding: 28px 24px; text-align: center; }
  .testimonial-featured-quote { font-size: 17px; }
  .testimonial-stats { flex-wrap: wrap; }
  .testimonial-stat { min-width: 50%; border-bottom: 1px solid var(--border); }
  .hero-stats { gap: 24px; }
  .cta-inner { padding: 48px 24px; }
}
