/* --- HERO paragraph --- */
.hero-product-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 1.5rem 0 1.5rem;
  max-width: 480px;
}

/* feature-list margin-bottom override */
.feature-list-hero {
  margin-bottom: 2rem;
}

/* Hero CTA buton satırı */
.hero-btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero küçük telefon satırı */
.hero-phone-row {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Telefon numarası linki */
.hero-phone-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}

/* iframe display:block + fill */
.iframe-block-fill {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hero video dekoratif orb */
.hero-video-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* --- PLATFORMS BAR --- */
.platforms-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

/* Platforms label */
.platforms-label {
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Platform badge'leri satırı */
.platforms-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Telefon kutusu */
.phone-highlight-box {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 184, 169, 0.06));
  border: 1px solid var(--border2);
  border-radius: 16px;
  display: inline-block;
}

/* Telefon kutusu üst yazı */
.phone-highlight-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Büyük telefon numarası linki */
.phone-highlight-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: block;
  transition: color 0.3s;
}

.phone-highlight-number:hover {
  color: var(--white);
}

/* --- FEATURES SECTION --- */
.features-section {
  padding: 6rem 2rem;
}

/* Özellikler başlık wrapper */
.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Özellikler label */
.features-label {
  justify-content: center;
  margin-bottom: 1rem;
}

/* Özellikler açıklama */
.features-desc {
  color: var(--muted);
  max-width: 520px;
  margin: 1rem auto 0;
  font-weight: 300;
  font-size: 1.05rem;
}

/* --- APP SCREENS SECTION --- */
.app-screens-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
}

/* App screens başlık wrapper */
.app-screens-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* App screens label */
.app-screens-label {
  justify-content: center;
  margin-bottom: 1rem;
}

/* App screens açıklama */
.app-screens-desc {
  color: var(--muted);
  max-width: 480px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* App screen kartı — link */
.app-screen-link {
  text-decoration: none;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
}

.app-screen-link:hover {
  transform: translateY(-8px);
  border-color: var(--border2);
}

/* App screen görsel wrapper */
.app-screen-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* App screen görsel */
.app-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* App screen alt bilgi satırı */
.app-screen-footer {
  padding: 0.8rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* App screen alt yazı */
.app-screen-caption {
  font-size: 0.8rem;
  color: var(--muted);
}

/* App screen ok işareti */
.app-screen-arrow {
  color: var(--cyan);
  font-size: 0.8rem;
}

/* --- CTA SECTION --- */
.cta-section-padded {
  padding: 6rem 2rem;
}

/* CTA başlık */
.cta-title {
  margin-bottom: 1rem;
}

/* CTA açıklama */
.cta-desc {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* CTA buton satırı */
.cta-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}