/* Minimal reset jellegű alap */
:root{
  --container: 1160px;
  --pad: 24px;
  --text: #0f172a;           /* sötét navy */
  --muted: #475569;          /* szürke */
  --accent: #06b6d4;         /* türkiz/cyan */
  --border: #cbd5e1;
  --shadow: 0 24px 48px rgba(15, 23, 42, .12);
  --radius: 18px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

:root{
  --font-heading: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

body{
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .section__title, .hero__title{
  font-family: "Poppins", sans-serif; 
  letter-spacing: -0.02em;
}

.hero{
  padding: 96px 0;
}

.hero__container{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero__title{
  margin: 0 0 18px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
  font-size: clamp(40px, 4.2vw, 72px);
}

.hero__title-line{
  display: block;
}

.hero__title-line--accent{
  color: var(--accent);
}

.hero__subtitle{
  margin: 0 0 28px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero__actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
  user-select: none;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(6, 182, 212, .25);
}

.btn--primary:hover{
  box-shadow: 0 14px 26px rgba(6, 182, 212, .32);
}

.btn--ghost{
  background: #ffffff;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover{
  border-color: #94a3b8;
}

.btn__icon{
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

/* Media */
.hero__figure{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__image{
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .hero{
    padding: 72px 0;
  }
  .hero__container{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__media{
    order: -1;
  }
}
/* Section head */
.section{ padding: 86px 0; }
.section__head{ text-align:center; margin-bottom: 44px; }
.section__title{
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3vw, 44px);
}
.section__subtitle{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.65;
}

/* Cards */
.cards{
  display: grid;
  gap: 22px;
}
.cards--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.card__icon{ margin-bottom: 18px; }
.icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(6, 182, 212, .16);
  color: var(--accent);
  font-weight: 800;
}
.icon-badge--light{ background: rgba(6, 182, 212, .10); }

.card__title{
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--text);
  font-size: 18px;
}
.card__text{ margin:0; color: var(--muted); line-height: 1.7; font-size: 14.5px; }

/* Services: alsó kettő “széles” + középre */
.card--wide{ grid-column: span 1; }
@media (min-width: 1100px){
  .card--wide{ grid-column: span 1; }
  /* trükk: 5 elemnél a 4-5 középre kerül */
  .cards--3 > .card:nth-child(4){ grid-column: 1 / span 1; }
  .cards--3 > .card:nth-child(5){ grid-column: 2 / span 1; }
}

/* Process step badge */
.process__card{ position: relative; }
.step-badge{
  position: absolute;
  top: -16px;
  left: -16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}

/* Panel + checklist */
.panel{
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: rgba(6, 182, 212, .06);
  padding: 34px;
}
.checkgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}
.checkitem{ display:flex; gap: 12px; align-items:flex-start; }
.checkitem__icon{
  margin-top: 2px;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  flex: 0 0 26px;
}
.checkitem__text{ color: var(--text); line-height: 1.6; }

.panel__divider{
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, .45);
  margin: 22px 0;
}
.panel__bonus{ margin:0; text-align:center; color: var(--text); }
.panel__bonus-label{ color: var(--accent); font-weight: 800; margin-right: 6px; }
.panel__note{ margin: 10px 0 0; text-align:center; color: var(--muted); font-size: 13px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: start;
}

.contact__form{
  margin: 0 auto;
}
.field{ margin-bottom: 16px; }
.field__label{
  display:block;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}
.field__input{
  width:100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: #f8fafc;
}
.field__input:focus{
  border-color: rgba(6, 182, 212, .65);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, .14);
  background: #fff;
}
.field__textarea{ resize: vertical; min-height: 140px; }

.btn--wide{
  width: auto;
  min-width: 220px;
}

@media (max-width: 640px){
  .btn--wide{
    width: 100%;
    min-width: 0;
  }
}


.contact__privacy{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align:center;
}
.contact__privacy a{ color: var(--accent); text-decoration:none; }
.contact__privacy a:hover{ text-decoration:underline; }

.info-card{
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.info-card__icon{
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(6, 182, 212, .16);
  color: var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  margin-bottom: 12px;
}
.info-card__kicker{ color: var(--muted); font-size: 13px; }
.info-card__value{ color: var(--text); font-weight: 800; margin-top: 2px; }
.info-card__list{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.info-card__list li{ margin: 8px 0; }

.pitch-card{
  margin-top: 18px;
  border: 1px solid rgba(6, 182, 212, .45);
  border-radius: 18px;
  background: rgba(6, 182, 212, .08);
  padding: 18px;
}
.pitch-card__title{ margin: 0 0 10px; color: var(--text); font-weight: 800; }
.pitch-card__text{ margin: 0 0 10px; color: var(--muted); line-height: 1.7; }
.pitch-card__link{ color: var(--accent); font-weight: 700; text-decoration: none; }
.pitch-card__link:hover{ text-decoration: underline; }

@media (max-width: 980px){
  .cards--4{ grid-template-columns: 1fr; }
  .cards--3{ grid-template-columns: 1fr; }
  .checkgrid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

.site-footer{
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer{
  padding: 48px 0 28px;
}

.footer__top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer__logo{
  height: 40px;
  margin-bottom: 14px;
}

.footer__tagline{
  color: var(--muted);
  line-height: 1.6;
  max-width: 40ch;
}

.footer h4{
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

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

.footer li{
  margin: 8px 0;
}

.footer a{
  color: var(--text);
  text-decoration:none;
}

.footer a:hover{
  color: var(--accent);
}

.footer__bottom{
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer__legal a{
  margin-left: 18px;
  color: var(--muted);
}

.footer__legal a:hover{
  color: var(--accent);
}

@media (max-width: 900px){
  .footer__top{
    grid-template-columns: 1fr;
  }
  .footer__bottom{
    flex-direction:column;
    text-align:center;
  }
  .footer__legal a{
    margin: 0 10px;
  }
}

/* =========================
   CONTACT SECTION (override)
   ========================= */

#contact .contact{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 28px;
  align-items: start;
}

/* Form card */
#contact .contact__form{
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
  width: 100%;
  max-width: 680px;
  margin: 0;              /* ne középre tolja el */
}

/* Fields */
#contact .field{
  margin-bottom: 16px;
}

#contact .field__label{
  display: block;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}

#contact .field__input{
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: rgba(148, 163, 184, .10);
  color: var(--text);
}

#contact .field__input:focus{
  border-color: rgba(6, 182, 212, .65);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, .14);
  background: var(--surface);
}

#contact .field__textarea{
  resize: vertical;
  min-height: 160px;
}

/* Button – desktopon NE legyen full width */
#contact .btn--wide{
  width: auto;
  min-width: 220px;
  padding: 14px 18px;
  justify-content: center;
  display: inline-flex;
}

/* Privacy line */
#contact .contact__privacy{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}
#contact .contact__privacy a{
  color: var(--accent);
  text-decoration: none;
}
#contact .contact__privacy a:hover{
  text-decoration: underline;
}

/* Aside */
#contact .contact__aside{
  display: grid;
  gap: 18px;
}

/* Ensure cards inside aside behave */
#contact .info-card,
#contact .pitch-card{
  width: 100%;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 980px){
  #contact .contact{
    grid-template-columns: 1fr;
  }
  #contact .contact__form{
    max-width: none;
  }
}

@media (max-width: 640px){
  #contact .btn--wide{
    width: 100%;
    min-width: 0;
  }
  #contact .contact__privacy{
    text-align: center;
  }
}

/* ===== Pricing page ===== */
.pricing__note{
  max-width: 960px;
  margin: 0 auto 26px;
  border: 1px solid var(--border);
  background: rgba(6, 182, 212, .06);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--muted);
}

.pricing__h2{
  margin: 34px 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pricing__sub{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 75ch;
}

.pricing-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-cards--three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured{
  border-color: rgba(6, 182, 212, .55);
  box-shadow: 0 16px 34px rgba(6, 182, 212, .12);
}

.pricing-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.pricing-card__name{
  font-weight: 900;
  color: var(--text);
  font-size: 16px;
  letter-spacing: .02em;
}

.pricing-badge{
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(6, 182, 212, .14);
  border: 1px solid rgba(6, 182, 212, .35);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__price{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 18px;
}

.pricing-card__goodfor{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.pricing-card__lists{
  display:grid;
  gap: 12px;
  margin-top: 6px;
  flex: 1 1 auto;
}

.pricing-list__title{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.pricing-list ul{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.pricing-list li{
  margin: 8px 0;
  line-height: 1.5;
}

.pricing-list--muted ul{
  color: var(--muted);
}

.pricing-card__cta{
  margin-top: 16px;
  align-self: flex-start;
}

.pricing-split{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing-box{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
}

.pricing-box--accent{
  background: rgba(6, 182, 212, .08);
  border-color: rgba(6, 182, 212, .35);
}

.pricing__h3{
  margin: 0 0 10px;
  font-weight: 900;
}

.pricing-bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}
.pricing__p{ color: var(--muted); line-height: 1.7; }

@media (max-width: 980px){
  .pricing-cards{ grid-template-columns: 1fr; }
  .pricing-cards--three{ grid-template-columns: 1fr; }
  .pricing-split{ grid-template-columns: 1fr; }
}

.section-cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================
   PRICING PAGE – FULL STYLES
   ========================= */

.pricing-page .section__head{
  text-align: center;
  margin-bottom: 22px;
}

.pricing-page .section__title{
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.pricing-page .section__subtitle{
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing__note{
  max-width: 980px;
  margin: 18px auto 28px;
  border: 1px solid var(--border);
  background: rgba(6, 182, 212, .08);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
}

.pricing__h2{
  margin: 34px 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing__sub{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 85ch;
}

.pricing-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-cards--three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.pricing-card__name{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .08em;
}

.pricing-badge{
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);
  background: rgba(6, 182, 212, .14);
  border: 1px solid rgba(6, 182, 212, .35);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card--featured{
  border-color: rgba(6, 182, 212, .55);
  box-shadow: 0 18px 38px rgba(6, 182, 212, .14);
  transform: translateY(-4px);
}

.pricing-card__price{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 18px;
}

.pricing-card__goodfor{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.pricing-list__title{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 10px 0 8px;
  font-weight: 900;
}

.pricing-list ul{
  margin: 0;
  padding-left: 18px;
}

.pricing-list li{
  margin: 8px 0;
  line-height: 1.55;
}

.pricing-list--muted{
  color: var(--muted);
}

.pricing-card__cta{
  margin-top: 16px;
  align-self: flex-start;
}

.pricing-split{
  margin-top: 28px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pricing-box{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
}

.pricing-box--accent{
  background: rgba(6, 182, 212, .08);
  border-color: rgba(6, 182, 212, .35);
}

.pricing__h3{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
}

.pricing__p{
  color: var(--muted);
  line-height: 1.7;
}

.pricing-bullets{
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px){
  .pricing-cards{ grid-template-columns: 1fr; }
  .pricing-cards--three{ grid-template-columns: 1fr; }
  .pricing-split{ grid-template-columns: 1fr; }
  .pricing-card--featured{ transform: none; }
}

/* --- spacing fix: section blocks never overlap --- */
.pricing-page h2.pricing__h2{
  margin-top: 48px;   /* nagyobb távolság a blokkok között */
  margin-bottom: 10px;
}

.pricing-page .pricing-cards{
  margin-bottom: 40px; /* a kártyablokk után legyen hely */
}

/* a kiemelt kártyát ne húzzuk fel, mert ráfuthat a következő blokkra */
.pricing-card--featured{
  transform: none !important;
}

/* biztos ami biztos: a címsorok ne “ússzanak rá” */
.pricing-page .pricing__h2,
.pricing-page .pricing__sub{
  clear: both;
}

/* a 2 alsó doboz (Mitől függ + Enterprise) előtt is legyen fix hely */
.pricing-page .pricing-split{
  margin-top: 34px;
}

/* ha valahol régi globál margin-collapse van */
.pricing-page .pricing__sub{
  padding-bottom: 2px;
}

/* ===== Fix: ne csússzanak össze a blokkok ===== */

/* Egyszeri szolgáltatások kártyák egyforma magasság + CTA alul */
.pricing-cards--three .pricing-card{
  min-height: 320px;      /* ha kell, emeld 340-re */
}

.pricing-cards--three .pricing-card__cta{
  margin-top: auto;       /* a gomb a kártya aljára kerül */
}

/* legyen biztos tér az egyszeri kártyák és az alsó 2 doboz között */
.pricing-cards--three{
  margin-bottom: 28px;
}

/* alsó 2 doboz (Mitől függ / Enterprise) ne kússzon fel */
.pricing-split{
  margin-top: 24px;       /* ha kell, 32px */
}

/* a címsor és az alatta lévő kártyák között is legyen konzisztens távolság */
.pricing__h2{
  margin-top: 44px;
  margin-bottom: 10px;
}
.pricing__sub{
  margin-bottom: 18px;
}


/* ===== Pricing teaser (homepage) ===== */
.pricing-teaser .section__head{
  text-align: center;
  margin-bottom: 18px;
}

.pricing-teaser__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.pt-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.pt-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pt-card__title{
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.pt-card__price{
  font-weight: 900;
  font-size: 13px;
  color: var(--accent);
  background: rgba(6, 182, 212, .12);
  border: 1px solid rgba(6, 182, 212, .28);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pt-card__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Több levegő a havi csomagok és az egyszeri szolgáltatások között */
.pricing-page .pricing-cards{
  margin-bottom: 56px; /* volt: 40 körül -> emeljük */
}

/* Az Egyszeri szolgáltatások címe is kapjon kicsit több felső helyet */
.pricing-page h2.pricing__h2{
  margin-top: 56px;
}

.pricing-page .pricing-cards{ margin-bottom: 44px; }

