/* =========================================
   HERO SZEKCIÓK - EGYSÉGESÍTETT (about-hero minta)
   ========================================= */

/* 1. ALAP HÁTTÉR ÉS MAGASSÁG - minden hero-ra */
.hero-section,
.services-hero,
.blog-hero,
.faq-hero,
.contact-hero,
.about-hero {
  position: relative;
  padding-top: 50px !important;  /* about-hero referencia alapján - finomhangolva */
  background: url('../images/hero-bg.webp') center center / cover no-repeat;
  background-attachment: fixed; /* about-hero beállítása */
  min-height: 500px; /* Egységes minimális magasság */
  display: flex;
  align-items: flex-start !important;
  overflow: hidden;
}

/* 2. OVERLAY (fehér gradient) - minden hero-hoz */
.hero-section::before,
.services-hero::before,
.blog-hero::before,
.faq-hero::before,
.contact-hero::before,
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* 3. GRID ELRENDEZÉS - szöveg balra, kép jobbra */
.hero-container,
.hero-grid,
.faq-hero-grid,
.blog-hero-content,
.contact-hero .hero-content,
.about-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* 4. SZÖVEGES RÉSZ - bal oldal */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: -120px; /* about-hero referencia alapján - finomhangolva */
}

/* Címek egységesítése */
.hero-content h1,
.blog-hero h1,
.faq-hero h1,
.contact-hero h1,
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-anthracite, #111827);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

/* Alcímek */
.hero-subtitle,
.blog-hero .subtitle,
.faq-hero .subtitle,
.contact-hero .hero-subtitle,
.about-hero .subtitle {
  font-size: 1.15rem;
  color: var(--color-text-dark, #4A5568);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

/* =========================================
   MICROCOPY & INTEGRITY BOX - JAVÍTOTT
   ========================================= */
/* 2. SZÖVEG ELRENDEZÉS JAVÍTÁSA */
.integrity-box .microcopy,
.microcopy-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 3. KAPCSOLAT HERO SPECIFIKUS: "Beszéljük meg" pozicionálása */
.contact-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Balra igazítás */
  text-align: left;
  max-width: 650px; /* Ne lógjon túl jobbra */
  margin-left: 0;   /* Bal oldalhoz igazítás */
}

.contact-hero .hero-subtitle {
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
  max-width: 100%;
}

/* A microcopy doboz ne legyen középen, hanem bal oldalon */
.contact-hero .microcopy-box {
  align-self: flex-start; /* Balra igazítás a flex konténerben */
  margin-top: 0;
}


.microcopy-box,
.integrity-box,
.contact-hero 
.microcopy-box {
  perspective: 1000px;
  background: var(--color-white, #FFFFFF);
  border-left: 4px solid var(--color-orange, #FF7F00);
  border-radius: var(--radius-sm, 4px);
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-anthracite, #111827);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.microcopy-box a,
.integrity-box a {
  color: var(--color-orange, #FF7F00);
  text-decoration: none;
  font-weight: 600;
}

.microcopy-box a:hover {
  text-decoration: underline;
}

/* 5. KÉPES RÉSZ - jobb oldal */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  min-height: 500px;
}

/* Képek egységes mérete (about-hero referencia) */
.hero-mockup,
.hero-image,
.faq-hero-image,
.blog-hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* 6. INDEX HERO SPECIFIKUS: Speech bubble - KISEBBÍTVE */
.speech-bubble {
  position: absolute;
  background: var(--color-white, #FFFFFF);
  padding: 0.8rem; /* Eredeti: 1.2rem → kisebb padding */
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 180px; /* Eredeti: 250px → kisebb max szélesség */
  z-index: 3;
  border: 1px solid var(--color-light-gray, #EDF2F7);
}

.speech-bubble p {
  font-size: 0.75rem; /* Eredeti: 0.85rem → kisebb szöveg */
  color: var(--color-text-dark);
  margin: 0;
  font-style: italic;
  line-height: 1.3; /* Kicsit sűrűbb sorköz */
}

.speech-bubble::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid transparent; /* Eredeti: 12px → kisebb nyíl */
}

.bubble-top { top: 10%; right: -60px; } /* Pozíció finomhangolás */
.bubble-top::after {
  bottom: -20px;
  left: 40px;
  border-top-color: var(--color-white);
  border-bottom: 0;
}

.bubble-bottom { bottom: 5%; left: -25px; } /* Pozíció finomhangolás */
.bubble-bottom::after {
  top: -20px;
  right: 40px;
  border-bottom-color: var(--color-white);
  border-top: 0;
}

/* Avatar kisebbítése */
.bubble-header img.avatar {
  width: 32px; /* Eredeti: 40px */
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-orange);
}

.bubble-header strong {
  font-size: 0.8rem; /* Eredeti: 0.9rem */
  color: var(--color-anthracite);
  display: block;
}

.bubble-header span {
  font-size: 0.65rem; /* Eredeti: 0.75rem */
  color: #718096;
}

@keyframes float-bubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); } /* Kisebb lebegés */
}
.animate-float { animation: float-bubble 4.5s ease-in-out infinite; }

.trust-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.trust-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.microcopy-box:hover .trust-icon {
  transform: rotateY(180deg);
}

@keyframes flipLock {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(180deg); }
}

@keyframes flipTimer {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(180deg); }
}

/* =========================================
   MOBIL NÉZET - Hero egységesítése
   ========================================= */
@media (max-width: 992px) {
  .hero-section,
  .services-hero,
  .blog-hero,
  .faq-hero,
  .contact-hero,
  .about-hero {
    padding-top: 100px !important; /* about-hero referencia alapján - finomhangolva */
    min-height: auto;
  }

  .hero-container,
  .hero-grid,
  .faq-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    align-items: center;
    order: 2;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .speech-bubble {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .services-hero,
  .blog-hero,
  .faq-hero,
  .contact-hero,
  .about-hero {
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .microcopy-box,
  .integrity-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-mockup,
  .hero-image,
  .faq-hero-image {
    height: 320px;
  }
}
/* =========================================
   HELLOSEO - EGYSÉGES STÍLUSLAP
   (Hero szekciók nélkül - külön kezelve)
   ========================================= */


/* =========================================
   1. VÁLTOZÓK (CSS Custom Properties)
   ========================================= */
:root {
  --color-anthracite: #2D3748;
  --color-anthracite-dark: #1A202C;
  --color-orange: #FF7F00;
  --color-orange-dark: #E67300;
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-light-gray: #EDF2F7;
  --color-text-black: #111827;
  --color-text-dark: #4A5568;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --container-width: 1200px;
  --header-height: 100px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}


/* =========================================
   2. ALAPOK & RESET
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  background-color: var(--color-off-white);
  line-height: 1.6;
  padding-top: var(--header-height);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}


/* =========================================
   3. GOMBOK (Buttons)
   ========================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-anthracite);
  border-color: var(--color-anthracite);
}

.btn-secondary:hover {
  background-color: var(--color-anthracite);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-anthracite-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-cta-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-anthracite);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  padding: 14px 28px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.btn-submit:disabled {
  background-color: #CBD5E0;
  cursor: not-allowed;
  transform: none;
}

.btn-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
  display: inline-block;
}

.btn-submit.loading .btn-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* =========================================
   4. FEJLÉC (Header & Navigation)
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
  display: flex;
}

.logo-text .hello { color: #111111; }
.logo-text .seo { color: var(--color-orange); }

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-dark);
  font-weight: 500;
  white-space: nowrap;
}

/* Desktop Navigáció */
.desktop-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-anthracite);
  font-weight: 500;
  position: relative;
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-orange);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-orange) !important;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Fejléc jobb oldal - Gombok */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-actions .btn,
.header-actions a.btn {
  background-color: var(--color-orange) !important;
  color: #fff !important;
  border: 2px solid var(--color-orange) !important;
  padding: 10px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  white-space: nowrap;
  line-height: 1.4;
}

.header-actions .btn:hover,
.header-actions a.btn:hover {
  background-color: var(--color-orange-dark) !important;
  border-color: var(--color-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.25);
}
/* Hero CTA: desktopen a fejlécben marad, mobilon a hero gombsorban jelenik meg */
.btn-hero-survey {
  display: none;
}


/* Mobil menü gomb */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-anthracite);
  transition: var(--transition);
}

.hamburger-icon {
  width: 30px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-icon {
  transform: rotate(90deg);
}

/* Mobil navigáció */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-list {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-list li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-anthracite);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.mobile-nav-list li a.active {
  color: var(--color-orange) !important;
}

/* Hamburger animáció */
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* =========================================
   5. LÁBLÉC (Footer)
   ========================================= */
.site-footer {
  background-color: var(--color-anthracite-dark);
  color: #A0AEC0;
  padding: 4rem 0 2rem;
  margin-top: 0rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-orange);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-intro {
  margin-top: 20px;
  font-size: 0.95rem;
}

/* Footer Logo */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
}

.footer-logo-text .hello { color: #FFFFFF; }
.footer-logo-text .seo { color: var(--color-orange); }

/* Footer Kontakt */
address { font-style: normal; }

.contact-list {
  font-style: normal;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-orange);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-anthracite);
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

.icon-box:hover {
  transform: rotateY(180deg);
  background-color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.4;
  opacity: 0.85;
}

.tech-badge {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  white-space: nowrap;
}


/* =========================================
   6. KÖZÖS KOMPONENSEK & UTILITIES
   ========================================= */
/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-anthracite);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* Szöveg utilities */
.text-orange { color: var(--color-orange); }
.text-muted { color: #718096; font-style: italic; font-size: 0.9rem; }

/* Ikon utilities */
.icon-orange-black { width: 28px; height: 28px; }
.icon-check { width: 18px; height: 18px; color: #FF7F00; flex-shrink: 0; }
.icon-minus { width: 18px; height: 18px; color: #CBD5E0; flex-shrink: 0; margin-top: 2px; }
.icon-btn { width: 18px; height: 18px; flex-shrink: 0; }
.icon-orange { width: 28px; height: 28px; color: var(--color-orange); }

/* 3D Flip Animációk - Közös */

.integrity-icon,
.trust-icon
.card-icon-wrapper,
.usp-icon,
.step-icon-wrapper,
.info-icon,
.team-avatar,
.contact-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  transform-box: fill-box;
  transform-origin: center center;
  transition: transform 0.6s ease;
}

.card-icon-wrapper svg,
.usp-icon svg,
.step-icon-wrapper svg,
.info-icon svg,
.contact-card-icon svg,
.card-icon-wrapper .icon-orange {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  transform-origin: center center;
}

.bento-card:hover .card-icon-wrapper svg,
.bento-card:hover .card-icon-wrapper .icon-orange,
.usp-card:hover .usp-icon svg,
.timeline-card:hover .step-icon-wrapper svg,
.pricing-card:hover .card-icon-wrapper svg,
.pricing-card:hover .card-icon-wrapper .icon-orange,
.process-card:hover .card-icon-wrapper svg,
.process-card:hover .card-icon-wrapper .icon-orange,
.maintenance-card:hover .card-icon-wrapper svg,
.maintenance-card:hover .card-icon-wrapper .icon-orange,
.maintenance-info-box:hover .info-icon svg,
.contact-card:hover .contact-card-icon svg,
.card:hover .icon-wrapper svg 
.microcopy-box:hover .trust-icon,
.integrity-box:hover svg.integrity-icon {
  transform: rotateY(180deg) !important;
  -webkit-transform: rotateY(180deg) !important;
}

/* Package confirmation badge */
.package-confirmation {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.package-confirmation::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-orange);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-off-white); }
::-webkit-scrollbar-thumb { background: var(--color-light-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-anthracite); }

/* HTML smooth scroll */
html { scroll-behavior: smooth; }


/* =========================================
   7. TARTALMI SZEKCIÓK - ÁLTALÁNOS
   ========================================= */
.target-section,
.process-section,
.workflow-section,
.pricing-section,
.usp-section,
.final-cta-section,
.maintenance-section,
.faq-pricing-section {
  padding: 6rem 0;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-light-gray);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  border-radius: var(--radius-md);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--color-orange);
}

.bento-card:hover::before { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; }

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background-color: rgba(255, 127, 0, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
}


/* =========================================
   8. FOLYAMAT SZEKCIÓ (Process/Timeline)
   ========================================= */
/* Process Flow */
.process-section { background-color: var(--color-white); }

.process-flow {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  position: relative;
}

.process-card {
  flex: 1;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-primary {
  background-color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-secondary {
  background-color: var(--color-light-gray);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.process-card:hover {
  border-color: var(--color-anthracite);
  transform: translateY(-3px);
}

.step-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-list {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.feature-list .icon-check {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: auto;
}

.process-link:hover {
  color: var(--color-orange-dark);
  gap: 0.75rem;
}

.process-link .icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.process-link:hover .icon-arrow {
  transform: translateX(3px);
}

.process-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.process-arrow svg {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.timeline-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-light-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.timeline-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(255, 127, 0, 0.3);
  z-index: 2;
}

.step-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 127, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 1rem 0;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-details {
  background-color: var(--color-light-gray);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: auto;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.detail-list li:last-child { margin-bottom: 0; }

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
}


/* =========================================
   9. ÁRAK (Pricing)
   ========================================= */
.pricing-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.pricing-card .btn, 
.pricing-card a.btn,
.pricing-card .btn-action {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--color-orange);
  box-shadow: 0 8px 20px -5px rgba(255, 127, 0, 0.15);
  transform: scale(1.02);
  z-index: 2;
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-anthracite);
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.price-block .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-black);
  line-height: 1.1;
}

.price-block .period {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-top: 0.25rem;
}

.pricing-maintenance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.pricing-maintenance-note a {
  color: var(--color-orange);
  font-weight: 600;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 28px;
  min-width: 260px;
  font-size: 1rem;
  transition: var(--transition);
}


/* =========================================
   10. USP / ELŐNYÖK
   ========================================= */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.usp-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.usp-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 127, 0, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-orange);
}

.usp-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 0.5rem;
}

.usp-content p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
}


/* =========================================
   11. ZÁRÓ CTA (Final Call-to-Action)
   ========================================= */
.final-cta-section {
  background-color: var(--color-anthracite);
  text-align: center;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-section h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-text {
  color: #CBD5E0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-microcopy {
  color: #718096;
  font-size: 0.85rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}


/* =========================================
   12. BLOG SPECIFIKUS
   ========================================= */
/* Blog Search & Filter */
.blog-search-section {
  padding: 3rem 0;
  background-color: var(--color-off-white);
}

.search-container {
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--color-white);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.15);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--color-orange);
  pointer-events: none;
}

.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  background: var(--color-light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-anthracite);
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover { background: #CBD5E0; }
.category-btn.active { background: var(--color-orange); color: var(--color-white); }

.sort-buttons { display: flex; gap: 0.5rem; }

.sort-btn {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.sort-btn:hover { border-color: var(--color-orange); color: var(--color-orange); }
.sort-btn.active { background: var(--color-orange); border-color: var(--color-orange); color: var(--color-white); }

/* Featured Post */
.featured-post {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.featured-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.featured-content { padding: 3rem; }

.featured-category {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 2rem;
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.read-more-link:hover { gap: 0.75rem; }

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

/* Latest Posts Grid */
.latest-posts {
  padding: 4rem 0;
  background-color: var(--color-off-white);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.post-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.08);
}

.post-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #718096;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
}

.post-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.post-cta:hover { gap: 0.6rem; }

/* Newsletter */
.newsletter-section {
  padding: 5rem 0;
  background-color: var(--color-anthracite);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-text-black);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.3);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}

.newsletter-microcopy {
  color: #A0AEC0;
  font-size: 0.85rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
}

.pagination-btn {
  padding: 10px 16px;
  background: var(--color-white);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  color: var(--color-anthracite);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.pagination-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/* =========================================
   13. FAQ / GYIK SPECIFIKUS
   ========================================= */
.faq-pricing-section {
  padding: 3rem 0;
  background-color: var(--color-off-white);
}

.faq-pricing-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-pricing-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-anthracite);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item.active {
  background: var(--color-light-gray);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-black);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 127, 0, 0.03);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--color-orange);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  padding: 4rem 0;
  background-color: var(--color-anthracite);
  text-align: center;
}

.faq-cta h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #E2E8F0;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================
   14. KAPCSOLAT (Contact) SPECIFIKUS
   ========================================= */
/* Contact Cards Grid */
.contact-cards {
  padding: 4rem 0;
  background-color: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.contact-card:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 127, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  perspective: 1000px;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-orange);
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin: 0;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--color-orange-dark);
}

.contact-card .hours {
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.contact-card .response-time {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 600;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
  background-color: var(--color-off-white);
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 650px;
  margin: 0 auto;
}

.form-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-anthracite);
  margin-bottom: 0.5rem;
}

.form-card .intro {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-anthracite);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group label .required {
  color: #E53E3E;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #CBD5E0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.15);
}

.form-control::placeholder {
  color: #718096;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-orange);
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--color-orange);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-submit {
  margin-top: 2rem;
}

.form-error {
  color: #E53E3E;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: rgba(72, 187, 120, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  color: #48BB78;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.form-success .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
}

.form-success .btn-back:hover {
  color: var(--color-orange-dark);
}

/* Contact FAQ */
.contact-faq {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.contact-faq .faq-item {
  background: var(--color-off-white);
  border: 2px solid var(--color-anthracite);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-faq .faq-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-faq .faq-item h4::before {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-orange);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
}

.contact-faq .faq-item p {
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Map */
.contact-map {
  padding: 4rem 0;
  background-color: var(--color-off-white);
  text-align: center;
}

.map-container {
  max-width: 700px;
  margin: 0 auto;
}

.map-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin-bottom: 1rem;
}

.map-container p {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.map-frame {
  background: var(--color-light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.contact-cta {
  padding: 4rem 0;
  background-color: var(--color-anthracite);
  text-align: center;
}

.contact-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================
   15. RÓLUNK / ABOUT SPECIFIKUS
   ========================================= */
/* Section Base */
section { padding: 5rem 0; }

/* Card & Icon Base */
.card-grid { display: grid; gap: 2rem; }

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(255, 127, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  perspective: 1000px;
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.card p {
  color: #4A5568;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #4A5568;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  color: #FF7F00;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Value Proposition Grid */
.value-grid { grid-template-columns: repeat(3, 1fr); }

/* Team Grid */
.team-grid { grid-template-columns: repeat(3, 1fr); }

.team-card { text-align: center; }

.team-avatar {
  width: 120px;
  height: 120px;
  background: #EDF2F7;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #A0AEC0;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-avatar:hover img {
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.team-position {
  color: #FF7F00;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.team-motto {
  background: #F8F9FA;
  border-left: 4px solid #FF7F00;
  padding: 1rem;
  text-align: left;
  font-style: italic;
  color: #4A5568;
  margin-top: 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* History Section */
.history-section {
  background: #F8F9FA;
  text-align: center;
}

.history-content {
  max-width: 800px;
  margin: 0 auto;
}

.history-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #FF7F00;
  font-weight: 700;
}

.mission-box {
  background: #FFFFFF;
  border-left: 4px solid #FF7F00;
  padding: 1.5rem 2rem;
  text-align: left;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Values Grid */
.values-grid { grid-template-columns: repeat(3, 1fr); }

/* Human Expert Section */
.human-section { background: #2D3748; }

.human-section .section-header h2,
.human-section .section-header p {
  color: #FFFFFF;
}

.human-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.human-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
}

.human-card h3 {
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.human-card h3 .num {
  width: 32px;
  height: 32px;
  background: #FF7F00;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.human-closing {
  grid-column: 1 / -1;
  background: #FF7F00;
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Stats Section */
.stats-section {
  background: #FFFFFF;
  padding: 4rem 0;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FF7F00;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: #4A5568;
}

/* Partners/Testimonials */
.partners-section {
  background: #F8F9FA;
  text-align: center;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
}

.quote-icon {
  color: #FF7F00;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #111827;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #111827;
}

.testimonial-role {
  color: #4A5568;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: #2D3748;
  text-align: center;
  color: #FFFFFF;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #FF7F00;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #E67300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,127,0,0.3);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-outline:hover {
  background: #FFFFFF;
  color: #2D3748;
  transform: translateY(-2px);
}

.cta-microcopy {
  color: #A0AEC0;
  font-size: 0.9rem;
}


/* =========================================
   16. SZOLGÁLTATÁSOK / KARBANTARTÁS
   ========================================= */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.maintenance-card {
  background: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.maintenance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.maintenance-card.featured {
  border-color: var(--color-orange);
  box-shadow: 0 8px 20px rgba(255, 127, 0, 0.15);
}

.maintenance-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 127, 0, 0.25);
}

.maintenance-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-anthracite);
  margin: 1.5rem 0 1rem;
}

.maintenance-card .price-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-light-gray);
}

.maintenance-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-black);
}

.maintenance-card .period {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-left: 0.25rem;
}

.maintenance-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.maintenance-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

/* Maintenance Info Box */
.maintenance-info-box {
  background: var(--color-light-gray);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 127, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  perspective: 1000px;
}

.info-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.info-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 0.75rem;
}

.info-content p {
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0;
}


/* =========================================
   17. RESPONZÍV SZABÁLYOK (Media Queries)
   ========================================= */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--color-anthracite);
    z-index: 0;
    opacity: 0.3;
  }
}

@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .process-flow { flex-direction: column; }
  .process-arrow {
    display: flex;
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
  .step-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 2px;
    background-color: var(--color-anthracite);
    opacity: 0.3;
    z-index: 0;
  }
  .timeline-card {
    padding-left: 4.5rem;
    padding-top: 1.5rem;
  }
  .step-number {
    left: 20px;
    top: 1.5rem;
  }
  .usp-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { height: 300px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .maintenance-grid { grid-template-columns: repeat(2, 1fr); }
  .maintenance-card.featured {
    grid-column: 1 / -1;
    order: -1;
  }
  .human-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { height: 120px; }
  .logo-icon { width: 50px; height: 50px; }
  .logo-text { font-size: 1.25rem; }
  .logo-subtitle { font-size: 0.7rem; }
  body { padding-top: 100px; }
  .header-actions {
    display: none;
  }

  .btn-hero-survey {
    display: inline-block;
    background-color: var(--color-orange);
    color: var(--color-white) !important;
    border-color: var(--color-orange);
  }

  .btn-hero-survey:hover {
    background-color: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas .btn {
    min-width: 0;
  }

  
  .target-section,
  .process-section,
  .workflow-section,
  .pricing-section,
  .usp-section,
  .final-cta-section,
  .maintenance-section,
  .faq-pricing-section {
    padding: 4rem 0;
  }
  
  .section-header { margin-bottom: 2.5rem; }
  
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .card-icon-wrapper {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  .icon-orange { width: 24px; height: 24px; }
  .bento-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
  .bento-card p {
    font-size: 0.9rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    order: -1;
    transform: none;
  }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pricing-maintenance-note {
    flex-direction: column;
    text-align: center;
  }
  .pricing-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-action {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg, .btn-outline-white {
    width: 100%;
    max-width: 320px;
  }
  
  .services-hero { padding: 3rem 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .integrity-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .category-btn { flex-shrink: 0; }
  .posts-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .contact-card-icon { margin-right: 1rem; }
  .form-card { padding: 2rem 1.5rem; }
  
  .value-grid,
  .team-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .maintenance-grid { grid-template-columns: 1fr; }
  .maintenance-card.featured { order: -1; }
  .maintenance-info-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .trust-badges { flex-direction: column; }
  .badge { width: 100%; justify-content: center; }
  .process-card h3 { font-size: 1.25rem; }
  .process-card p { font-size: 0.95rem; }
  .feature-list li { font-size: 0.9rem; }
  
  .timeline-card { padding: 1.5rem; padding-left: 4rem; }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    left: 18px;
  }
  .step-content h3 { font-size: 1.15rem; }
  .step-icon-wrapper { width: 48px; height: 48px; }
  
  .pricing-card { padding: 2rem 1.5rem; }
  .price-block .amount { font-size: 1.8rem; }
  
  .hero-content h1 { font-size: 1.8rem; }
}
/* Trust Badges - FEHÉR DOBOZBAN */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem; /* Ha kell, állíthatod */
}

.badge {
  background: rgba(255, 255, 255, 0.95) !important; /* Fehér háttér, majdnem teljesen opak */
  border: 1px solid var(--color-light-gray, #EDF2F7) !important;
  padding: 0.6rem 1rem !important;
  border-radius: var(--radius-sm, 4px);
  font-size: 0.9rem;
  color: var(--color-anthracite, #2D3748);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Finom árnyék a jobb láthatóságért */
}

.badge .check {
  color: var(--color-orange, #FF7F00);
  font-weight: 700;
}
/* =========================================
   MINDEN ALOLDAL HERO SZEKCIÓJÁNAK EGYSÉGESÍTÉSE
   (Kivéve index.html - főoldal)
   ========================================= */

/* 1. H1 címek egységesítése minden aloldalon */
.services-hero h1,
.about-hero h1,
.blog-hero h1,
.faq-hero h1,
.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: var(--color-anthracite) !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

/* 2. Alcímek (subtitle) egységesítése */
.services-hero .subtitle,
.services-hero .hero-subtitle,
.about-hero .subtitle,
.about-hero .hero-subtitle,
.blog-hero .subtitle,
.blog-hero .hero-subtitle,
.faq-hero .subtitle,
.faq-hero .hero-subtitle,
.contact-hero .subtitle,
.contact-hero .hero-subtitle {
    font-size: 1.15rem !important;
    color: var(--color-text-dark) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 500 !important;
}

/* 3. Grid elrendezés egységesítése */
.services-hero .faq-hero-grid,
.services-hero .hero-grid,
.about-hero .faq-hero-grid,
.about-hero .hero-grid,
.blog-hero .faq-hero-grid,
.blog-hero .hero-grid,
.faq-hero .faq-hero-grid,
.faq-hero .hero-grid,
.contact-hero .faq-hero-grid,
.contact-hero .hero-grid {
    align-items: center !important;
    min-height: 400px !important;
}

/* 4. Microcopy doboz egységesítése */
.services-hero .microcopy-box,
.about-hero .microcopy-box,
.blog-hero .microcopy-box,
.faq-hero .microcopy-box,
.contact-hero .microcopy-box {
    margin-top: 1rem !important;
}

/* 5. Hero padding egységesítése (hogy ugyanott kezdődjön a szöveg) */
.services-hero,
.about-hero,
.blog-hero,
.faq-hero,
.contact-hero {
    padding-top: 50px !important; /* Ezt állítsd be ízlés szerint */
    padding-bottom: 4rem !important;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .services-hero,
    .about-hero,
    .blog-hero,
    .faq-hero,
    .contact-hero {
        padding-top: 100px !important;
    }
    
    .services-hero h1,
    .about-hero h1,
    .blog-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem !important;
    }
}
/* =========================================
   HERO MICROBOX & KÉP EGYSÉGESÍTÉS
   ========================================= */

/* 1. Microbox doboz stílus */
.microcopy-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-anthracite);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
}

/* 2. SVG ikonok kényszerített mérete & viselkedése */
.microcopy-box svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  display: block;
}

/* 3. Kép stabilizálása (CLS megelőzés) */
.faq-hero-image {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* =========================================
   RÓLUNK OLDAL - IKON FORGATÁS JAVÍTÁSA
   ========================================= */

/* 1. A SZÜLŐ KONTÉNER (A kör alakú háttér) */
.icon-wrapper {
    perspective: 1000px; /* ← EZ A KULCS! Nélküle nincs 3D tér */
    width: 64px;         /* Nagyobb méret a kártyákhoz */
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 127, 0, 0.1); /* Narancs háttér */
    display: flex;       /* Hogy az ikon középen legyen */
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* 2. MAGA AZ SVG IKON */
.icon-wrapper svg {
    width: 32px;         /* Ikon mérete */
    height: 32px;
    display: block;      /* ← Fontos! Az inline SVG-knél gyakran elszáll a transform */
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform 0.6s ease;
}

/* 3. A FORGATÁS (HOVER) */
.card:hover .icon-wrapper svg {
    transform: rotateY(180deg);
}
.faq-category h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-anthracite);
  border-left: 4px solid var(--color-orange);
  padding-left: 1rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Első kategória ne legyen túl lent */
.faq-category:first-child h3 {
  margin-top: 0;
}
/* =========================================
   KÖZBENSŐ CTA SZEKCIÓ (NARANCS HÁTTÉR)
   ========================================= */

.post-mid-cta {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(255, 127, 0, 0.2);
}

.mid-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.mid-cta-title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mid-cta-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Gombok a narancs háttéren */
.mid-cta-buttons .btn {
  min-width: 220px;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition);
}

/* Fehér keretes gomb (másodlagos) */
.mid-cta-buttons .btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.mid-cta-buttons .btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-orange-dark);
  transform: translateY(-2px);
}

/* Narancs gomb (elsődleges) */
.mid-cta-buttons .btn-primary {
  background-color: var(--color-white);
  color: var(--color-orange-dark);
  border: 2px solid var(--color-white);
}

.mid-cta-buttons .btn-primary:hover {
  background-color: var(--color-anthracite);
  color: var(--color-white);
  border-color: var(--color-anthracite);
  transform: translateY(-2px);
}

/* Mobil nézet */
@media (max-width: 768px) {
  .post-mid-cta {
    margin: 2rem 0;
    padding: 2.5rem 0;
    border-radius: var(--radius-md);
  }
  
  .mid-cta-title {
    font-size: 1.6rem;
  }
  
  .mid-cta-description {
    font-size: 1rem;
  }
  
  .mid-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .mid-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
/* Opcionális: fade-in animáció */
.post-mid-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.post-mid-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =========================================
   KAPCSOLAT OLDAL – 2 OSZLOPOS ŰRLAP + PROMÓCIÓ
   ========================================= */

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

/* Bal oszlop: Űrlap */
.form-column {
  /* inherits default styling */
}

/* Jobb oszlop: Narancs promóciós kártya */
.promo-column {
  position: sticky;
  top: 120px; /* Header magasság + kis térköz */
  align-self: start;
}

.promo-card {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 127, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* Dekoratív elem a sarokban */
.promo-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.promo-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.promo-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 240px;
  padding: 14px 28px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.promo-btn:hover {
  background-color: var(--color-white);
  color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-microcopy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Mobil nézet: egymás alá kerülnek az oszlopok */
@media (max-width: 992px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .promo-column {
    position: static;
    order: -1; /* Promóció kerüljön felülre mobilon */
  }
  
  .promo-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .promo-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================
   MOBIL JAVÍTÁSOK - 2026-06-09
   Túlcsordulás és hamburger-menü javítása
   ========================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.site-header,
.mobile-nav-overlay {
  max-width: 100vw;
}

@media (max-width: 767px) {
  :root {
    --header-height: 88px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    padding: 0 14px;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    gap: 0.55rem;
  }

  .logo-icon {
    width: 46px;
    height: 46px;
  }

  .logo-text-wrapper {
    min-width: 0;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-subtitle {
    font-size: 0.64rem;
    white-space: normal;
    line-height: 1.15;
  }

  .header-actions {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
    flex: 0 0 30px;
  }

  .mobile-nav-overlay {
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    width: 100vw;
    right: 0;
    transform: translateX(100%);
  }

  .mobile-nav-overlay.active {
    transform: translateX(0);
  }

  .hero-section,
  .services-hero,
  .blog-hero,
  .faq-hero,
  .contact-hero,
  .about-hero {
    padding: 2rem 0 3rem !important;
    background-attachment: scroll;
  }

  .hero-container,
  .hero-grid,
  .faq-hero-grid,
  .blog-hero-content,
  .contact-hero .hero-content,
  .about-hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .hero-content {
    order: 2;
    margin-right: 0 !important;
    max-width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    order: 1;
    min-height: 0;
    margin-bottom: 1rem;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-mockup,
  .hero-image,
  .faq-hero-image,
  .blog-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto !important;
  }

  .hero-ctas,
  .trust-badges,
  .pricing-actions,
  .cta-buttons {
    width: 100%;
    max-width: 100%;
  }

  .bento-grid,
  .pricing-grid,
  .process-flow,
  .usp-grid,
  .maintenance-grid,
  .footer-grid,
  .posts-grid,
  .contact-grid,
  .value-grid,
  .team-grid,
  .values-grid,
  .stats-grid {
    max-width: 100%;
    min-width: 0;
  }

  .bento-card,
  .pricing-card,
  .process-card,
  .timeline-card,
  .usp-card,
  .maintenance-card {
    min-width: 0;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .desktop-nav,
  .header-actions {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-ctas .btn {
    width: 100%;
  }
}

/* =========================================
   HERO MOBIL CTA - csak mobilon látszódjon
   ========================================= */
.btn-hero-survey {
  display: none !important;
}

@media (max-width: 767px) {
  .btn-hero-survey {
    display: inline-block !important;
  }
}

@media (max-width: 480px) {
  .btn-hero-survey {
    width: 100% !important;
  }
}
