/*
 * Transzfer Sopron – style.css
 * Flat design, lime (#96D608) + dark navy theme, mobile-first
 * ─────────────────────────────────────────────────────────────────────────
 */

/* ══════════════════════════════════════════════════════════════════════════
   1. CSS VÁLTOZÓK
   ══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Lime-zöld paletta (#96D608) */
  --green-50:  #f5fde0;   /* nagyon világos alap */
  --green-100: #e8fbb0;   /* kártya, badge háttér */
  --green-200: #d0f570;   /* border, elválasztó */
  --green-400: #abe009;   /* sötét háttéren szöveg */
  --green-500: #96D608;   /* ← fő brand szín */
  --green-600: #7db206;   /* hover, aktív állapot */
  --green-700: #628c05;   /* sötétebb kiemelt */
  --green-800: #4a6a03;   /* szöveg világos háttéren */
  --green-900: #344d02;   /* legmélyebb árnyalat */

  /* Sötét paletta */
  --dark:   #0d1b2a;
  --dark-2: #111f30;
  --dark-3: #1a2e40;

  /* Semleges */
  --white:   #ffffff;
  --bg:      #f8fafc;
  --bg-2:    #f1f5f9;
  --text:    #1a2535;
  --text-2:  #374151;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --border-2:#d1d5db;

  /* Tipográfia */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-xs: .3rem;
  --r-sm: .625rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;

  /* Árnyék */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.11);

  /* Tranzíció */
  --t: .18s ease;

  /* Layout */
  --max-w: 1220px;
  --px:    1.25rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   2. RESET & ALAP
   ══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
address { font-style: normal; }

/* ══════════════════════════════════════════════════════════════════════════
   3. LAYOUT
   ══════════════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.grid-2 { display: grid; gap: 2.5rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }

/* ══════════════════════════════════════════════════════════════════════════
   4. TIPOGRÁFIA
   ══════════════════════════════════════════════════════════════════════════ */
h1 { font-size: clamp(2rem, 5vw, 3.5rem);   font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2;  letter-spacing: -.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p  { max-width: 68ch; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--muted);
  line-height: 1.8;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-700);
  margin-bottom: 1.25rem;
}

.section-title  { margin-bottom: .875rem; }
.section-sub    { color: var(--muted); }
.text-center    { text-align: center; }
.text-center p  { margin-inline: auto; }
.text-white     { color: var(--white) !important; }
.text-green     { color: var(--green-600); }

/* ══════════════════════════════════════════════════════════════════════════
   5. GOMBOK
   ══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8125rem 1.75rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-500);
  color: var(--dark);           /* sötét szöveg – lime nem ad elég kontrasztot fehér szöveggel */
  border: 2px solid var(--green-500);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--green-400);
  border-color: var(--green-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(150,214,8,.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-700);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}

.btn-lg   { padding: 1.0625rem 2.5rem; font-size: 1.0625rem; }
.btn-sm   { padding: .5625rem 1.25rem; font-size: .9375rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════════════════
   6. HEADER & NAVIGÁCIÓ
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  height: 4.5rem;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
/* Fallback szöveg (ha nincs kép) */
.logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -.035em;
  line-height: 1;
}
.logo-text span { color: var(--dark); }

/* Desktop nav */
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links > li > a {
  display: block;
  padding: .5rem 1rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--text);
  background: var(--bg);
}

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .625rem);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  z-index: 100;
}
.has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: .6875rem 1rem;
  font-size: .9375rem;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: background var(--t);
  font-weight: 500;
}
.nav-dropdown a:hover { background: var(--green-50); color: var(--green-800); }

/* Nav actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: .875rem;
  margin-left: .5rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  padding: .5rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.nav-phone:hover { border-color: var(--green-600); color: var(--green-700); }
.nav-cta { padding: .625rem 1.375rem; font-size: .9375rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menü */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.25rem var(--px) 1.5rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  transition: background var(--t);
}
.mobile-menu a:hover { background: var(--green-50); color: var(--green-800); }
.mobile-submenu-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  padding: 1rem 1rem .3rem;
  margin-top: .375rem;
}
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════════════════
   7. HERO – FŐOLDAL
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, rgba(150,214,8,.16) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(150,214,8,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(150,214,8,.1);
  border: 1px solid rgba(150,214,8,.25);
  color: var(--green-400);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .4375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
}
.hero__badge svg { flex-shrink: 0; }

.hero h1 { color: var(--white); margin-bottom: 1.375rem; }
.hero h1 em {
  font-style: normal;
  color: var(--green-400);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-value {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
  letter-spacing: -.025em;
}
.hero__stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-top: .375rem;
  font-weight: 500;
}

/* Hero kép oldal */
.hero__visual {
  display: none;
  align-items: center;
  justify-content: center;
}
.hero__img-box {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  background: var(--dark-3);
  border-radius: var(--r-lg);
  border: 2px solid rgba(150,214,8,.18);
  box-shadow: 0 0 0 6px rgba(150,214,8,.06);
  overflow: hidden;
  position: relative;
}
.hero__img-box img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-badge {
  position: absolute;
  bottom: 1.125rem;
  left: 1.125rem;
  background: var(--green-500);
  color: var(--dark);           /* sötét szöveg a lime háttéren */
  font-size: .9375rem;
  font-weight: 700;
  padding: .5625rem 1.125rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   8. PAGE HERO (aloldalak)
   ══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150,214,8,.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  color: var(--white);
  margin-bottom: .875rem;
}
.page-hero .lead { color: rgba(255,255,255,.7); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.52); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .3; }

/* ══════════════════════════════════════════════════════════════════════════
   9. SZEKCIÓK
   ══════════════════════════════════════════════════════════════════════════ */
.section       { padding: 5.5rem 0; }
.section--sm   { padding: 3.5rem 0; }
.section--bg   { background: var(--bg); }
.section--bg2  { background: var(--bg-2); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--green { background: var(--green-500); color: var(--dark); }  /* lime háttér, sötét szöveg */
.section--green .section-label { background: rgba(0,0,0,.12); color: var(--dark); border-color: rgba(0,0,0,.15); }
.section--dark  .section-label { background: rgba(255,255,255,.08); color: var(--green-400); border-color: rgba(150,214,8,.3); }

.section-head          { margin-bottom: 3rem; }
.section-head--center  { text-align: center; }
.section-head--center .section-sub { margin-inline: auto; }
.section-head h2 { margin-bottom: .75rem; }

/* ══════════════════════════════════════════════════════════════════════════
   10. KÁRTYÁK
   ══════════════════════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all var(--t);
}
.card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__body { padding: 1.875rem; flex: 1; }
.service-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--green-50);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-700);
  transition: background var(--t);
}
.service-card:hover .service-card__icon { background: var(--green-100); }
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.service-card__desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 100%;
}
.service-card__footer {
  padding: 1rem 1.875rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: all var(--t);
}
.service-card:hover .service-card__footer {
  background: var(--green-50);
  color: var(--green-800);
}

/* ══════════════════════════════════════════════════════════════════════════
   11. USP / FEATURES
   ══════════════════════════════════════════════════════════════════════════ */
.usp-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.usp-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.usp-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.section--dark .usp-icon { background: rgba(150,214,8,.1); border-color: rgba(150,214,8,.22); }
.usp-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .3125rem;
  color: var(--text);
}
.section--dark .usp-content h3 { color: var(--white); }
.usp-content p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 100%;
}
.section--dark .usp-content p { color: rgba(255,255,255,.58); }

/* ══════════════════════════════════════════════════════════════════════════
   12. STATISZTIKÁK / SZÁMLÁLÓK
   ══════════════════════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--dark-2);     /* sötét navy – lime számok lime szöveg */
  border-top: 1px solid rgba(150,214,8,.15);
  border-bottom: 1px solid rgba(150,214,8,.15);
  padding: 3.25rem 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.stat-box { text-align: center; }
.stat-box__num {
  font-size: clamp(2.125rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-500);       /* lime szám */
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-box__label {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  margin-top: .5rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════════
   13. ÉRTÉKELÉSEK
   ══════════════════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
}
.review-stars {
  display: flex;
  gap: .1875rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  max-width: 100%;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: var(--green-700);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 1rem; }
.review-date { font-size: .875rem; color: var(--muted); }
.review-source { font-size: .8125rem; color: var(--muted); margin-top: .125rem; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-md);
  padding: 1.5rem 1.875rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.reviews-summary__score {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}
.reviews-summary__stars {
  display: flex;
  gap: .1875rem;
  color: #f59e0b;
  font-size: 1.25rem;
}
.reviews-summary__count { font-size: .9375rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   14. CONTACT FORM
   ══════════════════════════════════════════════════════════════════════════ */
.contact-wrap { display: grid; gap: 3rem; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.form-col-2 { grid-column: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4375rem;
}
.form-label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
}
.form-label .req { color: var(--green-600); }
.form-control {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(150,214,8,.14);
}
.form-control::placeholder { color: var(--muted); opacity: 1; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-hint { font-size: .875rem; color: var(--muted); }

.form-consent {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.form-consent input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--green-600);
  cursor: pointer;
}
.form-consent label { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.form-consent a { color: var(--green-600); text-decoration: underline; }

.alert {
  padding: 1.125rem 1.375rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.alert-success { background: var(--green-50); border: 1px solid var(--green-200); color: var(--green-800); }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.875rem;
}
.contact-info-card h3 { font-size: 1.0625rem; margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-50);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}
.contact-info-text h4 { font-size: .9375rem; font-weight: 600; }
.contact-info-text a,
.contact-info-text span { font-size: 1rem; color: var(--muted); display: block; }
.contact-info-text a { transition: color var(--t); }
.contact-info-text a:hover { color: var(--green-700); }

/* ══════════════════════════════════════════════════════════════════════════
   15. CTA BANNER
   ══════════════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--dark);
  border-top: 1px solid rgba(150,214,8,.12);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(150,214,8,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .875rem; }
.cta-banner p  { color: rgba(255,255,255,.68); margin-bottom: 2.25rem; margin-inline: auto; max-width: 52ch; }
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════════════
   16. FAQ
   ══════════════════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  background: var(--white);
  transition: background var(--t);
}
.faq-question:hover { background: var(--bg); }
.faq-question[aria-expanded="true"] {
  background: var(--green-50);
  color: var(--green-800);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--green-600);
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.375rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer.is-open { display: block; }

/* ══════════════════════════════════════════════════════════════════════════
   17. INFO LIST
   ══════════════════════════════════════════════════════════════════════════ */
.info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-row { display: flex; gap: 1.125rem; align-items: flex-start; }
.info-row__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--green-50);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.info-row__text h4 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.info-row__text p  { font-size: .9375rem; color: var(--muted); max-width: 100%; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════════════
   18. TRUST STRIP
   ══════════════════════════════════════════════════════════════════════════ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--white);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem 2.5rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5625rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--green-600); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   19. PRICE TABLE
   ══════════════════════════════════════════════════════════════════════════ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.price-table th {
  background: var(--dark);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  padding: 1rem 1.375rem;
  text-align: left;
  font-size: .9375rem;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 1rem 1.375rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.price-table td:last-child { text-align: right; font-weight: 700; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg); }
.price-table .price-note {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
}
.price-highlight { color: var(--green-700); }
.price-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.price-footer {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  padding: 1rem 1.375rem;
  font-size: .9375rem;
  color: var(--green-800);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════════════
   20. SZÖVEG TARTALOM
   ══════════════════════════════════════════════════════════════════════════ */
.content-body { max-width: 72ch; }
.content-body h2 { margin-top: 3rem; margin-bottom: 1.125rem; }
.content-body h3 { margin-top: 2.25rem; margin-bottom: .875rem; }
.content-body p  { color: var(--text-2); line-height: 1.85; margin-bottom: 1.375rem; max-width: 100%; }
.content-body ul { margin-bottom: 1.375rem; padding-left: 1.25rem; list-style: none; }
.content-body ul li {
  padding-left: 1.625rem;
  position: relative;
  color: var(--text-2);
  margin-bottom: .625rem;
  line-height: 1.75;
}
.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: .875rem;
  height: .875rem;
  background: var(--green-50);
  border: 1.5px solid var(--green-300, #86efac);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2315803d' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════════════════════════════════════
   21. FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.62);
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo-img {
  display: inline-block;
  margin-bottom: 1.125rem;
}
.footer-logo-img img { height: 40px; width: auto; }
/* fallback */
.footer-logo-text {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.035em;
  margin-bottom: 1rem;
}
.footer-logo-text span { color: var(--green-400); }
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.75;
  max-width: 26ch;
  margin-bottom: 1.25rem;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: .8125rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: 2rem;
}
.site-footer h3 {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.375rem;
}
.site-footer .footer-col ul li { margin-bottom: .25rem; }
.site-footer .footer-col ul a {
  font-size: 1rem;
  color: rgba(255,255,255,.52);
  display: block;
  padding: .25rem 0;
  transition: color var(--t);
}
.site-footer .footer-col ul a:hover { color: var(--white); }
.footer-contact address { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5625rem;
  font-size: 1rem;
  color: rgba(255,255,255,.58);
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--green-400); }
.footer-contact svg { flex-shrink: 0; }
.footer-hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--green-400);
  font-weight: 600;
  margin-top: .625rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.32);
}
.footer-bottom a { color: rgba(255,255,255,.38); transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,.72); }

/* ══════════════════════════════════════════════════════════════════════════
   22. FLOATING PHONE
   ══════════════════════════════════════════════════════════════════════════ */
.floating-phone {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 150;
  width: 3.75rem;
  height: 3.75rem;
  background: var(--green-500);
  color: var(--dark);           /* sötét ikon a lime háttéren */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(150,214,8,.45);
  transition: all .2s ease;
  animation: pulse-ring 2.5s ease infinite;
}
.floating-phone:hover {
  background: var(--green-400);
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(150,214,8,.55);
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(150,214,8,.4), 0 4px 20px rgba(150,214,8,.45); }
  60%  { box-shadow: 0 0 0 12px rgba(150,214,8,0), 0 4px 20px rgba(150,214,8,.45); }
  100% { box-shadow: 0 0 0 0 rgba(150,214,8,0), 0 4px 20px rgba(150,214,8,.45); }
}

/* ══════════════════════════════════════════════════════════════════════════
   23. UTILITY
   ══════════════════════════════════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 2.5rem 0; }
.tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  font-size: .8125rem;
  font-weight: 700;
  padding: .3125rem .75rem;
  border-radius: var(--r-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tag--yellow { background: #fef9c3; color: #854d0e; border-color: #fef08a; }

.check-list { display: flex; flex-direction: column; gap: .625rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2315803d' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: .1rem;
}

/* Fade-in animáció */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════════════════════
   24. RESZPONZÍV
   ══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
  .grid-2  { grid-template-columns: repeat(2,1fr); }
  .grid-4  { grid-template-columns: repeat(2,1fr); }
  .stats-band .container { grid-template-columns: repeat(4,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .hero__stats  { grid-template-columns: repeat(4,1fr); }
}

@media (min-width: 768px) {
  :root { --px: 2rem; }
  .section    { padding: 6.5rem 0; }
  .section--sm { padding: 4rem 0; }
  .hero { padding: 7rem 0 5.5rem; }
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .hero__visual { display: flex; }
  .hero__stats  { border-top: none; padding-top: 0; }
  .usp-grid   { grid-template-columns: repeat(2,1fr); }
  .form-grid  { grid-template-columns: repeat(2,1fr); }
  .form-col-2 { grid-column: 1 / -1; }
  .contact-wrap { grid-template-columns: 1fr 380px; }
  .footer-grid  { grid-template-columns: 1.6fr 1fr 1fr 1.25fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .nav-links   { display: flex; }
  .nav-actions { display: flex; }
  .hamburger   { display: none; }
}

@media (min-width: 1024px) {
  :root { --px: 2.5rem; }
  .grid-3    { grid-template-columns: repeat(3,1fr); }
  .grid-4    { grid-template-columns: repeat(4,1fr); }
  .usp-grid  { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: repeat(3,1fr); }
  .page-hero { padding: 4.5rem 0; }
}

@media print {
  .site-header, .floating-phone, .cta-banner { display: none; }
  body { color: #000; }
  a { text-decoration: underline; }
}
