* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: #0F172A;
  background: #ffffff;
}

/* === HERO === */
.hero {
  padding: 96px 24px 56px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

/* === A KURVA GOMB === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  padding: 0 38px;

  background: #4B63D6;
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  cursor: pointer;

  box-shadow:
    0 12px 24px rgba(75, 99, 214, 0.28),
    inset 0 -1px 0 rgba(255,255,255,0.25);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px rgba(75, 99, 214, 0.34),
    inset 0 -1px 0 rgba(255,255,255,0.3);
}

.cta-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 8px 16px rgba(75, 99, 214, 0.24);
}

/* === ALSÓ SZEKCIÓ === */
.info-section {
  background: linear-gradient(
    180deg,
    #F1F4FA 0%,
    #E6ECF7 55%,
    #DCE3F3 100%
  );
  padding: 48px 24px 72px;
}

.info-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-block h3,
.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.info-block ul {
  padding-left: 18px;
  margin: 0;
}

.info-block li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #475569;
}

.info-card {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* === MOBIL === */
@media (max-width: 768px) {
  .hero {
    padding: 56px 20px 36px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-button {
    width: 100%;
    height: 52px;
    font-size: 15px;
    border-radius: 14px;
  }

  .info-section {
    padding: 36px 20px 56px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .info-block h3,
  .info-card h3 {
    font-size: 16px;
  }

  .info-block li {
    font-size: 14px;
  }

  .info-card {
    font-size: 13px;
    padding: 16px 18px;
  }
}

/* === Kis mobil === */
@media (max-width: 375px) {
  .hero {
    padding: 48px 16px 32px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .info-section {
    padding: 32px 16px 48px;
  }
}