/* =====================================================
   bojler-style.css – Briák László Villanybojler Szerelő
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Oswald:wght@500;600;700&display=swap');

/* ── VÁLTOZÓK ── */
:root {
  --blue:         #0a4fa0;
  --blue-dark:    #063580;
  --blue-light:   #e8f0fb;
  --orange:       #f27500;
  --orange-hover: #d46400;
  --white:        #ffffff;
  --bg:           #f4f7fc;
  --text:         #1a1f2e;
  --text-muted:   #5a6478;
  --radius:       10px;
  --radius-lg:    18px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s;
}
a:hover { color: var(--orange-hover); }

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--blue-dark);
  line-height: 1.25;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--blue-dark);
  color: #c8d8f5;
  font-size: .84rem;
  padding: .45rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
}

.top-bar a:hover { color: var(--orange); }

/* ── NAVIGÁCIÓ ── */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 2rem;
  flex-wrap: wrap;
  gap: .5rem;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(10,79,160,.06);
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  letter-spacing: .2px;
}

.nav-logo em,
.nav-logo span {
  color: var(--orange);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: .3rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .4rem .8rem;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: background .15s, color .15s;
}

.nav-links a:hover {
  background: var(--blue);
  color: #fff;
}

.nav-tel {
  background: var(--orange);
  color: #fff;
  border-radius: 20px;
  padding: .4rem 1rem;
}

.nav-tel:hover {
  background: var(--orange-hover);
  color: #fff;
}

/* ── LEGÖRDÜLŐ MENÜ ── */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(10,79,160,.18);
  border: 1px solid #dde6f5;
  min-width: 230px;
  z-index: 300;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  border-bottom: 1px solid #f0f5fc;
  background: var(--white);
  border-radius: 0;
  transition: background .15s, color .15s;
  text-decoration: none;
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
  background: var(--blue);
  color: #fff;
}

.dropdown-menu a.active {
  background: var(--blue-light);
  border-left: 3px solid var(--orange);
  color: var(--blue-dark);
}

/* ── KONTÉNER ── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── INFO STRIP ── */
.info-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid #dde6f5;
}

.info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.icon { font-size: 1.4rem; line-height: 1; }

/* ── SZEKCIÓK ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.sec { padding: 4rem 0; }
.sec-alt { background: var(--white); }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: .6rem;
  line-height: 1.2;
}

.sec-label {
  display: block;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: .82rem;
  margin-bottom: .5rem;
  text-align: center;
}

.sec-sub {
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: .95rem;
  line-height: 1.65;
}

/* ── HERO FŐOLDAL ── */
.hero-home {
  background: linear-gradient(125deg, #062e6e 0%, #0a4fa0 55%, #1565c0 100%);
  color: #fff;
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 55px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-home h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  max-width: 820px;
  margin-inline: auto;
}

.hero-home p {
  font-size: 1.12rem;
  opacity: .92;
  max-width: 650px;
  margin: 0 auto 1rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin: 1.2rem 0 2rem;
  font-size: .9rem;
  opacity: .88;
}

.hero-badges span {
  background: rgba(255,255,255,.12);
  padding: .3rem .85rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

/* ── HERO ALOLDALAK ── */
.hero-page {
  background: linear-gradient(135deg, #062e6e 0%, #0a4fa0 60%, #1565c0 100%);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.hero-page::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-page h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
  max-width: 800px;
  margin-inline: auto;
}

.hero-page p {
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto 1.8rem;
  line-height: 1.65;
}

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  margin-bottom: 2rem;
}

.badge-row span {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 30px;
}

/* ── GOMBOK ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(242,117,0,.45);
  transition: background .2s, transform .15s;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: .9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  color: #fff;
}

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 1rem 2.6rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 22px rgba(242,117,0,.45);
  transition: background .2s, transform .15s;
}
.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  color: #fff;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transition: transform .15s;
}
.btn-white:hover {
  transform: translateY(-2px);
  color: var(--blue-dark);
}

.btn-tel {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: .75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(242,117,0,.4);
  transition: background .2s;
}
.btn-tel:hover {
  background: var(--orange-hover);
  color: #fff;
}

/* ── STATS SÁV ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid #dde6f5;
  padding: 1.6rem 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.stat-item { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: .2rem;
}

/* ── KÁRTYÁK ── */
.service-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  border-top: 4px solid var(--blue);
  box-shadow: 0 2px 14px rgba(10,79,160,.08);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(10,79,160,.14);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: .7rem;
  display: block;
  line-height: 1;
}

.card strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--blue-dark);
  font-size: 1.15rem;
  margin-bottom: .5rem;
  font-weight: 600;
}

.card p {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: .7rem;
  flex: 1;
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .25rem .7rem;
  border-radius: 20px;
  align-self: flex-start;
}

.card-link {
  display: block;
  margin-top: .7rem;
  font-size: .88rem;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.card-link:hover { color: var(--orange-hover); }

/* ── MIÉRT VÁLASSZON ── */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .9rem 1.1rem;
  background: var(--bg);
  border-radius: 10px;
  transition: background .15s;
}

.why-item:hover { background: #eef4fc; }

.wi {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.why-item strong {
  display: block;
  color: var(--blue-dark);
  font-size: .96rem;
  margin-bottom: .2rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: .87rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.why-box {
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 36px rgba(10,79,160,.28);
}

.big-num {
  font-family: 'Oswald', sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}

.why-box p {
  opacity: .88;
  margin: .9rem 0 1.8rem;
  font-size: .97rem;
  line-height: 1.65;
}

/* ── FOLYAMAT ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.step-card { padding: 1.5rem 1rem; }

.step-num {
  width: 64px;
  height: 64px;
  background: #f27500;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 20px rgba(242,117,0,.5);
  line-height: 1;
  min-width: 64px;
}

.step-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: .45rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── ÁRAK TÁBLA ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,79,160,.09);
  margin-top: 1.5rem;
}

.price-table th {
  background: var(--blue-dark);
  color: #fff;
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.price-table td {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid #eef2fa;
  font-size: .93rem;
  vertical-align: middle;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: #f8fafd; }
.price-table tr:hover td { background: #eef4fc; }

.price-val {
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
}

.highlight-row td { background: #fff8f0; }
.highlight-row .price-val { color: var(--orange); }

/* ── ESETEK ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 2px 14px rgba(10,79,160,.08);
  border-left: 4px solid var(--orange);
}

.case-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 12px;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.case-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.case-card p {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 400;
}

/* ── VÉLEMÉNYEK ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 2px 14px rgba(10,79,160,.08);
}

.stars {
  color: #f7a500;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.review-text {
  font-size: .93rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: .8rem;
  line-height: 1.6;
  font-weight: 400;
}

.reviewer {
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue-dark);
}

.reviewer span {
  color: var(--text-muted);
  font-weight: 400;
}

/* ── BENEFITS ── */
.benefits {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .75rem;
}

.benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-weight: 600;
  font-size: .98rem;
  color: var(--blue-dark);
}

.benefits ul li::before {
  content: "✔";
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ── WARN BOX ── */
.warn-box {
  background: #fff8f0;
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}

.warn-box h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--blue-dark);
  margin-bottom: .5rem;
}

.warn-box p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ── FAQ ── */
.faq-list {
  max-width: 820px;
  margin: 2rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  box-shadow: 0 1px 8px rgba(10,79,160,.06);
  overflow: hidden;
}

.faq-q {
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue-dark);
  font-size: .96rem;
  transition: background .15s;
  gap: 1rem;
}

.faq-q:hover { background: #f0f5fc; }

.faq-arrow {
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  transition: transform .25s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: .9rem 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: .92rem;
  background: #fafcff;
  border-top: 1px solid #eef2fa;
  line-height: 1.65;
  font-weight: 400;
}

.faq-item.open .faq-a { display: block; }

/* ── KERÜLETEK ── */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .7rem;
  margin-top: 1.5rem;
}

.district-chip {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem .5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background .18s, color .18s, transform .15s;
  display: block;
  border: 1.5px solid transparent;
  line-height: 1.4;
}

.district-chip:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.district-chip small {
  display: block;
  font-weight: 400;
  font-size: .75rem;
  opacity: .8;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.city-chip {
  background: var(--bg);
  color: var(--blue-dark);
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem .7rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid #dde6f5;
  transition: background .18s, border-color .18s;
  display: block;
}

.city-chip:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue-dark);
}

/* ── CTA SÁV ── */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: .6rem;
}

.cta-band p {
  opacity: .88;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.cta-section {
  background: linear-gradient(130deg, #062e6e 0%, var(--blue) 100%);
  padding: 4.5rem 1.5rem;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: .7rem;
}

.cta-section p {
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.cta-fine {
  font-size: .85rem;
  opacity: .7;
  margin-top: 1rem;
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  background: var(--blue-dark);
  color: #c8d8f5;
  padding: 2.5rem 1.5rem 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1040px;
  margin-inline: auto;
}

footer strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .3px;
  display: block;
  margin-bottom: .5rem;
  font-size: 1rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

footer ul li a {
  color: #a8c0e8;
  font-size: .88rem;
  text-decoration: none;
  transition: color .15s;
  font-weight: 400;
}

footer ul li a:hover { color: var(--orange); }

footer p {
  font-size: .88rem;
  line-height: 1.65;
  font-weight: 400;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
  text-align: center;
  font-size: .8rem;
  opacity: .55;
  max-width: 1040px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── LEBEGŐ GOMB ── */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .9rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(242,117,0,.55);
  animation: glow 2.5s ease-in-out infinite;
}

.float-btn:hover { color: #fff; }

@keyframes glow {
  0%, 100% { box-shadow: 0 4px 22px rgba(242,117,0,.55); }
  50%       { box-shadow: 0 4px 32px rgba(242,117,0,.85); }
}

/* ── VISSZA LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue);
  font-weight: 700;
  font-size: .95rem;
  padding: .55rem 1.2rem;
  border: 2px solid var(--blue);
  border-radius: 8px;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: background .18s, color .18s;
}

.back-link:hover {
  background: var(--blue);
  color: #fff;
}

/* ── RESZPONZÍV ── */
@media (max-width: 820px) {
  .why-wrap { grid-template-columns: 1fr; }
  .why-box  { padding: 2rem 1.5rem; }
  .big-num  { font-size: 4rem; }
}

@media (max-width: 680px) {
  .main-nav      { padding: .6rem 1rem; }
  .hero-home     { padding: 3rem 1rem 3.5rem; }
  .hero-home h1  { font-size: 1.65rem; }
  .hero-page     { padding: 3rem 1rem 3.5rem; }
  .section, .sec { padding: 2.5rem 0; }
  .stats-strip   { gap: 1rem 1.5rem; }
  .top-bar       { font-size: .78rem; }
  .price-table th,
  .price-table td { padding: .6rem .8rem; font-size: .82rem; }
}
