/* ==================================================
   ARAK – MAIN (csak page tartalom)
================================================== */

.price-section{
  max-width: 1100px;
  margin: 80px auto;
  background: #fff;
  border-radius: 22px;
  padding: 60px 50px;
}

.price-header{
  text-align: center;
  margin-bottom: 50px;
}

.price-header h1,
.price-header h2{
  font-size: 34px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #222;
}

.price-header p{
  font-size: 15px;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================================================
   CÍMEK – narancs aláhúzás (kategóriánként)
================================================== */
.price-section > .price-header h1,
.fixed-section .price-header h2{
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.price-section > .price-header h1::after,
.fixed-section .price-header h2::after{
  content:"";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 56px;
  height: 3px;
  background: #ff8c00;
  border-radius: 2px;
}

/* ==================================================
   ÓRADÍJ KÁRTYÁK
================================================== */
.price-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.price-card{
  background: #f7f7f7;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.price-card::before{
  content:"";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  background: #ff8c00;
  border-radius: 999px 0 0 18px;
}

.price-card.featured{
  background: #fff;
  border: 1px solid rgba(255,140,0,0.25);
  box-shadow: 0 12px 30px rgba(255,140,0,0.18);
}

.badge{
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: #e6e6e6;
  color: #333;
  position: absolute;
  top: -12px;
  left: 20px;
}

.badge--urgent{ background: #ff8c00; color:#fff; }
.badge--duty{ background: transparent; color:#ff8c00; border:1px dashed rgba(255,140,0,0.5); }

.price-card h3{
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
}

.price-row{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}

.price-row strong{
  font-size: 24px;
  color:#111;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

/* “Első óra (kiszállással)” szebb tördeléshez */
.price-row span{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.price-note{
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-left: 4px;
  white-space: nowrap;
}

.price-card ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

.price-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#ff8c00;
  font-weight: 700;
}

/* ==================================================
   ELSŐ ÓRA INFO
================================================== */
.first-hour-box{
  background: #f7f7f7;
  border-radius: 18px;
  padding: 32px 36px;
  position: relative;
}

.first-hour-box::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:4px;
  background:#ff8c00;
  border-radius: 999px;
}

.first-hour-box .info-icon,
.fixed-info-box .info-icon{
  position:absolute;
  top:-14px;
  left:24px;
  width:28px;
  height:28px;
  background:#ff8c00;
  color:#fff;
  border-radius:50%;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.first-hour-box h4{ margin-bottom: 14px; color:#222; }

.first-hour-box ul{
  list-style:none;
  padding:0;
  margin:0 0 14px 0;
}

.first-hour-box li{
  position:relative;
  padding-left:22px;
  margin-bottom:8px;
  font-size:14px;
  color:#444;
}

.first-hour-box li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#ff8c00;
  font-weight:700;
}

.note{ font-size: 13px; color:#666; }

/* ==================================================
   FIX ÁRAS
================================================== */
.fixed-section{ margin-top: 80px; }

.fixed-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fixed-card{
  background:#f7f7f7;
  border-radius:18px;
  padding:28px 30px;
  position:relative;
}

.fixed-card::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  bottom:16px;
  width:4px;
  background:#ff8c00;
  border-radius:4px;
}

.fixed-card h3{
  font-size:16px;
  margin-bottom:18px;
  color:#222;
}

.fixed-card ul{ list-style:none; padding:0; margin:0; }

.fixed-card li{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e6e6e6;
}
.fixed-card li:last-child{ border-bottom: none; }

.fixed-card span{ color:#444; }
.fixed-card strong{ color:#111; white-space:nowrap; }

.fixed-info-box{
  background:#f7f7f7;
  border-radius:18px;
  padding:32px 36px;
  position:relative;
  margin-top:40px;
}

.fixed-info-box::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:#ff8c00;
  border-radius:18px 0 0 18px;
}

.fixed-info-box h4{
  margin-bottom:14px;
  font-size:16px;
  color:#222;
}

.fixed-info-box ul{ list-style:none; padding:0; margin:0 0 14px 0; }

.fixed-info-box li{
  position:relative;
  padding-left:22px;
  margin-bottom:8px;
  font-size:14px;
  color:#444;
}
.fixed-info-box li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#ff8c00;
  font-weight:700;
}

/* ==================================================
   GARANCIA – javított layout (a “furcsaság” oka ez volt)
================================================== */
.guarantee-section{
  background:#fff;
  border-radius:18px;
  padding: 40px 44px;
  margin: 50px auto 0;
  max-width: 1100px;
}

.guarantee-section .section-title{
  text-align:center;
  font-size: 22px;
  margin-bottom: 26px;
  position: relative;
  color:#222;
}

.guarantee-section .section-title::after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  background:#ff8c00;
  margin: 14px auto 0;
  border-radius:2px;
}

/* 🔑 desktopon a doboz lehet középen, de a lista legyen balra */
.guarantee-list{
  list-style:none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;     /* ettől nem lesz “túl szellős” */
  text-align: left;     /* ettől nem lesz “furcsa” */
}

.guarantee-list li{
  position: relative;
  padding-left: 26px;   /* pipa helye */
  margin-bottom: 12px;
  font-size: 14px;
  color:#444;
  line-height: 1.55;
}

.guarantee-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#ff8c00;
  font-weight:700;
}

/* ==================================================
   ZÁRÓ CTA
================================================== */
.final-cta{
  background: rgba(20,20,20,.94);
  padding: 80px 20px;
  text-align:center;
}
.final-cta-inner{ max-width: 800px; margin: 0 auto; }
.final-cta h2{ font-size: 28px; color:#fff; margin-bottom: 14px; line-height: 1.3; }
.final-cta p{ font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.6; }
.final-cta-buttons{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.final-cta-buttons a { min-width: 260px; padding: 14px 26px; border-radius: 12px; text-align: center; justify-content: center; }
.final-cta .cta-accent{ color:#ff8c00; font-weight:700; }

/* ==================================================
   MOBIL (≤900px) – egyben, tisztán
================================================== */
@media (max-width: 900px){

  .price-section{
    margin: 28px auto;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .price-header{ margin-bottom: 36px; }

  .price-header h1,
  .price-header h2{
    font-size: 22px;
    line-height: 1.2;
  }

  .price-header p{ font-size: 14px; line-height: 1.55; }

  .price-cards{ grid-template-columns: 1fr; gap: 20px; }
  .fixed-grid{ grid-template-columns: 1fr; gap: 20px; }

  .price-card,
  .fixed-card,
  .first-hour-box,
  .fixed-info-box{
    padding: 22px 18px;
    border-radius: 16px;
  }

  .price-row strong{ font-size: 20px; opacity: .92; }

  .fixed-card strong{ font-size: 14px; opacity: .92; }

  /* badge maradjon stabil */
  .price-card .badge{ left: 18px; }

  /* GARANCIA mobil – pipa beljebb + feszesebb */
  .guarantee-section{
    margin: 28px auto 0;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .guarantee-section .section-title{
    font-size: 18px;
    line-height: 1.25;
  }

  .guarantee-list{
    max-width: 100%;
  }

  .guarantee-list li{
    padding-left: 24px;  /* picit beljebb, mint eddig */
    margin-bottom: 10px;
  }

  /* Záró CTA mobil */
  .final-cta{
    padding: 52px 18px;
    background: rgba(20,20,20,.92);
  }
  .final-cta h2{
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .final-cta p{
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .final-cta-buttons{ gap: 10px; }
  .final-cta-buttons a{ width: 100%; }

  /* mobilon a záró CTA primary gombja tűnjön el (mert van fix CTA) */
  .final-cta-buttons .btn-primary{
    display: none !important;
  }
}


/* GARANCIA BLOKK – mobil finomhangolás */
@media (max-width: 900px) {

  .guarantee-section {
    padding: 28px 18px;
  }

  .guarantee-list {
    padding-left: 8px;   /* beljebb húzza az egészet */
  }

  .guarantee-list li {
    padding-left: 22px;  /* pipa + szöveg távolság jobb */
    line-height: 1.55;
  }

  .guarantee-list li::before {
    left: 0;
  }
}

.final-cta .cta-accent{
  color:#ff8c00;
  font-weight:700;
}

/* Garancia box és a záró CTA között legyen szellő */
.guarantee-section{
  margin-bottom: 80px;
}

/* Mobilon kicsit kisebb legyen a távolság */
@media (max-width: 900px){
  .guarantee-section{
    margin-bottom: 30px;
  }
}



/* =========================
   MOBIL – Price oldali blokkok margója beljebb
========================= */
@media (max-width: 900px) {

  .price-section,
  .guarantee-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

}





