/* ============ RESET / BASE ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ===== BRAND SZÍNEK ===== */
:root {
  --taxi-yellow: #f2c200;
  --taxi-yellow-soft: rgba(242,194,0,0.2);
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: #e9eef6;
  background: #0b0f16;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid #9fb4ff;
  outline-offset: 3px;
}

.muted { color: rgba(233, 238, 246, 0.72); }
.micro { font-size: 0.85rem; }
.fineprint { margin-top: 14px; }

/* ============ LAYOUT ============ */
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
}

.section-lead {
  margin: 0 0 28px;
  color: rgba(233, 238, 246, 0.75);
  max-width: 70ch;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  background: #101a2c;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 22, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;            /* marad fixen */
  min-height: 64px;           /* FIX fejlécmagasság */
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(159,180,255,0.35), rgba(159,180,255,0.08));
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; }
.brand-text span { font-size: 0.9rem; color: rgba(233, 238, 246, 0.7); }

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(233, 238, 246, 0.8);
  border: 1px solid transparent;
}
.nav a:hover {
  text-decoration: none;
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.header-cta {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* 🚖 TAXI SÁRGA FŐ GOMB */
.btn-primary {
  background: linear-gradient(180deg, rgba(242,194,0,0.95), rgba(242,194,0,0.80));
  border-color: rgba(242,194,0,0.85);
  color: #101318;
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(255,214,51,0.98), rgba(242,194,0,0.88));
  border-color: rgba(255,214,51,0.95);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
}

.btn-full { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 64px 0 74px;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(5,8,12,0.85), rgba(5,8,12,0.96)),
    url("hero.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background:
    radial-gradient(circle at 20% 30%, rgba(159,180,255,0.22), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.06), transparent 60%);
  filter: blur(18px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -200px -220px -200px;
  height: 520px;
  background: radial-gradient(circle at 50% 30%, rgba(159,180,255,0.10), transparent 60%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(233,238,246,0.75);
  font-size: 0.9rem;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.lead {
  margin: 0 0 18px;
  color: rgba(233, 238, 246, 0.78);
  max-width: 70ch;
}
.hero-manifesto {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(233, 238, 246, 0.88);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}

.hero-badges {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 238, 246, 0.78);
}
.hero-badges li { margin: 6px 0; }
/* ============ CARD ============ */
.card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.card h2 { margin: 0 0 10px; font-size: 1.2rem; }

.price-lines {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-actions { display: grid; gap: 10px; margin-top: 12px; }

/* ============ GRIDS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature, .box, .pricing-card, .contact-card, .contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
}

.feature h3,
.box h3,
.pricing-card h3,
.contact-card h3 {
  margin: 0 0 10px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 238, 246, 0.78);
}
.pricing-card li { margin: 8px 0; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.big {
  font-size: 1.4rem;
  margin: 10px 0 6px;
}

.field { display: grid; gap: 6px; margin-bottom: 12px; }

label { color: rgba(233,238,246,0.85); font-size: 0.95rem; }

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #e9eef6;
}

input::placeholder, textarea::placeholder { color: rgba(233,238,246,0.45); }

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(159,180,255,0.55);
  box-shadow: 0 0 0 4px rgba(159,180,255,0.12);
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(233,238,246,0.72);
}

.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a { color: rgba(233,238,246,0.72); }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .header-inner { grid-template-columns: 1fr; }
  .nav { justify-content: flex-start; }
  .header-cta { justify-content: flex-start; }

  .hero-inner { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }

}

/* ============ HEADER SCROLL STATE ============ */
.site-header.is-scrolled {
  background: rgba(11, 15, 22, 0.88);
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.site-header.is-scrolled .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}
/* ============ MOBIL HÍVÁS SÁV ============ */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(242,194,0,0.22), rgba(0,0,0,0.45));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.mobile-callbar a {
  display: block;
  text-align: center;
  padding: 14px 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  animation: callPulse 4.2s infinite;
}

/* CSAK MOBILON */
@media (max-width: 768px) {
  .mobile-callbar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

/* 🚖 SÁRGA PULZÁLÁS */
@keyframes callPulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,194,0, 0.28); }
  70%  { box-shadow: 0 0 0 10px rgba(242,194,0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242,194,0, 0); }
}

/* ============ PREMIUM KÁRTYA STÍLUSOK (SZOLGÁLTATÁSOK / ÁRAK) ============ */

/* Finom háttérfény a szekciók mögé */
.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(242,194,0,0.10), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0.55;
}

/* A kártyák kapjanak prémium “üveg + mélység” érzést */
.feature, .pricing-card, .box, .contact-card, .contact-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* Finom “fénycsík” a kártya tetején */
.feature::before, .pricing-card::before, .box::before, .contact-card::before, .contact-form::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -40%;
  width: 140%;
  height: 90%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.10), transparent 55%);
  opacity: 0.35;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* Hover: enyhe emelkedés + taxi-sárga akcent a kereten */
.feature:hover, .pricing-card:hover, .box:hover {
  transform: translateY(-4px);
  border-color: rgba(242,194,0,0.38);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.45),
    0 0 0 1px rgba(242,194,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Címek legyenek “ütősebbek” */
.feature h3, .pricing-card h3, .box h3 {
  letter-spacing: -0.2px;
}

/* A felsorolások kapjanak finomabb kontrasztot */
.pricing-card ul {
  color: rgba(233,238,246,0.82);
}

/* Szolgáltatás / ár blokkok közé finom elválasztó sáv (premium divider) */
.section-alt {
  background:
    radial-gradient(circle at 15% 30%, rgba(242,194,0,0.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
/* ===== HERO jobb oldali konverziós box ===== */

.card-cta .cta-list{
  list-style: none;
  margin: 14px 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.card-cta .cta-list li{
  position: relative;
  padding-left: 22px;
  color: rgba(233,238,246,0.86);
  line-height: 1.35;
}

.card-cta .cta-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(242,194,0,0.95);
}

.card-cta .cta-divider{
  height: 1px;
  margin: 14px 0 12px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.06)
  );
}

.card-cta .cta-phone{
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.card-cta .cta-tel{
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.card-cta .cta-tel:hover{
  text-decoration: underline;
}
/* Telefonszám gomb – elegáns változat */
.btn-call {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-call:hover {
  background: rgba(242,194,0,0.15);
  border-color: rgba(242,194,0,0.6);
  transform: translateY(-1px);
}
/* ===== HERO elválasztó ===== */
.hero-divider{
  width: 60px;
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.4),
    rgba(255,255,255,0.15)
  );
}

/* ===== HERO bemutatkozás ===== */
.hero-intro{
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(233,238,246,0.78);
  max-width: 60ch;
}
.call-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(242,194,0,0.35);
  background:rgba(242,194,0,0.10);
  text-decoration:none;
  color:#e9eef6;
  font-weight:700;
  transition:all .2s ease;
}

.call-btn:hover{
  border-color:rgba(242,194,0,0.6);
  background:rgba(242,194,0,0.18);
  transform:translateY(-1px);
}

.contact-note{
  margin-top:12px;
  color:rgba(233,238,246,0.72);
}
/* ===== Kapcsolat finomítás ===== */

.contact-call{
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
/* ===== Gyorskalkulátor ===== */
.calc h3 { margin: 0 0 6px; }
.calc-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.calc .field{ margin: 0; }
.calc .check{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  user-select: none;
}
.calc .check input{ transform: translateY(1px); }

.calc-result{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  gap: 10px;
}
.calc-total .total{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.calc-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 820px){
  .calc-grid{ grid-template-columns: 1fr; }
}
/* Kalkulátor a pricing rácsban: teljes szélesség */
.pricing .calc.card{
  grid-column: 1 / -1;
}
.calc-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.calc-result{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.calc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 820px){
  .calc-grid{ grid-template-columns: 1fr; }
}
/* ===== Kalkulátor térképes mezők ===== */

.calc-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  align-items:end;
}

/* Távolság számítása gomb kiemelése */
#calcRouteBtn{
  height:48px;
  font-weight:600;
}

/* Checkbox ne lebegjen */
.calc-return{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Eredmény blokk hangsúly */
.calc-total .total{
  font-size:2rem;
  font-weight:800;
  letter-spacing:-0.5px;
  color:#f2c200;
}
/* ===== Kalkulátor összeg anim / highlight ===== */
.calc-total .total{
  display: inline-block;
  transition: transform .18s ease, filter .18s ease;
}

.calc-total .total.is-updating{
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(242,194,0,0.18));
}

@media (prefers-reduced-motion: reduce){
  .calc-total .total{ transition: none; }
}
/* KM mező lezárt állapota */
.is-locked {
  opacity: 0.75;
  cursor: not-allowed;
}
.is-locked:focus {
  outline: none;
}
#calcKm:disabled {
  opacity: 1;
  background: rgba(255,255,255,0.04);
  color: #f2c200;
  font-weight: 600;
  cursor: default;
}
.pay-wrap{
  display:flex;
  justify-content:center;
  gap:24px;
  margin: 22px 0 40px;
}

.pay-card{
  border-radius:16px;
  padding:14px 14px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.pay-title{
  font-weight:700;
  margin-bottom:10px;
  letter-spacing:.2px;
}

.pay-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pay-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(242,194,0,.22);
  color: rgba(255,255,255,.92);
  font-size:14px;
  line-height:1;
}

@media (max-width: 820px){
  .pay-wrap{ grid-template-columns: 1fr; }
}
.pay-heading{
  margin: 8px 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .3px;
}

.pay-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-bottom:26px;
}

.pay-card{
  border-radius:16px;
  padding:14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.pay-title{
  font-weight:600;
  margin-bottom:10px;
  color: rgba(255,255,255,.85);
}

.pay-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pay-badge{
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(242,194,0,.25);
  font-size:13px;
}

@media (max-width: 820px){
  .pay-wrap{ grid-template-columns: 1fr; }
}
.pay-heading{
  margin: 4px 0 18px;
  font-size: 15px;
  font-weight: 600;
  opacity: .75;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pay-heading::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  margin-top:8px;
  background: linear-gradient(90deg,#f2c200,transparent);
}
.pay-card{
  border-radius:14px;
  padding:12px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.calc-heading{
  margin: 36px 0 14px;
  font-size: 18px;
  font-weight: 700;
}
.pay-card{
  min-width: 260px;
  padding:18px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(242,194,0,.18);
  border-radius:16px;
}
.pay-heading{
  margin: 36px 0 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .85;
  position: relative;
}

.pay-heading::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  margin-top:8px;
  background:#f2c200;
}
/* ===== Fizetési módok blokk ===== */

.pay-heading{
  margin: 14px 0 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .4px;
  opacity: .95;
}

/* Két nagy kártya egymás mellett, szépen */
.pay-wrap{
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;

  /* hogy tényleg “nagyobbnak” hasson és ne a 3 kártya rácsához igazodjon */
  max-width: 860px;
  margin: 0 auto 20px;
}

/* Kártyák */
.pay-card{
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(20, 24, 32, .42);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.pay-title{
  font-weight: 700;
  margin: 0 0 10px;
  opacity: .95;
}

/* Badge-ek */
.pay-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  border: 1px solid rgba(242,194,0,.22);
  background: rgba(0,0,0,.18);
  white-space: nowrap;
}

/* Mobil: egymás alá */
@media (max-width: 820px){
  .pay-wrap{
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}
/* ===== Fizetési módok – széles, rendezett blokk ===== */

.pay-card-wide{
  margin-top: 16px;
  padding: 18px;
}

.pay-heading{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .3px;
}

.pay-wrap{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
  margin: 0;           /* fontos: ne középre “lebegjen” */
  max-width: none;     /* fontos: ne legyen szűkítve */
}

.pay-card{
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}

.pay-title{
  font-weight: 800;
  margin: 0 0 10px;
  opacity: .95;
}

.pay-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(242,194,0,.20);
  background: rgba(0,0,0,.18);
  white-space: nowrap;
}

.pay-link{
  text-decoration: none;
  cursor: pointer;
}

.pay-link:hover{
  border-color: rgba(242,194,0,.45);
  transform: translateY(-1px);
}

/* Mobil: egymás alá */
@media (max-width: 820px){
  .pay-wrap{ grid-template-columns: 1fr; }
}
/* Fizetési blokk teljes szélesség */
.full-row{
  grid-column: 1 / -1;
}