/* ================================================
   NETSEGÉD – style.css
   Minden oldal közös stíluslapja
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Változók – innen lehet átszínezni az egész oldalt ── */
:root {
  --primary:      #1a1a2e;
  --accent:       #e94560;
  --accent-dark:  #c73652;
  --bg:           #f9f9f9;
  --white:        #ffffff;
  --text:         #2d2d2d;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --nav-h:        68px;
  --radius:       10px;
  --radius-sm:    6px;
  --shadow:       0 2px 16px rgba(26,26,46,0.08);
  --shadow-md:    0 4px 24px rgba(26,26,46,0.12);
  --shadow-lg:    0 8px 40px rgba(26,26,46,0.18);
  --font-h:       'Josefin Sans', 'Segoe UI', sans-serif;
  --font-b:       'Merriweather', Georgia, serif;
  --t:            0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Tipográfia ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

/* ── Elrendezés segédek ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  background: rgba(233,69,96,0.08);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 10px; }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-sub-center { margin-left: auto; margin-right: auto; }

.divider {
  width: 44px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Gombok ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(233,69,96,0.28);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(233,69,96,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-lg   { padding: 16px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ================================================
   NAVIGÁCIÓ – sticky, logo bal / menu jobb
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: white;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
  display: flex;
  align-items: center;
}
.site-header .container { width: 100%; }
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.nav-logo:hover { color: var(--primary); text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: white;
  font-family: var(--font-h);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu > li > a {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  display: block;
  transition: color var(--t), background var(--t);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: var(--bg);
}

/* Dropdown navigáció */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  padding-top: 12px;
  box-shadow: var(--shadow-md);
  z-index: 200;
}
/* Átlátszó híd a nav item és a dropdown között – megszünteti a gap-et */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.nav-dropdown li a:hover { background: var(--bg); color: var(--primary); }

.nav-cta {
  margin-left: 10px;
  background: var(--accent) !important;
  color: white !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* Hamburger (mobilon látszik) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
  margin: 0 auto;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO SZEKCIÓ
   ================================================ */
.hero {
  background: var(--primary);
  color: white;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,69,96,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero jobb oldali vizuál elem */
.hero-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}
.hero-visual-title {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ================================================
   SZEGMENS KÁRTYÁK (főoldal – 3 egymás mellett)
   ================================================ */
.segments { background: var(--bg); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.seg-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.seg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.seg-icon { font-size: 2.4rem; margin-bottom: 16px; line-height: 1; }
.seg-card h3 { margin-bottom: 12px; }
.seg-card > p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; flex: 1; }
.seg-key {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 16px 0;
}
.seg-card .btn { margin-top: auto; }

/* ================================================
   VÉLEMÉNYEK SZEKCIÓ
   ================================================ */
.reviews { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
}
.review-author {
  font-family: var(--font-h);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
}
.review-role { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; font-family: var(--font-h); }

/* ================================================
   RÓLUNK (főoldalon – sötét háttér)
   ================================================ */
.about-band {
  background: var(--primary);
  color: white;
  padding: 80px 0;
}
.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-band h2 { color: white; margin-bottom: 16px; }
.about-band p  { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.home-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.home-faq-item { padding: 24px 28px; border: 1.5px solid var(--border); border-radius: 14px; background: var(--bg); }
.home-faq-item h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text); }
.home-faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0; }
.home-faq-item a { color: var(--accent); text-decoration: none; }
.home-faq-item a:hover { text-decoration: underline; }
@media (max-width: 700px) { .home-faq-grid { grid-template-columns: 1fr; } }
.about-band-author { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.about-band-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.about-band-author strong { display: block; color: white; font-size: 0.92rem; }
.about-band-author span { display: block; color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 2px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ================================================
   OLDAL FEJLÉC (belső oldalak)
   ================================================ */
.page-header {
  background: var(--primary);
  color: white;
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

/* ================================================
   SZOLGÁLTATÁSOK (aloldal)
   ================================================ */
.service-block {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-block h2 { margin-bottom: 16px; }
.service-block > .service-block-inner > div > p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.feature-list li::before {
  content: '✔';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-h);
}

.service-visual {
  background: linear-gradient(135deg, rgba(26,26,46,0.05) 0%, rgba(233,69,96,0.07) 100%);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 5rem;
  overflow: hidden;
}
.service-visual--img {
  background: none;
  border: none;
  padding: 0;
  min-height: auto;
  font-size: 0;
  display: block;
}
.service-visual--img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1.5px solid var(--border);

}

/* ================================================
   REFERENCIÁK OLDAL
   ================================================ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ref-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ref-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.ref-visual--img {
  height: 180px;
  overflow: hidden;
  padding: 0;
  background: var(--primary);
}
.ref-visual--img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ref-body { padding: 24px; }
.ref-cat {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.ref-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.ref-badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ref-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(26,26,46,0.06);
  color: var(--text);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}
.ref-result {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ================================================
   ÁRAK OLDAL
   ================================================ */
.text-center { text-align: center; }

.demjan-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(233,69,96,0.06);
  border: 1.5px solid rgba(233,69,96,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.demjan-icon { font-size: 1.5rem; flex-shrink: 0; }
.demjan-banner a { color: var(--accent); font-weight: 600; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 72px;
}
.price-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(233,69,96,0.12);
}
.price-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-badge {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 500; }
.price-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 24px; }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.price-list li::before {
  content: '✔';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-h);
}
.price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.price-sale-badge {
  display: inline-block;
  background: #fff0f3;
  color: var(--accent);
  border: 1.5px solid rgba(233,69,96,0.25);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.price-original {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0 0;
}
.comparison-col {
  border-radius: 14px;
  padding: 28px;
  border: 1.5px solid var(--border);
}
.comparison-col--bad { background: #fff5f5; border-color: #fca5a5; }
.comparison-col--good { background: #f0fdf4; border-color: #86efac; }
.comparison-header {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-h);
}
.comparison-col--bad .comparison-header { color: #dc2626; }
.comparison-col--good .comparison-header { color: #16a34a; }
.comparison-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.comparison-list li { font-size: 0.9rem; line-height: 1.5; padding-left: 20px; position: relative; color: var(--text); }
.comparison-col--bad .comparison-list li::before { content: "✗"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.comparison-col--good .comparison-list li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
@media (max-width: 640px) { .comparison-table { grid-template-columns: 1fr; } }
.srv-quote { margin: 32px 0 0; padding: 20px 28px; border-left: 4px solid var(--accent); background: var(--bg); border-radius: 0 10px 10px 0; font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.6; }
.srv-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.price-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-testimonial { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; }
.price-testimonial p { font-size: 1rem; color: var(--text); line-height: 1.65; margin-bottom: 12px; font-style: italic; }
.price-testimonial cite { font-size: 0.82rem; color: var(--text-light); font-style: normal; font-weight: 600; }
@media (max-width: 640px) { .price-testimonials { grid-template-columns: 1fr; } }
.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ================================================
   KAPCSOLAT OLDAL
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-author { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.contact-author-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--accent); }
.contact-author strong { display: block; font-size: 1rem; color: var(--text); }
.contact-author span { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.contact-author-li { display: inline-block; margin-top: 4px; font-size: 0.8rem; color: #0077b5; text-decoration: none; }
.contact-author-li:hover { text-decoration: underline; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item  { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(233,69,96,0.08);
  border: 1.5px solid rgba(233,69,96,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(233,69,96,0.08);
  border: 1.5px solid rgba(233,69,96,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-label {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-value { font-size: 0.95rem; font-weight: 500; display: block; }
.contact-value a, .contact-item-value a { color: var(--text); }
.contact-value a:hover, .contact-item-value a:hover { color: var(--accent); }
.contact-item-value { font-size: 0.95rem; font-weight: 500; }
.contact-note {
  background: rgba(233,69,96,0.05);
  border: 1.5px solid rgba(233,69,96,0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-top: 28px;
}
.contact-note strong { color: var(--text); }

.contact-form-wrap {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 24px; font-size: 1.2rem; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-msg--success { background: #dcfce7; color: #166534; border: 1.5px solid #bbf7d0; }
.form-msg--error   { background: #fee2e2; color: #991b1b; border: 1.5px solid #fecaca; }
.form-privacy { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-accent {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: transparent; color: white; }
.section-sub-center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.form-group  { margin-bottom: 18px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }

label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
label span { color: var(--accent); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}
textarea { resize: vertical; min-height: 120px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.checkbox-row input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.checkbox-row label { font-size: 0.8rem; font-weight: 400; margin-bottom: 0; color: var(--text-light); }

/* Validáció */
.field-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important; }
.field-ok    { border-color: #22c55e !important; }
.error-msg   { font-size: 0.75rem; color: #dc2626; margin-top: 4px; display: none; }

.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-icon {
  width: 60px; height: 60px;
  background: #dcfce7;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.success-msg h4 { font-size: 1.25rem; margin-bottom: 8px; }
.success-msg p  { font-size: 0.9rem; color: var(--text-light); }

.form-note { font-size: 0.77rem; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-logo:hover { text-decoration: none; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 14px; }
.footer-demjan {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-demjan strong { color: rgba(255,255,255,0.5); }
.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: white; }

/* ================================================
   RESZPONZÍV – mobile-first (768px töréspontnál)
   ================================================ */
@media (max-width: 768px) {

  /* Navigáció hamburger */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 16px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 10px 12px; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-dropdown { position: static; border: none; box-shadow: none; padding: 0 0 0 16px; background: none; }
  .has-dropdown:hover .nav-dropdown { display: none; }
  .has-dropdown.mobile-open .nav-dropdown { display: block; }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-btns  { flex-direction: column; }

  /* Kártyák egymás alá */
  .segments-grid  { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .about-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .hero-stats     { grid-template-columns: 1fr 1fr; }

  /* Szolgáltatások */
  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block-inner.reverse { direction: ltr; }

  /* Referenciák */
  .ref-grid { grid-template-columns: 1fr; }

  /* Árak */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-grid   { grid-template-columns: 1fr; }
  .price-card--featured { margin-top: 20px; }
  .faq-grid     { grid-template-columns: 1fr; }

  /* Kapcsolat */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }

  /* Footer */
  .footer-top   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Szakasz padding */
  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .page-header { padding: 48px 0 40px; }
  .about-band  { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-stats   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-stats  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .btn-lg       { padding: 14px 24px; font-size: 0.95rem; }
}

/* ================================================
   ANNOUNCEMENT BAR – akciós sáv
   ================================================ */
.announce-bar {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announce-bar a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
}
.announce-bar a:hover { opacity: 0.85; }

/* ================================================
   RÓLUNK OLDAL
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  border: 1.5px solid var(--border);
}
.about-content h2 { margin-bottom: 20px; }
.about-content p  { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-content p:last-of-type { margin-bottom: 24px; }
.about-content strong { color: var(--text); }

.about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; margin-bottom: 16px; }
.linkedin-link { display: inline-flex; align-items: center; gap: 6px; color: #0077b5; font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.linkedin-link:hover { text-decoration: underline; }
.about-badge {
  display: inline-block;
  background: rgba(26,26,46,0.06);
  border: 1.5px solid rgba(26,26,46,0.1);
  color: var(--text);
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
  white-space: nowrap;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 8px; }
.timeline-content p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ================================================
   JOGI OLDALAK (adatkezelés, ÁSZF)
   ================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0 80px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--primary);
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-content p  { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; padding-left: 20px; font-size: 0.95rem; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--accent); }
.legal-meta {
  background: rgba(26,26,46,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}
.legal-meta strong { color: var(--text); display: inline-block; min-width: 160px; }

/* ================================================
   BLOG LISTING OLDAL
   ================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card h2 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--primary);
}
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read-more {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), #2d2d5e);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-thumb-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ================================================
   BLOG CIKK OLDAL
   ================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 64px 0 80px;
}
.article-body { min-width: 0; }
.article-body h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}
.article-body h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--text);
}
.article-body p  { color: var(--text-light); line-height: 1.85; margin-bottom: 16px; font-size: 0.96rem; }
.article-body ul, .article-body ol {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
  padding-left: 22px;
  font-size: 0.96rem;
}
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-body strong { color: var(--text); }
.article-body a:not(.btn) { color: var(--accent); }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  margin: 28px 0;
  padding: 16px 24px;
  background: rgba(233,69,96,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}
.article-header-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-header-meta span { display: flex; align-items: center; gap: 5px; }
.article-cta-box {
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-top: 40px;
}
.article-cta-box h3 { color: white; font-size: 1.1rem; margin-bottom: 10px; }
.article-cta-box p  { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.7; }

/* Sidebar */
.article-sidebar { position: static; }
.sidebar-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 16px;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul li { margin-bottom: 12px; }
.sidebar-card ul li a {
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
}
.sidebar-card ul li a:hover { color: var(--accent); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--accent), #c73450);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}
.sidebar-cta h4 { color: white; font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta p  { color: rgba(255,255,255,0.8); font-size: 0.84rem; margin-bottom: 18px; line-height: 1.6; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Rólunk responsive */
@media (max-width: 768px) {
  .about-grid    { grid-template-columns: 1fr; gap: 32px; }
  .values-grid   { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-year { padding-top: 0; }
}

/* Utility classes – inline style kiváltása */
.bg-white    { background: white; }
.bg-soft     { background: var(--bg); }
.bg-primary  { background: var(--primary); }
.mt-8        { margin-top: 8px; }
.mt-10       { margin-top: 10px; }
.mt-12       { margin-top: 12px; }
.mt-14       { margin-top: 14px; }
.mt-40       { margin-top: 40px; }
.mb-40       { margin-bottom: 40px; }
.mb-44       { margin-bottom: 44px; }
.mb-48       { margin-bottom: 48px; }
.link-accent { color: var(--accent); }
.link-subtle { color: rgba(255,255,255,0.8); text-decoration: underline; }
.section-label--on-dark { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.6); }
.section-title--white   { color: white; margin-top: 8px; }
.section-title--white-mt10 { color: white; margin-top: 10px; }
.section-sub--on-dark   { color: rgba(255,255,255,0.7); }
.section-sub--dimmed    { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-top: 12px; }
.section-note--dimmed   { margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dim  { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
