/* ═══════════════════════════════════════════════════════
   KUPOVICS KFT. — KÖZÖS STÍLUSLAP
═══════════════════════════════════════════════════════ */

/* ═══ RESET & ALAPOK ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #F7F2E8;
  color-scheme: light only;
}
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #2A2620;
  background: #F7F2E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ═══ SZÍN-VÁLTOZÓK ═══ */
:root {
  /* Explicit light scheme — megakadályozza a Samsung/Chrome force-dark módot */
  color-scheme: light only;
  --bg: #F7F2E8;
  --bg-card: #FFFFFF;
  --bg-soft: #EFE8D7;
  --text: #2A2620;
  --text-2: #5A5346;
  --text-3: #8B7B5F;
  --accent: #B85C3A;
  --accent-dark: #8B4528;
  --border: #E8DEC8;
  --border-2: #D8CDB5;
}

/* ═══ LAYOUT ═══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-lead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ═══ NAVIGÁCIÓ ═══ */
.nav {
  position: relative;
  z-index: 100;
  background: #F7F2E8;
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}

/* horgony-linkek (#kapcsolat, stb.) helyesen ugorjanak az anchor pozícióra */
section[id] {
  scroll-margin-top: 16px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}
.nav-logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.is-current { color: var(--accent); }
.nav-cta {
  background: var(--text);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: var(--accent-dark); color: var(--bg) !important; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 880px) {
  .nav-inner { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(42, 38, 32, 0.08);
    z-index: 99;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    font-size: 16px;
    padding: 8px 0;
  }
  .nav-cta {
    text-align: center;
    padding: 12px 18px;
    margin-top: 4px;
  }
}

/* ═══ HERO (általános) ═══ */
.hero { padding: 80px 0 60px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 880px;
}
.hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 2px solid var(--border-2);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, transform .15s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  padding: 16px 24px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--bg);
}

/* HERO FOTÓK (főoldal) */
.hero-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-top: 64px;
}
.hero-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-soft);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo svg.illust {
  width: 100%; height: 100%;
  display: block;
  background: linear-gradient(135deg, #E8DEC8 0%, #D8CDB5 100%);
}
.hero-photo-2 { aspect-ratio: 5/4; }
.hero-photo-caption {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(42, 38, 32, 0.55);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .hero { padding: 28px 0 32px; }
  .hero h1 { margin-bottom: 20px; }
  .hero-tag { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; padding-left: 14px; font-size: 16px; }
  .hero-photos { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .hero-photo, .hero-photo-2 { aspect-ratio: 16/10; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .subpage-hero { padding: 24px 0 28px; }
}

/* ═══ SZOLGÁLTATÁSOK (főoldal) ═══ */
.services { padding: 80px 0; border-top: 0.5px solid var(--border); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(184, 92, 58, 0.18);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.service-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link::after { content: '→'; transition: transform .2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ═══ MIÉRT OKOSOTTHON? ═══ */
.why {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.why-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
  margin-top: 48px;
}
@media (max-width: 880px) { .why-categories { grid-template-columns: 1fr; gap: 40px; } }

.why-cat-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-cat-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  color: var(--accent);
  flex-shrink: 0;
}
.why-cat-icon svg { width: 18px; height: 18px; }
.why-items { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  padding-left: 16px;
  border-left: 2px solid var(--border-2);
  transition: border-color .2s;
}
.why-item:hover { border-left-color: var(--accent); }
.why-item-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.why-item-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══ RÓLAM (főoldal) ═══ */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-text strong {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 19px;
}
/* PORTRÉ videó — 9:16 telefonos felvétel */
.about-video {
  border-radius: 16px;
  overflow: hidden;
  background: var(--text);
  border: 0.5px solid var(--border);
  aspect-ratio: 9/16;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 24px 48px -16px rgba(42, 38, 32, 0.18);
  position: relative;
}
.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-video::before {
  content: 'Bemutatkozó';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(42, 38, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
@media (max-width: 880px) {
  .about-video { max-width: 300px; }
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .about-stats { gap: 8px; }
  .stat-num { font-size: 28px !important; }
}
.stat {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: left;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* ═══ KAPCSOLAT ═══ */
.contact {
  padding: 80px 0;
  background: var(--text);
  color: var(--bg);
}
.contact .section-tag { color: var(--accent); }
.contact .section-tag::before { background: var(--accent); }
.contact h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--bg);
}
.contact h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.contact-lead {
  font-size: 17px;
  color: rgba(247, 242, 232, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: rgba(247, 242, 232, 0.06);
  border: 0.5px solid rgba(247, 242, 232, 0.12);
  border-radius: 12px;
  padding: 28px;
  transition: background .25s, border-color .25s;
  display: block;
}
.contact-card:hover {
  background: rgba(184, 92, 58, 0.12);
  border-color: var(--accent);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-label svg { width: 14px; height: 14px; }
.contact-value {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--bg);
  line-height: 1.2;
}
@media (max-width: 480px) { .contact-value { font-size: 20px; } }

/* ═══ IMPRESSZUM (FOOTER) ═══ */
.footer {
  background: #1F1B16;
  color: rgba(247, 242, 232, 0.6);
  padding: 56px 0 32px;
  font-size: 13px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.4);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col p, .footer-col a, .footer-col li {
  color: rgba(247, 242, 232, 0.65);
  margin-bottom: 6px;
  display: block;
  list-style: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-brand-sub {
  margin-bottom: 18px;
  color: rgba(247, 242, 232, 0.55);
}
.footer-impressum {
  font-size: 12px;
  color: rgba(247, 242, 232, 0.45);
  line-height: 1.7;
}
.footer-impressum strong { color: rgba(247, 242, 232, 0.7); font-weight: 500; }
.footer-bottom {
  border-top: 0.5px solid rgba(247, 242, 232, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(247, 242, 232, 0.4);
}

/* ═══ ALOLDAL-SPECIFIKUS HERO ═══ */
.subpage-hero {
  padding: 64px 0 40px;
}
.subpage-hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  margin-bottom: 24px;
}

/* ═══ INTRO BLOKK (aloldalakhoz) ═══ */
.intro {
  padding: 60px 0;
  border-top: 0.5px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
}
.intro-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-text blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  color: var(--text);
  line-height: 1.5;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--accent);
  margin: 24px 0;
}

/* ═══ EXAMPLES (példák kártyák) ═══ */
.examples {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .examples-grid { grid-template-columns: 1fr; } }

.example {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .25s, transform .2s;
}
.example:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.example-when {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.example-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}
.example-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══ STEPS (lépések) ═══ */
.steps { padding: 80px 0; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 48px;
  border-top: 0.5px solid var(--border-2);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border-2);
  align-items: start;
  transition: padding .2s;
}
.step:hover { padding-left: 12px; }
@media (max-width: 640px) {
  .step { grid-template-columns: 50px 1fr; }
  .step-arrow { display: none; }
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.step-content h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.step-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.step-arrow {
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  font-size: 20px;
  align-self: center;
}
.step:hover .step-arrow { opacity: 1; transform: translateX(4px); }

/* ═══ BENEFITS (előnyök ikonokkal) ═══ */
.benefits { padding: 80px 0; background: var(--bg-soft); border-top: 0.5px solid var(--border); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.benefit-icon {
  width: 36px; height: 36px;
  background: rgba(184, 92, 58, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.benefit-icon svg { width: 18px; height: 18px; }
.benefit h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.benefit p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══ COMPARE TÁBLÁZAT (napelemes redőny) ═══ */
.compare { padding: 80px 0; }
.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 0.5px solid var(--border);
}
.compare-table th {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  background: var(--bg-soft);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-feature { font-weight: 500; color: var(--text); }
.compare-table .neg { color: var(--text-3); }
.compare-table .pos { color: var(--accent); font-weight: 600; }
.compare-table .icon-no::before { content: '✕'; margin-right: 8px; color: var(--text-3); }
.compare-table .icon-yes::before { content: '✓'; margin-right: 8px; color: var(--accent); font-weight: 700; }
@media (max-width: 640px) {
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
}

/* ═══ COMBO (villanyszerelés + okosotthon) ═══ */
.combo { padding: 80px 0; background: var(--bg-soft); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.combo-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .combo-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
}
.combo-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.combo-card h3 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.combo-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}
.combo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.combo-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}
.combo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ═══ APRÓ JAVÍTÁSOK ═══ */
::selection { background: var(--accent); color: var(--bg); }
::-moz-selection { background: var(--accent); color: var(--bg); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-actions, .hero-photos, .subpage-hero h1, .subpage-hero .hero-sub, .subpage-hero .hero-actions {
  animation: fade-up 0.7s ease-out backwards;
}
.hero-sub, .subpage-hero .hero-sub { animation-delay: 0.1s; }
.hero-actions, .subpage-hero .hero-actions { animation-delay: 0.2s; }
.hero-photos { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
