/* Hero bolumu, eyebrow, h1, butonlar, hero gorseli, metrik seridi */

main {
  overflow-x: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 3rem;
  max-width: 1180px;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(23, 78, 166, 0.22);
}

.button-secondary {
  border-color: #cbd5e1;
  background: var(--white);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-panel > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel.large {
  inset: 0 5% 12% 0;
}

.visual-panel.small {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 38%;
  border: 8px solid var(--surface);
}

.metric-strip {
  position: absolute;
  left: -1rem;
  bottom: 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: min(520px, calc(100% + 1rem));
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.metric {
  padding: 0.7rem;
  border-radius: 6px;
  background: #f8fafc;
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.78rem;
}
