/* ===============================
   VARIABLES
   =============================== */

:root {
  --bg: linear-gradient(135deg, #0b1220 0%, #020617 100%);
  --card: #ffffff;

  --primary: #2563eb;
  --secondary: #7c3aed;
  --success: #22c55e;
  --warning: #f59e0b;

  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;

  --radius: 16px;
}

/* ===============================
   BASE
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===============================
   ACCESSIBILITY / UTILITIES
   =============================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===============================
   HEADER
   =============================== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

header h1 {
  font-size: 24px;
  margin: 0;
}

.lang a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  margin-left: 12px;
}

.lang a:hover {
  color: var(--primary);
}

.lang a.active {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
}

/* ===============================
   HERO (FIXED – STABIL LAYOUT)
   =============================== */

.hero {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 44px 20px;
  min-height: 420px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  flex-wrap: nowrap;
}

.hero-content {
  flex: 1 1 0;
  max-width: 560px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #facc15, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* KÖZÉP – AJÁNLOTT CSOMAG */
.hero-recommend {
  flex: 0 0 300px;

  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  color: #fff;
}

/* ICON */
.rec-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;

  border-radius: 50%;
  background: rgba(255,255,255,0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.rec-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 6px;
}

.rec-specs {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rec-price {
  font-size: 20px;
  font-weight: 800;
  color: #facc15;
}

/* ===== HERO DISCOUNTS ===== */

.rec-discounts {
  margin-top: 14px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.discount-tile {
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;

  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.dt-months {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
}

.dt-percent {
  font-size: 14px;
  font-weight: 800;
  color: #facc15;
}

/* JOBB OLDAL – SZERVER IKON */
.hero-graphic {
  flex: 0 0 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.server-icon {
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}

.server-label {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* CSAK MOBILON REJTJÜK EL A SZERVER IKONT */
@media (max-width: 600px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-graphic {
    display: none;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--warning), #fb923c);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* ===============================
   GENERIC SECTIONS (NEM HERO)
   =============================== */

section:not(.hero) {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

/* ===============================
   PACKAGES
   =============================== */

#packages {
  background: #f8fafc;
  padding: 40px 0;
}

#packages .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
}

/* ===============================
   CARD – FINAL, PERFORMANCE SAFE
   =============================== */

.card {
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border);

  display: flex;
  flex-direction: column;

  /* EGYSÉGES, KÖNNYŰ ÁRNYÉK */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  /* CSAK AMI KELL */
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;

  transform: translateZ(0);
  will-change: transform;
}

.perf-item {
  border-radius: 16px;
}

/* HOVER + ACTIVE – UGYANAZ A VISELKEDÉS */
.card:hover,
.card.active {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  z-index: 2;
}

/* ===== BAL OLDALI SZÍNES CSÍK ===== */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: transparent;
}

/* ===== TIER SZÍNEK ===== */
.card.tier-basic::before {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.card.tier-pro::before {
  background: linear-gradient(180deg, #2563eb, #1e40af);
}

.card.tier-max::before {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
}

.card.tier-ultra::before {
  background: linear-gradient(180deg, #ef4444, #991b1b);
}

/* ===== CARD TARTALOM ===== */
.card h3 {
  color: var(--secondary);
  margin-bottom: 8px;
}

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

.card ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0;
}

/* ===== ÁR ===== */
.card strong {
  font-size: 24px;
  margin-bottom: 12px;
}

.card-price {
  font-size: 24px;
  font-weight: 800;
}

.price-vat {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* ===== GOMB ALUL ===== */
.card button {
  margin-top: auto;
  align-self: center;

  min-width: 160px;
  padding: 12px 18px;
  border-radius: 12px;

  background: linear-gradient(135deg, var(--warning), #fb923c);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* ===== AKTÍV KÁRTYA ===== */
.card.active {
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 0 0 3px rgba(99,102,241,0.35),
    0 22px 48px rgba(0,0,0,0.18);
  transform: translateY(-3px);
}

/* ===============================
   CONFIGURATOR
   =============================== */

#configurator {
  background: #eef2ff;
  padding: 40px 0;
}

.config {
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.config label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 10px;
}

.config input[type=range] {
  width: 100%;
  margin: 4px 0 6px;
  accent-color: var(--secondary);
}

.config h3 {
  margin-top: 16px;
  font-size: 22px;
  color: var(--primary);
}

/* ===============================
   BACKUP SELECTOR – AKTÍV KIEMELÉS
   =============================== */

.backup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.backup-card {
  cursor: pointer;
}

.backup-card input {
  display: none;
}

.backup-card {
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .2s ease;
}

/* ===== SZÍNEZÉS TÍPUS SZERINT ===== */

/* nincs mentés */
.backup-card.none {
  background: #f1f5f9;
}

/* 7 nap – enyhén zöld */
.backup-card.days7 {
  background: #dcfce7;
}

/* 14 nap – közepes zöld */
.backup-card.days14 {
  background: #bbf7d0;
}

/* 30 nap – legerősebb (ajánlott) */
.backup-card.days30 {
  background: #86efac;
}

/* ===== AKTÍV (checked) ===== */
.backup-card:has(input:checked) {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22,163,74,0.18);
}

/* hover – csak desktop */
@media (hover: hover) {
  .backup-card:has(input:checked) {
    box-shadow:
      0 0 0 2px rgba(22,163,74,0.25),
      0 8px 18px rgba(0,0,0,0.08);
  }
}

/* ===============================
   RECOMMENDED
   =============================== */

.recommend {
  margin-top: 12px;
  padding: 14px;
  background: #ecfdf5;
  border: 2px solid var(--success);
  border-radius: 12px;
  font-size: 15px;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  section h2 {
    font-size: 22px;
  }
}

.success-box {
  max-width: 720px;
  margin: 80px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.summary-table td {
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.summary-table .total td {
  font-size: 18px;
  font-weight: bold;
  border-top: 2px solid #111827;
}

.order-section {
  margin-top: 30px;
}

/* ===============================
   CUSTOMER TYPE – INPUT-LIKE STYLE
   =============================== */

.customer-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;

  padding: 12px 16px;
  border-radius: 12px;

  background: #ffffff;
  border: 1px solid var(--border);

  font-size: 14px;
  font-weight: 600;
  color: var(--text);

  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* radio elrejtése */
.radio-card input {
  display: none;
}

/* AKTÍV = input fókusz */
.radio-card:has(input:checked) {
  border-color: #1d4ed8;
  background: #e0ecff;
  box-shadow: 
    0 0 0 3px rgba(29,78,216,.25),
    0 6px 14px rgba(0,0,0,.08);
}

/* hover */
@media (hover:hover) {
  .radio-card:hover {
    border-color: var(--primary);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .customer-type {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.company-box {
  padding: 16px;
  background: #f1f5f9;
  border-radius: 8px;
  margin-bottom: 20px;
}

.billing-box {
  margin-bottom: 20px;
}

.order-btn {
  padding: 12px 24px;
  font-size: 16px;
}
/* ===============================
   ORDER CARD – UGYANAZ A STÍLUS, MINT A KONFIGURÁTOR
   =============================== */

.config-card {
  max-width: 1200px;
  margin: 30px auto;
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.order-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text);
}

.order-card h4 {
  margin-bottom: 12px;
  color: var(--muted);
}

.order-submit {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

/* ===============================
   PACKAGE STRENGTH COLORS – FIX
   =============================== */

/* alap a pseudo-elementhez */
.card {
  position: relative;
  overflow: hidden;
}

/* bal oldali színes csík */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: transparent;
}

/* HA TIER OSZTÁLYT HASZNÁLSZ */
.card.tier-basic::before {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.card.tier-pro::before {
  background: linear-gradient(180deg, #2563eb, #1e40af);
}

.card.tier-max::before {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
}

.card.tier-ultra::before {
  background: linear-gradient(180deg, #ef4444, #991b1b);
}

/* ===============================
   ACTIVE PACKAGE GLOW
   =============================== */

.card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.card.active {
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    0 0 0 3px rgba(0,0,0,0.05),
    0 20px 46px rgba(0,0,0,0.22);

  z-index: 2;
}

/* színes glow csomag típus szerint */
.card.active.tier-basic {
  box-shadow: 0 0 0 3px #22c55e55, 0 20px 50px #22c55e55;
}

.card.active.tier-pro {
  box-shadow: 0 0 0 3px #2563eb55, 0 20px 50px #2563eb55;
}

.card.active.tier-max {
  box-shadow: 0 0 0 3px #7c3aed55, 0 20px 50px #7c3aed55;
}

.card.active.tier-ultra {
  box-shadow: 0 0 0 3px #ef444455, 0 20px 50px #ef444455;
}

/* ===============================
   CONFIGURATOR COLOR INHERIT
   =============================== */

#configurator.active-basic .config {
  border-left: 6px solid #22c55e;
}

#configurator.active-pro .config {
  border-left: 6px solid #2563eb;
}

#configurator.active-max .config {
  border-left: 6px solid #7c3aed;
}

#configurator.active-ultra .config {
  border-left: 6px solid #ef4444;
}

.form-error {
  background: #fee2e2;
  border: 1px solid #ef4444;
  color: #991b1b;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

  /* CSOMAGOK */
  .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 14px;
    border-radius: 14px;
  }

  .card h3 {
    font-size: 17px;
  }

  .card strong {
    font-size: 19px;
    display: block;
    margin: 10px 0;
  }

  /* GOMB */
  .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 999px;
  }

  /* KONFIGURÁTOR */
  #configurator {
    padding: 14px;
  }

  .config-card {
    padding: 14px;
  }

  .config label {
    font-size: 13px;
  }

  .config h3 {
    font-size: 18px;
    text-align: center;
  }
}

/* ========== TABLET ========== */
@media (min-width: 601px) and (max-width: 1024px) {

  /* HERO */
  .hero {
    padding: 40px 32px;
  }

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

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

  /* CSOMAGOK */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 19px;
  }

  .card strong {
    font-size: 22px;
  }

  /* KONFIGURÁTOR */
  .config-card {
    padding: 20px;
  }

  .config h3 {
    font-size: 20px;
  }
}

/* ===== GRID ALAP ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========== MOBILE ========== */
@media (max-width: 600px) {

  /* GRID – CSOMAGOK */
  .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* ===== MEGRENDELŐ ADATAI FIX ===== */
  .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .field {
    width: 100% !important;
  }

  .field input,
  .field select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .customer-type {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .order-card {
    padding: 16px !important;
  }

  .order-card button {
    width: 100% !important;
    padding: 16px !important;
    font-size: 17px !important;
    border-radius: 999px !important;
  }
}

/* ========== TABLET ========== */
@media (min-width: 601px) and (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ===== CONFIGURATOR BOTTOM FIX ===== */
#configurator {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* jogi linkek fölötti üres hely */
.footer-links {
  text-align: right;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  width: 100%;
  margin-top: 40px;
  padding: 30px 0 16px;
  background: #f9fafb;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  color: #1f2937;
}

/* ===== FOOTER LAYOUT ===== */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;          /* oldalsó levegő */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.footer-col {
  line-height: 1.6;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid #d1d5db;
  text-align: center;
  font-size: 13px;
  color: #374151;
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-links {
    text-align: center;
  }
}

/* ===== OS SELECTOR ===== */
.os-selector {
  margin-bottom: 20px;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.os-card {
  cursor: pointer;
}

.os-card input {
  display: none;
}

.os-card-inner {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  background: #fff;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;

  will-change: box-shadow;
}

.os-card input:checked + .os-card-inner {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79,70,229,.15);
}

.os-card-inner:hover {
  border-color: #4f46e5;
}

/* ===============================
   OS SELECTOR – AKTÍV KIEMELÉS
   =============================== */
.os-card {
  cursor: pointer;
}

.os-card input {
  display: none;
}

.os-card-inner {
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  text-align: center;
  background: #fff;
  transition: all .2s ease;
}

/* ✅ AKTÍV (checked) */
.os-card input:checked + .os-card-inner {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

/* hover (desktop) */
.os-card-inner:hover {
  border-color: #2563eb;
}

@media (hover: hover) {

  .os-card input:checked + .os-card-inner {
    background: #e0ecff;
    border-color: #1d4ed8;
    box-shadow:
      0 0 0 3px rgba(29,78,216,0.25),
      0 10px 22px rgba(0,0,0,0.08);
  }

}

/* ===============================
   MEGRENDELŐ ADATAI – INPUT FIX
   =============================== */

.order-card .form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-card .field {
  width: 100%;
}

.order-card .field-full {
  grid-column: 1 / -1;
}

.order-card .field input,
.order-card .field select,
.order-card .field textarea {
  width: 100%;
  padding: 12px 16px;          /* SZÉLESEBB, KÉNYELMESEBB */
  border-radius: 12px;         /* LEKEREKÍTETT SAROK */
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* fókusz állapot – prémium feeling */
.order-card .field input:focus,
.order-card .field select:focus,
.order-card .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

/* label + mező levegősebb */
.order-card .field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

/* ===== MOBILE – MEGRENDELŐ ADATAI ===== */
@media (max-width: 600px) {

  .order-card .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .order-card .field input,
  .order-card .field select,
  .order-card .field textarea {
    padding: 14px 14px;
    border-radius: 14px;
    font-size: 15px;
  }

}

/* ===============================
   OS + BACKUP – COMPACT HEIGHT
   =============================== */

/* OS */
.os-card-inner {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
}

/* BACKUP */
.backup-card {
  padding: 10px 12px;
  border-radius: 10px;
  gap: 4px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {
  .os-card-inner,
  .backup-card {
    padding: 12px 14px;
    border-radius: 12px;
  }
}

.note-box {
  margin: 24px 0;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  font-size: 14px;
  color: #334155;
}

.note-box strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
}

.note-box p {
  margin: 0;
  line-height: 1.5;
}

/* ===============================
   HERO – FINAL MOBILE LAYOUT
   =============================== */
@media (max-width: 600px) {

  /* HERO ALAP */
  .hero {
    padding: 26px 14px 32px;
    min-height: auto;
    text-align: center;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* SZÖVEG */
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95;
  }

  /* CTA GOMBOK */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    font-size: 15px;
  }

/* ===============================
   AJÁNLOTT CSOMAG – KOMPAKT KÁRTYA (MOBILE)
   =============================== */
@media (max-width: 600px) {

  .hero-recommend {
    flex: none !important;
    align-self: center;

    max-width: 260px;
    margin: 0 auto;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    padding: 8px 12px;
    border-radius: 16px;

    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.22),
      rgba(255,255,255,0.12)
    );

    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  }
}

  /* BELSŐ ELEMEK MÉG TÖMÖREBBEN */
  .rec-icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
    margin: 4px 0;
  }

  .rec-title {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .rec-specs {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .rec-price {
    font-size: 20px;
    margin-top: 2px;
  }
}

.rec-vat {
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.85;
}

  /* BELSŐ ELEMEK MÉG TÖMÖREBBEN */
  .rec-icon {
    margin: 4px 0;
  }

  .rec-title {
    margin: 2px 0;
    font-size: 11px;
  }

  .rec-specs {
    margin: 2px 0;
    font-size: 13px;
    line-height: 1.25;
  }

  .rec-price {
    margin: 2px 0 0;
    font-size: 20px;
  }
}

  /* ===============================
     KEDVEZMÉNYEK – CHIP / PILL STYLE
     =============================== */
  .rec-discounts {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .discount-tile {
    padding: 7px 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
  }

  .dt-months {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
  }

  .dt-percent {
    font-size: 13px;
    font-weight: 800;
    color: #facc15;
    line-height: 1.1;
  }

/* ===============================
   HERO TECH BADGES – FORCE
   =============================== */

.hero .tech-badges {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero .tech-badges span {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

/* ===============================
   PERFORMANCE PROOF – LIGHT TEXT
   =============================== */

.performance-proof {
  background: transparent;
}

.performance-proof p {
  color: rgba(255,255,255,0.75);
}

.performance-proof strong {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}

.performance-proof a {
  color: #e0e7ff;
  font-weight: 700;
  text-decoration: underline;
}

.performance-proof a:hover {
  color: #ffffff;
}

/* ===============================
   AI CHAT WIDGET
   =============================== */

#ai-chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2563eb;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

#ai-chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

#ai-chat-header {
  background: #2563eb;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

#ai-chat-messages {
  padding: 10px;
  flex: 1;
  overflow-y: auto;
  font-size: 14px;
}

.ai-msg {
  margin-bottom: 8px;
}

.ai-user {
  text-align: right;
  color: #111;
}

.ai-bot {
  color: #2563eb;
}

#ai-chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#ai-chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
}

#ai-chat-input button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
}

/* === MAPAKOV.SK PROMO BAR === */
#sk-promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0f172a;
  color: #fff;
  z-index: 9999;
  font-size: 14px;
}

/* konténer */
.sk-promo-content {
  position: relative; /* kell az X gombhoz */
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag { font-size: 18px; }
.text { flex: 1; }

.promo-btn {
  background: #22c55e;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* bezáró gomb */
.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* hely a promo bar-nak */
body.has-sk-bar {
  padding-top: 48px;
}

/* === MOBIL FINOMÍTÁS === */
@media (max-width: 768px) {

  body.has-sk-bar header.top {
    margin-top: 60px;
  }

  #sk-promo-bar {
    font-size: 13px;
  }

  .sk-promo-content {
    flex-wrap: wrap;
    text-align: center;
    padding: 8px 12px;
  }

  .promo-btn {
    width: 100%;
  }

  .close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
  }
}
