/* Ana görsel alanı — 06.09.2026 */
.hero-topline {
  justify-content: flex-end;
}

.hero-copy h1 {
  color: var(--cream);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
}

.hero-actions {
  align-items: center;
  gap: 12px;
}

.hero-cta {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: .875rem;
  font-weight: 600;
  gap: 28px;
  justify-content: center;
  letter-spacing: -.012em;
  line-height: 1;
  min-height: 56px;
  min-width: 0;
  padding: 0 20px;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.hero-cta-secondary {
  background: rgba(9, 28, 19, .2);
  border-color: rgba(248, 245, 238, .42);
  color: var(--cream);
}

.hero-cta-primary {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 9px 24px rgba(8, 25, 17, .13);
  color: var(--forest);
}

.hero-cta-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.0625rem;
  font-weight: 400;
  height: auto;
  justify-content: center;
  line-height: 1;
  transition: transform .25s ease;
}

.hero-cta-primary .hero-cta-icon {
  background: transparent;
  color: inherit;
}

.hero-cta-secondary .hero-cta-icon {
  background: transparent;
  border: 0;
  color: inherit;
}

.hero-bottom {
  justify-content: flex-end;
}

@media (pointer: fine) {
  .hero-cta:hover {
    transform: translateY(-2px);
  }

  .hero-cta:hover .hero-cta-icon {
    transform: translate(2px, -1px);
  }

  .hero-cta-primary:hover {
    background: #eee8dc;
    border-color: #eee8dc;
  }

  .hero-cta-secondary:hover {
    background: rgba(248, 245, 238, .1);
    border-color: rgba(248, 245, 238, .72);
  }
}

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
    gap: 10px;
    width: min(100%, 315px);
  }

  .hero-cta,
  .hero-cta-secondary {
    font-size: .8125rem;
    justify-content: space-between;
    min-height: 52px;
    min-width: 0;
    padding: 0 18px;
    width: 100%;
  }

  .hero-cta-icon {
    flex-basis: auto;
    height: auto;
  }
}
