/* ── PRIĖMIMO TVARKA PAGE ── */

main {
  padding: 100px 0 0 0;
}

.priemimo-page {
  background: #f8faf6;
  min-height: 100vh;
}

.priemimo-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 24px 70px;
}

.priemimo-header {
  background: linear-gradient(135deg, #4a5639 0%, #5f6e4c 45%, #6b7a58 100%);
  padding: 64px 20px 72px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  clip-path: ellipse(110% 100% at 50% 0%);
}

.priemimo-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 280px at 15% 60%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(700px 220px at 85% 30%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}

.priemimo-header-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-family: 'Nunito', sans-serif;
  position: relative;
}

.priemimo-header h1 {
  font-size: 2.8em;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
  text-shadow: none;
}

.priemimo-header p {
  font-size: 1.05em;
  opacity: 0.82;
  margin: 0;
  position: relative;
}

/* Steps */
.zingsniai {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.zingesnis {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #e8ede0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zingesnis:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.13);
}

.zingesnis-numeris {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #5f6e4c, #6b7a58);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4em;
  font-weight: 700;
}

.zingesnis-turinys h3 {
  color: #2d342b;
  font-size: 1.1em;
  margin: 0 0 8px;
}

.zingesnis-turinys p {
  color: #555;
  line-height: 1.65;
  margin: 0;
  font-size: 0.97em;
}

/* Info cards row */
.priemimo-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.info-kortele {
  background: white;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #e8ede0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-kortele i {
  color: #5f6e4c;
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-kortele h4 {
  color: #2d342b;
  margin: 0 0 6px;
  font-size: 1em;
}

.info-kortele p {
  color: #666;
  font-size: 0.9em;
  margin: 0;
  line-height: 1.5;
}

/* CTA */
.priemimo-cta {
  background: linear-gradient(135deg, #4a5639, #5f6e4c);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  color: white;
}

.priemimo-cta p {
  margin: 0 0 16px;
  font-size: 1.05em;
  opacity: 0.95;
}

.priemimo-cta a {
  display: inline-block;
  background: white;
  color: #5f6e4c;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.priemimo-cta a:hover {
  background: #2d342b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ── TABLET ── */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  .priemimo-container { max-width: 680px; padding: 44px 24px 56px; }
  .priemimo-header { padding: 52px 24px 46px; }
  .priemimo-header h1 { font-size: 2.3em; }
  .zingesnis { padding: 24px 22px; gap: 18px; }
  .priemimo-info-grid { gap: 16px; }
}

/* ── PHONE ── */
@media only screen and (max-width: 600px) {
  main { padding: 100px 16px 50px 16px; }
  .priemimo-header h1 { font-size: 1.8em; }
  .zingesnis { padding: 20px 18px; gap: 16px; }
  .zingesnis-numeris { width: 44px; height: 44px; min-width: 44px; font-size: 1.2em; }
  .priemimo-info-grid { grid-template-columns: 1fr; gap: 14px; }
}
