/* ============================
   DESIGN TOKENS – Greenline Brand Colors
   ============================ */
:root {
  --green:        #1F8A4C;
  --green-hover:  #176B3A;
  --green-dark:   #0F3D2E;
  --green-accent: #6FE7B8;
  --green-light:  #E8F5EE;
  --green-mid:    #176B3A;
  --green-xpale:  #A8F0D8;
  --off-white:    #F6F8F7;
  --surface:      #FFFFFF;
  --charcoal:     #0F3D2E;
  --charcoal-2:   #1a3028;
  --charcoal-3:   #1e3a2e;
  --text:         #1F2933;
  --muted:        #6B7C85;
  --border:       #E2EBE8;
  --success:      #22C55E;
  --warning:      #F59E0B;
  --error:        #EF4444;
  --info:         #0EA5A4;
  --radius:       12px;
  --radius-lg:    20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--green), var(--green-accent));
  width: 0%; transition: width .1s linear; pointer-events: none;
}

/* UTILITIES */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 88px 0; }
.s-dark     { background: var(--charcoal); color: #fff; }
.s-off      { background: var(--off-white); }
.s-green    { background: var(--green-light); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1rem;
}
.tag-inv { background: rgba(111,231,184,.15); color: var(--green-accent); }

.sh { margin-bottom: 52px; }
.sh.center { text-align: center; }
.sh.center .sdesc { margin: 0 auto; }

.stitle {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.025em; margin-bottom: .75rem;
}
.sdesc {
  font-size: 17px; color: var(--muted);
  max-width: 560px; line-height: 1.65;
}
.sdesc-inv { color: rgba(255,255,255,.6); text-align: justify; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: 13px; border: none;
  cursor: pointer; transition: all .2s; text-decoration: none; line-height: 1;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-100%); transition: transform 0s;
}
.btn:hover::after { animation: btn-shine .45s ease forwards; }
@keyframes btn-shine { to { transform: translateX(100%); } }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31,138,76,.38); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-green-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-green-outline:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 10px; }

/* ============================
   HEADER
   ============================ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(15,61,46,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hdr-inner {
  display: flex; align-items: center;
  height: 64px;
}
.hdr-inner .nav { margin-left: 3.5rem; }
.hdr-inner .hdr-cta { margin-left: auto; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -.01em;
}
.logo img {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
}
.logo-box {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-box i { color: #fff; font-size: 20px; }
.logo .g { color: var(--green-accent); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active { color: var(--green-accent); background: rgba(111,231,184,.1); }

.hdr-cta { display: flex; align-items: center; gap: 10px; }
.hdr-phone {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: color .15s; white-space: nowrap;
}
.hdr-phone:hover { color: var(--green-accent); }
.burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; font-size: 22px; }

.mob-menu {
  display: none; position: fixed; inset: 64px 0 0;
  background: var(--charcoal-2); z-index: 199; overflow-y: auto;
  padding: 1rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block; color: rgba(255,255,255,.8); font-size: 16px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-menu a:last-of-type { border: none; }
.mob-menu .btn { width: 100%; margin-top: 1.25rem; justify-content: center; }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh; padding-top: 64px;
  background: linear-gradient(135deg, #0F3D2E 0%, #0F3D2E 25%, #1F8A4C 65%, rgba(111,231,184,.3) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 72% 45%, rgba(31,138,76,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: stretch;
  padding: 80px 0; position: relative; z-index: 1;
}
.hero-visual {
  display: flex; align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111,231,184,.18); color: var(--green-accent);
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(111,231,184,.3);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-accent);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero-motto {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-style: italic; color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.hero-motto i { color: var(--green-accent); font-size: 15px; font-style: normal; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  color: #fff; margin-bottom: 1.25rem;
}
.hero h1 .hl { color: var(--green-accent); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 2.25rem; max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: nowrap;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hstat-n { font-size: 26px; font-weight: 800; color: var(--green-accent); line-height: 1; }
.hstat-l { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.75rem;
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hcard-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem;
}
.hcard-steps { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.5rem; }
.hcard-step { display: flex; align-items: center; gap: 12px; }
.hcard-step-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.hcard-step-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.hcard-area {
  background: rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 14px 16px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.hcard-area-left { font-size: 12px; color: rgba(255,255,255,.5); }
.hcard-area-val { font-size: 17px; font-weight: 700; color: #fff; margin-top: 3px; }
.hcard-area-ico i { color: rgba(111,231,184,.65); font-size: 32px; }

/* ============================
   PROOF PILLARS
   ============================ */
.pillars { border-bottom: 1px solid var(--border); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; border-right: 1px solid var(--border);
  transition: background .2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--off-white); }
.pillar-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-ico i { color: var(--green); font-size: 24px; }
.pillar-title { font-size: 16px; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.pillar-sub { font-size: 13px; color: var(--muted); }

/* ============================
   MI AZ A MOBILMOSÁS?
   ============================ */
.mi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.mi-visual {
  background: linear-gradient(145deg, var(--green-light), #C8F0DF);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mi-visual::before {
  content: ''; position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(31,138,76,.18);
}
.mi-visual i { font-size: 88px; color: var(--green); opacity: .65; position: relative; z-index: 1; }
.mi-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
  transition: border-color .15s, background .15s;
}
.chip:hover { border-color: var(--green); background: var(--green-light); }
.chip i { color: var(--green); font-size: 14px; }

/* ============================
   HOGYAN MŰKÖDIK
   ============================ */
.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 35px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-accent));
  z-index: 0;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.step { text-align: center; padding: 0 10px; list-style: none; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(31,138,76,.3);
  animation: pulse-ring 3.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 4px 18px rgba(31,138,76,.3); }
  50%      { box-shadow: 0 4px 32px rgba(31,138,76,.52); }
}
.step-num i { color: #fff; font-size: 26px; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============================
   CSOMAGOK
   ============================ */
.pkgs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 20px;
}
.pkg {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; background: #fff; position: relative;
  transition: all .25s;
}
.pkg:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(31,138,76,.12); }
.pkg.featured { border-color: var(--green); background: linear-gradient(170deg, #E8F5EE 0%, #fff 60%); }
.pkg-badge2 {
  position: absolute; top: -1px; right: 22px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
}
.pkg-name { font-size: 22px; font-weight: 800; margin-bottom: 3px; color: var(--text); }
.pkg-tag  { font-size: 13px; color: var(--muted); margin-bottom: 1.25rem; }
.pkg-from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.pkg-price { font-size: 32px; font-weight: 800; color: var(--green); line-height: 1; }
.pkg-price-unit { font-size: 13px; font-weight: 500; color: var(--muted); }
.pkg-sep { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pkg-feat { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pkg-feat li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.pkg-feat li i { color: var(--green); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.pkg-cta-wrap { margin-top: 1.75rem; }

/* Corporate card */
.corp-wrap {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-3) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.corp-title { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.corp-desc  { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; max-width: 540px; }
.corp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.corp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 100px;
}
.corp-chip i { color: var(--green-accent); font-size: 14px; }
.corp-cta { flex-shrink: 0; }

/* ============================
   MIÉRT JOBB?
   ============================ */
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.cmp-col-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--border);
}
.cmp-col-title .dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.cmp-col-title .dot-bad  { background: #ccc; }
.cmp-col-title .dot-good { background: var(--green); }
.cmp-col-title.bad  { color: var(--muted); }
.cmp-col-title.good { color: var(--green-dark); }
.cmp-items { display: flex; flex-direction: column; gap: 10px; }
.cmp-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
}
.cmp-item.bad  { background: #f6f6f6; }
.cmp-item.good { background: var(--green-light); }
.cmp-item i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.cmp-item.bad  i { color: #bbb; }
.cmp-item.good i { color: var(--green); }
.cmp-item .ct { font-size: 14px; line-height: 1.55; }
.cmp-item.bad  .ct { color: var(--muted); }
.cmp-item.good .ct { color: var(--green-dark); font-weight: 500; }

/* ============================
   ELŐTTE-UTÁNA
   ============================ */
.ba-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border); min-height: 260px;
}
.ba-before {
  background: linear-gradient(135deg, #2a2a2a, #3d3d3d);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem; padding: 2rem;
}
.ba-after {
  background: linear-gradient(135deg, var(--green-light), #C8F0DF);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem; padding: 2rem;
}
.ba-label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.ba-before .ba-label { background: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
.ba-after  .ba-label { background: var(--green); color: #fff; }
.ba-before i { font-size: 52px; color: rgba(255,255,255,.25); }
.ba-after  i { font-size: 52px; color: var(--green); opacity: .65; }
.ba-before p { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; }
.ba-after  p { font-size: 13px; color: var(--green-dark); text-align: center; font-weight: 500; }
.ba-note { text-align: center; margin-top: 1.25rem; font-size: 13px; color: var(--muted); }
.ba-note span { color: var(--green); font-weight: 600; }

/* ============================
   CÉGES FLOTTA
   ============================ */
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.fleet-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 1.75rem; }
.fleet-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, border-color .2s;
}
.fleet-feat:hover { background: rgba(111,231,184,.08); border-color: rgba(111,231,184,.2); }
.fleet-feat-ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(111,231,184,.2);
  display: flex; align-items: center; justify-content: center;
}
.fleet-feat-ico i { color: var(--green-accent); font-size: 20px; }
.fleet-feat-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.fleet-feat-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; text-align: justify; }
.fleet-visual-side {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.fleet-visual-side i { font-size: 72px; color: rgba(111,231,184,.3); display: block; text-align: center; margin-bottom: 1.5rem; }
.fleet-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fstat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 16px;
}
.fstat-n { font-size: 30px; font-weight: 800; color: var(--green-accent); line-height: 1; }
.fstat-l { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ============================
   SOCIAL WALL
   ============================ */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.schan { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.schan-hdr {
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.schan-ico {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.schan-ico.fb { background: #1877F2; }
.schan-ico.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.schan-ico.tt { background: #010101; }
.schan-ico i { color: #fff; font-size: 20px; }
.schan-name   { font-size: 14px; font-weight: 700; color: var(--text); }
.schan-handle { font-size: 12px; color: var(--muted); }
.schan-body   { padding: 14px; min-height: 220px; flex: 1; display: flex; align-items: center; justify-content: center; }
.schan-foot { padding: 10px 18px; border-top: 1px solid var(--border); text-align: center; }
.schan-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); }
.schan-link:hover { color: var(--green-hover); }
.social-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-height: 220px; gap: 10px; text-align: center;
}
.social-placeholder i { font-size: 40px; color: var(--border); }
.social-placeholder p { font-size: 13px; color: var(--muted); max-width: 200px; }

/* ============================
   GYIK
   ============================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.faq { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 20px; font-family: var(--font);
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q i { flex-shrink: 0; color: var(--green); font-size: 17px; transition: transform .25s; }
.faq.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  max-height: 0; overflow: hidden;
  padding: 0 20px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ============================
   CTA / KAPCSOLAT
   ============================ */
.cta-sec {
  background: linear-gradient(145deg, var(--green-dark) 0%, #163d20 45%, #1a2a1e 100%);
  padding: 100px 0; text-align: center;
}
.cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 1rem;
}
.cta-desc { font-size: 18px; color: rgba(255,255,255,.6); max-width: 440px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-social {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.csoc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.09); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 100px;
  transition: all .2s;
}
.csoc-btn:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--green-dark); color: rgba(255,255,255,.55);
  padding: 52px 0 28px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.foot-brand p { font-size: 14px; line-height: 1.65; margin-top: 1rem; max-width: 280px; }
.foot-col-t { font-size: 11px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.foot-links a:hover { color: var(--green-accent); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
}
.foot-bottom p { font-size: 13px; }
.foot-social { display: flex; gap: 8px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 18px; transition: all .15s;
}
.foot-social a:hover { background: var(--green); color: #fff; }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ============================
   HERO – ICON STAT CARDS
   ============================ */
.hero-stat-card { display: flex; align-items: center; gap: 12px; }
.hstat-ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(111,231,184,.15); border: 1px solid rgba(111,231,184,.2);
  display: flex; align-items: center; justify-content: center;
}
.hstat-ico i { color: var(--green-accent); font-size: 20px; }
.hcard-step-num i { font-size: 17px; }

/* ============================
   MOBILE STICKY CTA
   ============================ */
.mob-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.12);
  padding: 12px 1.5rem;
}
.mob-sticky-cta .btn { width: 100%; justify-content: center; }

/* ============================
   CSOMAGOK – KIEGÉSZÍTŐK
   ============================ */
.pkg-note {
  text-align: center; font-size: 13px; color: var(--muted);
  margin-top: -16px; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pkg-note i { color: var(--green); flex-shrink: 0; }
.pkg.featured {
  box-shadow: 0 8px 32px rgba(31,138,76,.15); transform: translateY(-2px);
}
/* pkg type toggle */
.pkg-type-toggle { display: flex; gap: 8px; justify-content: center; margin: 1.25rem 0 1.75rem; flex-wrap: wrap; }
.ptt-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border: 2px solid var(--border); border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--muted); background: #fff; cursor: pointer; transition: all .2s; }
.ptt-btn:hover { border-color: var(--green); color: var(--green); }
.ptt-btn.active { border-color: var(--green); color: #fff; background: var(--green); }
.ptt-btn i { font-size: 15px; }
.pkg-feat-group-title { font-size: 11px !important; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted) !important; margin-top: .65rem; }
.pkg-feat-group-title:first-child { margin-top: 0; }
.pkg-feat-group-title i { color: var(--muted) !important; font-size: 13px !important; margin-top: 0 !important; }

.pkg-for {
  font-size: 12px; color: var(--muted); background: var(--off-white);
  border-radius: 8px; padding: 8px 12px; margin-top: 1rem; line-height: 1.45;
  border: 1px solid var(--border);
}
.pkg-for strong { color: var(--text); font-weight: 600; }

/* ============================
   TRUST STRIP + GARANCIA
   ============================ */
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--border);
}
.trust-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
}
.trust-ico i { color: var(--green); font-size: 18px; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.trust-desc  { font-size: 13px; color: var(--muted); line-height: 1.45; }
.guarantee-note {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--green-light); border: 1px solid rgba(31,138,76,.2);
  border-radius: var(--radius); padding: 16px 20px; margin-top: 14px;
}
.guarantee-note i { color: var(--green); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.guarantee-note p { font-size: 14px; color: var(--green-dark); line-height: 1.55; }
.guarantee-note strong { font-weight: 700; }

/* ============================
   MUNKÁINK (Referenciák)
   ============================ */
.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); gap: 16px; justify-content: center; }
.ref-card {
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; background: #fff;
  transition: all .25s; text-decoration: none; color: inherit;
}
.ref-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(31,138,76,.1); }
.ref-card-ico { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.ref-card-ico i { color: #fff; font-size: 24px; }
.ref-card-title { font-size: 18px; font-weight: 700; color: var(--text); }
.ref-card-desc  { font-size: 14px; color: var(--muted); line-height: 1.5; flex: 1; }
.ref-card-link  { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); }
.ref-card.ref-card-cta { border-color: var(--green); background: var(--green-light); }
.ref-card.ref-card-cta .ref-card-title,
.ref-card.ref-card-cta .ref-card-desc { color: var(--green-dark); }

/* ============================
   FLOTTA – FORM PLACEHOLDER + TÍPUSCSOMAGOK
   ============================ */
.fleet-form-ph {
  margin-top: 2rem; padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,.04); border-top: 1px dashed rgba(111,231,184,.3);
  text-align: center;
}
.fleet-form-ph p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.fleet-pkgs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.fleet-pkg {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.fleet-pkg-ico { color: var(--green-accent); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.fleet-pkg-title { font-size: 14px; font-weight: 700; color: #fff; }
.fleet-pkg-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.45; text-align: justify; }

/* ============================
   GYIK – KATEGÓRIA FEJLÉCEK
   ============================ */
.faq-cat-label {
  grid-column: 1 / -1; font-size: 11px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 0; border-bottom: 1px solid var(--border); margin-top: 12px;
}
.faq-cat-label:first-child { margin-top: 0; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .steps-grid  { grid-template-columns: repeat(3, 1fr); }
  .steps-line  { display: none; }
  .pkgs-grid   { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav, .hdr-cta .btn-lg, .hdr-phone { display: none; }
  .burger { display: block; }
  .mob-sticky-cta { display: block; }
  .mob-menu { bottom: 76px; }
  body { padding-bottom: 76px; }
  .trust-strip { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .mi-grid    { grid-template-columns: 1fr; }
  .mi-visual  { aspect-ratio: 16/7; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pkgs-grid  { grid-template-columns: 1fr; }
  .corp-wrap  { flex-direction: column; padding: 2rem; text-align: center; }
  .corp-chips { justify-content: center; }
  .corp-cta   { width: 100%; }
  .corp-cta .btn { width: 100%; justify-content: center; }
  .cmp-grid   { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-visual-side { display: none; }
  .social-grid { grid-template-columns: 1fr; }
  .faq-grid   { grid-template-columns: 1fr; }
  .foot-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .ba-wrap    { grid-template-columns: 1fr; min-height: auto; }
}
@media (max-width: 480px) {
  .steps-grid  { grid-template-columns: 1fr; }
  .fleet-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats  { gap: 1rem; }
  .hstat-n     { font-size: 20px; }
  .hstat-ico   { width: 32px; height: 32px; font-size: 14px; }
  .cta-btns    { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .hero-ctas   { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
