* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 24px 0;
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.desktop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Dropdown navigáció ── */
.nav-links .has-dropdown {
  position: relative;
}

/* Invisible bridge fills the gap between trigger and dropdown */
.nav-links .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 20px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(12, 12, 20, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(102, 126, 234, 0.1);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease !important;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(102, 126, 234, 0.12);
  color: #fff !important;
}

.dd-icon {
  width: 15px;
  height: 15px;
  opacity: 0.6;
  flex-shrink: 0;
}

.dropdown-menu .dd-highlight a {
  color: #a78bfa !important;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 4px;
  padding-top: 14px;
}

.dropdown-menu .dd-highlight a:hover {
  background: rgba(167, 139, 250, 0.12);
  color: #c4b5fd !important;
}

/* ── Nav CTA gomb – fénylő effekt ── */
@keyframes navCtaGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(102, 126, 234, 0.5), 0 0 30px rgba(118, 75, 162, 0.3); }
  50%       { box-shadow: 0 0 22px rgba(102, 126, 234, 0.8), 0 0 50px rgba(118, 75, 162, 0.5); }
}

@keyframes navCtaIconSpin {
  0%   { transform: rotate(0deg) scale(1); opacity: 0.8; }
  50%  { transform: rotate(20deg) scale(1.2); opacity: 1; }
  100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -45%) scale(1.1);
    opacity: 0.8;
  }
}

.nav-cta-glow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  animation: navCtaGlow 2.5s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-cta-glow:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.15);
  color: white !important;
}

.nav-cta-icon {
  width: 15px;
  height: 15px;
  animation: navCtaIconSpin 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-cta-glow .nav-cta-icon:last-child {
  animation-delay: 1.25s;
}

/* Enhanced hamburger animation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #667eea;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #667eea;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 40px 0;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0 40px;
}

.mobile-nav-links li {
  margin-bottom: 8px;
}

.mobile-nav-links a {
  display: block;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
  left: 100%;
}

.mobile-nav-links a:hover {
  color: #667eea;
  transform: translateX(8px);
}

.mobile-cta {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  border-radius: 25px !important;
  margin: 20px 0 !important;
  text-align: center !important;
  border-bottom: none !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
}

.mobile-cta:hover {
  transform: translateX(0) translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4) !important;
}

/* Mobil Csomagajánlataink CTA glow */
.mobile-cta-glow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  animation: navCtaGlow 2.5s ease-in-out infinite !important;
}

.mobile-cta-icon {
  width: 16px;
  height: 16px;
  animation: navCtaIconSpin 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.mobile-cta-glow .mobile-cta-icon:last-child {
  animation-delay: 1.25s;
}

/* Mobil dropdown (Szolgáltatások almenü) */
.mobile-dropdown-trigger {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.mobile-nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.mobile-has-dropdown.open .mobile-nav-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-has-dropdown.open .mobile-dropdown-menu {
  max-height: 400px;
}

.mobile-dropdown-menu li a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.mobile-dropdown-menu .dd-icon {
  width: 16px;
  height: 16px;
  opacity: 0.55;
  flex-shrink: 0;
}

.mobile-dropdown-menu li a:hover {
  color: #a78bfa !important;
  transform: translateX(6px) !important;
}

.mobile-dropdown-menu li:last-child a {
  color: #a78bfa !important;
  font-weight: 600 !important;
}

/* Mobile menu close button */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.mobile-menu-close::before {
  transform: rotate(45deg);
}

.mobile-menu-close::after {
  transform: rotate(-45deg);
}

/* Staggered menu item animations */
.mobile-menu.active .mobile-nav-links li {
  animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(6) {
  animation-delay: 0.35s;
}
.mobile-menu.active .mobile-nav-links li:nth-child(7) {
  animation-delay: 0.4s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
/* ══════════════════════════════ HERO SLIDER ══════════════════════ */
.hero {
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Slides wrapper — grid: minden slide ugyanolyan magas */
#heroSliderContainer {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Háttérkép overlay */
.hero-slide.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.6) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-slide.has-bg .container {
  position: relative;
  z-index: 1;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.35);
  color: #a5b4fc;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 13px;
  height: 13px;
}

/* Slider navigation — abszolút, a .hero-slider aljára */
.hero-slider-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 20;
  pointer-events: auto;
}

.hero-slider-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #667eea;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
}

.hero-slider-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
  color: white;
}

.hero-slider-btn svg {
  width: 18px;
  height: 18px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}


@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero h1 .highlight,
.why-choose-us .highlight,
.services .highlight,
.seo-spine .highlight {
  background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::before,
.why-choose-us .highlight::before,
.services .highlight::before,
.seo-spine .highlight::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #f8c8e8 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -200% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s ease-in-out infinite;
  animation-delay: 2s;
  z-index: 1;
}

@keyframes shimmer-text {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Hero section button fix - Make it consistent with other buttons */
.hero-buttons .cta-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 12px;
}

.hero-buttons .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.hero-buttons .cta-button::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-buttons .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}

.hero-buttons .cta-button:hover::before {
  left: 0;
}

.hero-buttons .cta-button:hover::after {
  transform: translateX(4px);
}

.secondary-button {
  background: transparent;
  color: white;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  border-color: #667eea;
  color: #667eea;
}

/* ══════════════════════════════ CLIENTS ══════════════════════════ */
.clients {
  padding: 64px 0;
  text-align: center;
  background: rgba(10, 10, 18, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(102, 126, 234, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(118, 75, 162, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.clients-header {
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.clients-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #667eea;
  margin-bottom: 10px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

.clients h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Fade mask edges */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.marquee-container:hover .client-logos {
  animation-play-state: paused;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  justify-content: center;
  letter-spacing: 0.01em;
}

.client-logo:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.06);
}

.client-logo img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.5);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  box-shadow: 0 0 12px rgba(102, 126, 234, 0.4);
}

/* Services Section */
.services {
  padding: 120px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Services eyebrow */
.services-eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.services-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-eyebrow .eyebrow-icon {
  width: 14px;
  height: 14px;
  stroke: #a5b4fc;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* Services bottom CTA */
.services-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.35);
}
.services-cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.services-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(102, 126, 234, 0.5);
}

/* Service tag icon */
.service-tag-icon {
  width: 16px;
  height: 16px;
  stroke: #fff;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* top accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(102, 126, 234, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(102, 126, 234, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Icon box */
.service-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: #a5b4fc;
  transition: stroke 0.3s ease;
}
.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.35), rgba(118, 75, 162, 0.35));
  border-color: rgba(102, 126, 234, 0.55);
}
.service-card:hover .service-icon-box svg {
  stroke: #fff;
}

/* Category label */
.service-category {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #a5b4fc;
  margin-bottom: 10px;
}

/* Card title */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
  color: #fff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Arrow icon in button */
.btn-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}
.service-button:hover .btn-arrow {
  transform: translateX(4px);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.feature:hover {
  color: #667eea;
  transform: translateX(4px);
}

.feature-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: rotate-icon 3s linear infinite;
}

@keyframes rotate-icon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 12px;
}

.service-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.service-button::after {
  content: "";
}

.service-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}

.service-button:hover::before {
  left: 0;
}

.service-button:hover::after {
  content: "";
}

/* Case Study Section - Modernizált */
/* ── Legutóbbi munkáink szekció ───────────────────────────── */
.case-study {
  padding: 120px 0;
  position: relative;
  overflow: visible;
  width: 100%;
}

.work-eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.work-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.work-eyebrow .eyebrow-icon {
  width: 14px;
  height: 14px;
  stroke: #a5b4fc;
}

/* List of work items */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Each work item: 2-col grid */
.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.work-item.reverse {
  direction: rtl;
}
.work-item.reverse > * {
  direction: ltr;
}

/* Presenter card */
.work-presenter-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.work-presenter-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.12), 0 8px 32px rgba(0,0,0,0.2);
}

.work-presenter-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.work-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(102, 126, 234, 0.5);
  flex-shrink: 0;
}

.work-presenter-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.work-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.work-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.work-quote {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  border-left: 3px solid rgba(102, 126, 234, 0.5);
  padding-left: 16px;
  margin: 0;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-tags span {
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a5b4fc;
}

.work-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a5b4fc;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  align-self: flex-start;
}
.work-more-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}
.work-more-link:hover {
  color: #fff;
  gap: 10px;
}

/* Image card */
.work-image-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 480px;
  align-self: center;
  justify-self: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.work-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.4);
}
.work-overlay-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 24px;
}
.work-image-card:hover .work-overlay-link {
  opacity: 1;
}
.work-overlay-link .btn-arrow {
  width: 16px;
  height: 16px;
  stroke: #fff;
  transition: transform 0.2s ease;
}
.work-overlay-link:hover .btn-arrow {
  transform: translateX(4px);
}
.work-glow-purple {
  box-shadow: 0 0 30px 8px rgba(167, 139, 250, 0.4), 0 16px 48px rgba(0,0,0,0.3);
}
.work-glow-purple:hover {
  box-shadow: 0 0 40px 12px rgba(167, 139, 250, 0.55), 0 28px 64px rgba(0,0,0,0.4);
}
.work-glow-green {
  box-shadow: 0 0 30px 8px rgba(234, 179, 8, 0.5), 0 16px 48px rgba(0,0,0,0.3);
}
.work-glow-green:hover {
  box-shadow: 0 0 40px 12px rgba(234, 179, 8, 0.65), 0 28px 64px rgba(0,0,0,0.4);
}
.work-glow-orange {
  box-shadow: 0 0 30px 8px rgba(251, 146, 60, 0.5), 0 16px 48px rgba(0,0,0,0.3);
}
.work-glow-orange:hover {
  box-shadow: 0 0 40px 12px rgba(251, 146, 60, 0.65), 0 28px 64px rgba(0,0,0,0.4);
}
.work-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-project-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .case-study {
    padding: 80px 0;
  }
  .work-item,
  .work-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .work-item.reverse > * {
    direction: ltr;
  }
  .work-list {
    gap: 64px;
  }
  .work-presenter-card {
    padding: 28px;
  }
  .work-image-card {
    min-height: 220px;
  }
}

/* Why Choose Us Section - Modern de kompakt */
.why-choose-us {
  padding: 80px 0;
  background: rgba(10, 10, 20, 0.4);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 15% 30%,
      rgba(102, 126, 234, 0.06) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(118, 75, 162, 0.06) 0%,
      transparent 35%
    );
  pointer-events: none;
}

.why-section {
  margin-bottom: 60px;
  position: relative;
}

.why-section:first-of-type {
  margin-top: 56px;
}

.why-section:last-child {
  margin-bottom: 0;
}

.why-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.why-section.reverse .why-content {
  flex-direction: row-reverse;
}

.why-text {
  flex: 1;
  padding: 16px 0;
}

.why-text h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.why-text h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 1px;
}

.why-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.why-feature:hover {
  background: rgba(102, 126, 234, 0.05);
  transform: translateX(3px);
  color: rgba(255, 255, 255, 0.95);
}

.why-feature-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
}

.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.why-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.why-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.7) 0%,
    rgba(126, 34, 206, 0.6) 20%,
    rgba(109, 40, 217, 0.5) 40%,
    rgba(139, 92, 246, 0.4) 60%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: float-glow 6s ease-in-out infinite;
  z-index: 0;
}

.image-placeholder {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.image-placeholder:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for Why Choose Us Section */
@media (max-width: 968px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-section {
    margin-bottom: 40px;
  }

  .why-content {
    flex-direction: column !important;
    gap: 30px;
    text-align: left;
    padding: 0 12px;
  }

  .why-section.reverse .why-content {
    flex-direction: column !important;
  }

  .why-content .why-text,
  .why-section.reverse .why-content .why-text {
    order: 1;
  }

  .why-content .why-image,
  .why-section.reverse .why-content .why-image {
    order: 2;
  }

  .why-text {
    padding: 8px 0;
  }

  .why-text h3 {
    font-size: 1.8rem;
  }

  .why-text p {
    font-size: 1rem;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .why-feature {
    justify-content: flex-start;
    padding: 4px 6px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .why-feature span {
    line-height: 1.3;
  }
}

/* SEO gerinc szekció */
.seo-spine {
  padding: 100px 0;
  text-align: center;
  background: rgba(10, 10, 20, 0.3);
  position: relative;
  overflow: hidden;
}

.seo-spine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 40%,
      rgba(102, 126, 234, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(118, 75, 162, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(240, 147, 251, 0.18) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(240, 147, 251, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 105, 180, 0.12) 0%,
      transparent 25%
    );
  pointer-events: none;
}

.seo-spine-text {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.seo-spine-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.seo-spine .section-title {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .seo-spine .section-title {
    font-size: 1.25rem;
  }
}

/* Process Section - Modernizált */
.process {
  padding: 80px 0;
  text-align: center;
  background: rgba(10, 10, 20, 0.3);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 40%,
      rgba(102, 126, 234, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(118, 75, 162, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(240, 147, 251, 0.18) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(240, 147, 251, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 105, 180, 0.12) 0%,
      transparent 25%
    );
  pointer-events: none;
}

.process::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(240, 147, 251, 0.5) 0%,
    rgba(255, 105, 180, 0.3) 30%,
    rgba(240, 147, 251, 0.2) 60%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(50px);
  animation: float-pulse-vivid 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-pulse-vivid {
  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-15px) scale(1.2) rotate(120deg);
    opacity: 0.9;
  }
  66% {
    transform: translateY(-8px) scale(0.9) rotate(240deg);
    opacity: 0.8;
  }
}

.process-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.steps-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

.process-step {
  text-align: left;
  position: relative;
  display: flex;
  align-items: stretch;
}

.step-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 147, 251, 0.08),
    rgba(102, 126, 234, 0.05),
    transparent
  );
  transition: left 0.4s ease;
}

.step-content:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 147, 251, 0.2);
  box-shadow: 0 12px 32px rgba(240, 147, 251, 0.1);
}

.step-content:hover::before {
  left: 100%;
}

.step-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
  transition: all 0.3s ease;
}

.step-content:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(240, 147, 251, 0.4);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff, #f0f8ff, #f8e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.step-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  flex-grow: 1;
  font-size: 0.95rem;
}

/* Mobile responsive for Process Section */
@media (max-width: 968px) {
  .process {
    padding: 60px 0;
  }

  .process-content {
    padding: 0 20px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-content {
    min-height: auto;
    padding: 20px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}

/* CTA Section */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border-radius: 40px;
  margin: 80px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

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

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Fix for final CTA button on mobile */
.final-cta .cta-button {
  display: inline-block;
  white-space: nowrap;
}

/* Footer - MODERN DESIGN */
footer {
  padding: 80px 0 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(20, 20, 30, 0.95) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(102, 126, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(118, 75, 162, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-content {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  align-items: start;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.social-link:hover {
  color: #667eea;
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
  transform: translateY(-2px) rotate(5deg);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a,
.footer-section span {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-section a:hover {
  color: #667eea;
  transform: translateX(4px);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.35);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.78rem;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.legal-link:hover {
  color: #667eea;
}

/* Mobile responsive for footer */
@media (max-width: 968px) {
  footer {
    padding: 60px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .footer-brand {
    max-width: none;
    text-align: left;
  }

  .footer-logo {
    text-align: left;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h4 {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-legal {
    justify-content: center;
    gap: 20px;
  }
}

/* Tablet responsive adjustments */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .client-logos {
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .final-cta {
    margin: 40px 24px;
    padding: 80px 32px;
  }

  .footer-main {
    gap: 60px;
  }

  .footer-links {
    gap: 40px;
  }
}

/* General Responsive */
@media (max-width: 768px) {
  /* Fix horizontal overflow issue */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Fix for final CTA button on mobile */
  .final-cta .cta-button {
    padding: 16px 24px;
    font-size: 1rem;
  }

  .client-logos {
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .final-cta {
    margin: 40px 12px;
    padding: 60px 24px;
  }
}
/* Contact Form Popup Styles */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.contact-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
              0 0 100px rgba(102, 126, 234, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.contact-popup-overlay.active .contact-popup {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.popup-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #667eea;
}

.checkbox-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group label a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-group label a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.form-submit {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 18px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 0.5s ease;
}

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

.success-message svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  stroke: #4caf50;
  animation: checkmark 0.6s ease;
}

.success-message h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4caf50;
}

.success-message p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkmark {
  from {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  to {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
}

/* Mobile responsive for contact popup */
@media (max-width: 768px) {
  .contact-popup {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .popup-header h2 {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .form-submit {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* Hero section secondary button fix */
.secondary-button {
  background: transparent;
  color: white;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Final CTA section mobile center fix */
@media (max-width: 768px) {
  .final-cta {
    margin: 40px 12px;
    padding: 60px 24px;
  }
  
  .final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .final-cta .cta-button {
    padding: 16px 24px;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
  
  /* Hero buttons mobile fix */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
  }
}

/* Cookie Consent Manager Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
              0 0 100px rgba(102, 126, 234, 0.1);
  backdrop-filter: blur(20px);
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-content {
  margin-bottom: 24px;
}

.cookie-banner-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-banner-description a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-banner-description a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: 1px solid transparent;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-color: rgba(102, 126, 234, 0.3);
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-settings-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-modal {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
              0 0 100px rgba(102, 126, 234, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cookie-settings-overlay.active .cookie-settings-modal {
  transform: translateY(0);
}

.cookie-settings-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.cookie-settings-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.cookie-settings-header {
  text-align: center;
  margin-bottom: 18px;
}

.cookie-settings-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cookie-settings-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.15);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.cookie-category-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.cookie-category-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Custom Checkbox */
.cookie-toggle {
  position: relative;
  width: auto;
  height: auto;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #667eea;
  margin: 0;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Remove the old slider styles */
.cookie-toggle-slider {
  display: none;
}

.cookie-toggle-required {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-style: italic;
  margin-top: 2px;
}

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-settings-save {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.cookie-settings-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Cookie Settings Button (Float) */
.cookie-settings-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cookie-settings-float.show {
  display: flex;
}

.cookie-settings-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    padding: 20px;
    max-width: none;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-btn {
    flex: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .cookie-settings-modal {
    padding: 20px 16px;
    margin: 8px;
    max-width: none;
  }
  
  .cookie-category {
    padding: 10px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .cookie-category-info {
    width: 100%;
  }
  
  .cookie-toggle {
    align-self: flex-start;
  }
  
  .cookie-settings-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-settings-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    left: 16px;
    font-size: 1.5rem;
  }
  
  .cookie-settings-header h2 {
    font-size: 1.3rem;
  }
  
  .cookie-category-info h3 {
    font-size: 0.95rem;
  }
  
  .cookie-category-info p {
    font-size: 0.75rem;
  }
}


/* SERVICE SECTION DESC */

.services-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .services-description {
    font-size: 1rem;
    margin: 0 auto 30px;
    padding: 0 20px;
  }
}
/* Mobile responsive fix for why-image icons */
@media (max-width: 768px) {
  .why-image {
    width: 100%;
    max-width: 100%;
  }
  
  .why-image .image-placeholder {
    width: 100%;
    height: 200px !important; /* Alacsonyabb magasság mobilon */
    border-radius: 16px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .why-image .image-placeholder svg {
    width: 60px !important; /* Kisebb ikon méret mobilon */
    height: 60px !important;
  }
}

/* Tablet mérethez */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-image .image-placeholder {
    height: 250px !important;
  }
  
  .why-image .image-placeholder svg {
    width: 70px !important;
    height: 70px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES — Közös struktúra
   (weboldal-webshop, brand-design, marketing, tartalomgyártás,
    crm-rendszer, applikáció)
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 96px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-breadcrumb .bc-sep { opacity: 0.25; }
.page-breadcrumb .bc-current { color: rgba(255,255,255,0.65); }

/* ── Hero Eyebrow ───────────────────────────────────────────────── */
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-hero-eyebrow i { width: 14px; height: 14px; }

/* ── Hero Title & Description ───────────────────────────────────── */
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 780px;
}
.page-hero h1 .hl,
h2 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-desc {
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.60);
  max-width: 600px;
  margin-bottom: 44px;
}
.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(102, 126, 234, 0.3);
  border-color: transparent;
}
.btn-cta-primary:hover::before { left: 0; }
.btn-cta-primary i { width: 18px; height: 18px; }
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
.btn-cta-secondary i { width: 18px; height: 18px; }

/* ── Stats bar ──────────────────────────────────────────────────── */
.service-stats {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── Service Includes ───────────────────────────────────────────── */
.service-includes { padding: 100px 0; }
.sec-header {
  text-align: center;
  margin-bottom: 60px;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-eyebrow i { width: 13px; height: 13px; }
.sec-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.sec-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.tech-stack .sec-header h2 { margin-bottom: 8px; }
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.include-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 22px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.include-card:hover { transform: translateY(-3px); }
.include-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.include-icon i { width: 20px; height: 20px; }
.include-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: white;
}
.include-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

/* ── Service Types ──────────────────────────────────────────────── */
.web-types { padding: 0 0 100px; }
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.type-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  gap: 24px;
  transition: background 0.25s, border-color 0.25s;
}
.type-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.type-icon i { width: 24px; height: 24px; }
.type-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.type-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.62;
  margin-bottom: 14px;
}
.type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.type-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Process ────────────────────────────────────────────────────── */
.web-process {
  padding: 100px 0;
  background: rgba(10,10,20,0.4);
}
.web-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.web-process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
}
.web-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.web-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.web-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.web-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

/* ── Tech Stack ─────────────────────────────────────────────────── */
.tech-stack { padding: 100px 0; }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.tech-pill:hover { color: white; }
.tech-pill i { width: 15px; height: 15px; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.service-faq {
  padding: 100px 0;
  background: rgba(10,10,20,0.4);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
  list-style: none;
}
.faq-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ── CRM: Highlight box (csak crm-rendszer.html) ────────────────── */
body.page-crm .crm-stat-highlight {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(99,102,241,0.06));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin: 0 0 100px;
}
body.page-crm .crm-stat-highlight h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
body.page-crm .crm-stat-highlight h3 span {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-crm .crm-stat-highlight p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Applikáció: Platform badges (csak applikacio.html) ─────────── */
body.page-applikacio .platform-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
body.page-applikacio .platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 20px 28px;
  transition: background 0.2s, border-color 0.2s;
}
body.page-applikacio .platform-badge:hover {
  background: rgba(6,182,212,0.07);
  border-color: rgba(6,182,212,0.2);
}
body.page-applikacio .platform-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
body.page-applikacio .platform-badge-icon i { width: 22px; height: 22px; }
body.page-applikacio .platform-badge-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
body.page-applikacio .platform-badge-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Service Pages Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .web-process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .web-process-steps::before { display: none; }
  .web-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
  }
  .web-step-num { margin-bottom: 0; }
  body.page-crm .crm-stat-highlight { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 64px; }
  .types-grid { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 16px; }
  body.page-applikacio .platform-badges { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .includes-grid { grid-template-columns: 1fr; }
  .type-card { flex-direction: column; gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES — Oldalankénti accent színek
   ═══════════════════════════════════════════════════════════════ */

/* ── weboldal-webshop.html  (kék–lila, #667eea → #764ba2) ──────── */
body.page-weboldal .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(102,126,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(118,75,162,0.10) 0%, transparent 50%),
    #0a0a0a;
}

/* ── Weboldal hero 2-col grid ── */
.weboldal-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.weboldal-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.weboldal-hero-visual {
  position: relative;
  height: 550px;
  border-radius: 24px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weboldal-hero-visual lottie-player {
  transform: scale(1.2);
}
.weboldal-hero-visual::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147,197,253,0.5) 0%, rgba(167,139,250,0.35) 40%, rgba(147,197,253,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .weboldal-hero-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }
  body.page-weboldal .page-hero {
    overflow: visible;
  }
  .weboldal-hero-visual {
    height: 450px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    border-radius: 0;
  }
  .weboldal-hero-content {
    align-items: center;
    text-align: center;
  }
  .weboldal-hero-content .page-breadcrumb,
  .weboldal-hero-content .page-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .weboldal-hero-visual {
    height: 350px;
    padding: 0;
    border-radius: 0;
  }
}

/* ── Process animation placeholder ── */
.process-anim-section {
  padding: 0 0 32px;
}
.process-anim-box {
  position: relative;
  height: 650px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(102,126,234,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(118,75,162,0.08) 0%, transparent 60%),
    rgba(255,255,255,0.03);
  border: 1px solid rgba(102,126,234,0.2);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.process-anim-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
@media (max-width: 768px) {
  .process-anim-box {
    height: 400px !important;
  }

  .process-anim-section {
    padding: 0 !important;
    margin: 20px 0 !important;
  }

  /* Reduce blur size on mobile */
  .process-anim-box::before,
  #csomagokAnimationBox::before,
  #additionalServicesAnimation::before,
  #crmModulesAnimationBox::before,
  #crmDemoEmbedBox::before,
  #crmProcessAnimationBox::before,
  #tartToolsAnimationBox::before {
    width: 300px !important;
    height: 300px !important;
    filter: blur(40px) !important;
  }

  /* Weboldal page mobile spacing */
  body.page-weboldal .web-types {
    padding: 40px 0 20px !important;
  }
  body.page-weboldal .web-process {
    padding: 20px 0 40px !important;
  }

  /* Brand page mobile spacing */
  body.page-brand .web-types {
    padding: 40px 0 20px !important;
  }
  body.page-brand .web-process {
    padding: 20px 0 40px !important;
  }
  body.page-brand .tech-stack {
    padding: 20px 0 40px !important;
  }

  /* Marketing page mobile spacing */
  body.page-marketing .service-includes {
    padding: 40px 0 20px !important;
  }
  body.page-marketing .web-types {
    padding: 20px 0 40px !important;
  }

  /* Tartalom page mobile spacing */
  body.page-tartalom .web-types {
    padding: 40px 0 20px !important;
  }
  body.page-tartalom .web-process {
    padding: 20px 0 40px !important;
  }
  body.page-tartalom .tech-stack {
    padding: 20px 0 40px !important;
  }

  /* KKV page mobile spacing */
  body.page-kkv .service-includes {
    padding: 40px 0 20px !important;
  }
  body.page-kkv .web-types {
    padding: 20px 0 40px !important;
  }

  /* Company page mobile spacing */
  body.page-company .why-packages {
    padding: 40px 0 20px !important;
  }
  body.page-company .additional-services {
    padding: 20px 0 40px !important;
  }

  /* Csomagok page mobile spacing */
  body.page-csomagok .fullservice-section {
    padding: 40px 0 20px !important;
  }
  body.page-csomagok .why-packages {
    padding: 20px 0 40px !important;
  }
}

/* Weboldal page spacing adjustments */
body.page-weboldal .web-types {
  padding: 0 0 40px;
}

body.page-weboldal .process-anim-section {
  padding: 0;
}

body.page-weboldal .web-types {
  padding-bottom: 0;
}

/* Brand page spacing adjustments */
body.page-brand .web-process {
  padding: 100px 0 40px;
}

body.page-brand .tech-stack {
  padding: 60px 0 100px;
}

body.page-brand .process-anim-section {
  padding: 0;
}

body.page-brand .web-types {
  padding-bottom: 0;
}

body.page-brand .web-process {
  padding-top: 0;
}

/* Marketing page spacing adjustments */
body.page-marketing .service-includes {
  padding: 100px 0 0;
}

body.page-marketing .web-types {
  padding: 0 0 100px;
}

body.page-marketing .process-anim-section {
  padding: 0;
}

body.page-marketing .service-includes {
  padding-bottom: 0;
}

body.page-marketing .web-types {
  padding-top: 0;
}

/* Tartalom page spacing adjustments */
body.page-tartalom .web-types {
  padding: 100px 0 0;
}

body.page-tartalom .web-process {
  padding: 0;
}

body.page-tartalom .tech-stack {
  padding-top: 0;
}

body.page-tartalom .process-anim-section {
  padding: 0;
}

body.page-tartalom .service-includes {
  padding-bottom: 0;
}

body.page-tartalom .process-anim-box {
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
}

body.page-tartalom .process-anim-box::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249,115,22,0.5) 0%, rgba(239,68,68,0.35) 40%, rgba(249,115,22,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-marketing .process-anim-box {
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

body.page-marketing .process-anim-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.5) 0%, rgba(6,182,212,0.35) 40%, rgba(16,185,129,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-brand .process-anim-box {
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

body.page-brand .process-anim-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.5) 0%, rgba(236,72,153,0.35) 40%, rgba(167,139,250,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-weboldal .process-anim-box {
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
}

body.page-weboldal .process-anim-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147,197,253,0.5) 0%, rgba(167,139,250,0.35) 40%, rgba(147,197,253,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* KKV page spacing adjustments */
body.page-kkv .packages-section {
  padding: 100px 0 0;
}

body.page-kkv .process-anim-section {
  padding: 0;
}

body.page-kkv .service-includes {
  padding-bottom: 0;
}

body.page-kkv .web-types {
  padding-top: 0;
}

body.page-crm .process-anim-section {
  padding: 0;
}

body.page-csomagok .process-anim-section {
  padding: 0;
}

body.page-company .process-anim-section {
  padding: 0;
}

/* Company Animation Box with blur sphere */
#additionalServicesAnimation {
  position: relative;
  height: 700px;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#additionalServicesAnimation::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.5) 0%, rgba(6,182,212,0.35) 40%, rgba(16,185,129,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-company .why-packages {
  padding-bottom: 0;
}

body.page-company .additional-services {
  padding-top: 0;
}

/* Csomagok Animation Box with blur sphere */
#csomagokAnimationBox {
  position: relative;
  height: 550px;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#csomagokAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(234,179,8,0.5) 0%, rgba(249,115,22,0.35) 40%, rgba(234,179,8,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-kkv .additional-services {
  padding: 40px 0 100px;
}

body.page-kkv .service-list-item {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(79,70,229,0.04));
  border: 1px solid rgba(99,102,241,0.15);
}

body.page-kkv .service-list-item:hover {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(79,70,229,0.08));
}

body.page-kkv .service-list-icon {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(79,70,229,0.15));
  color: #818cf8;
}

body.page-kkv .service-list-link {
  color: #818cf8;
}

body.page-kkv .service-list-link:hover {
  color: #a5b4fc;
}

body.page-kkv .process-anim-box {
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

body.page-kkv .process-anim-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.6) 0%, rgba(219,39,119,0.4) 40%, rgba(236,72,153,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-weboldal .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-weboldal .page-hero-eyebrow {
  background: rgba(102,126,234,0.12);
  border: 1px solid rgba(102,126,234,0.28);
  color: #a78bfa;
}
body.page-weboldal .page-hero h1 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-weboldal .btn-cta-primary::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
body.page-weboldal .stat-number {
  background: linear-gradient(135deg, #667eea, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-weboldal .sec-eyebrow {
  background: rgba(102,126,234,0.10);
  border: 1px solid rgba(102,126,234,0.22);
  color: #a78bfa;
}
body.page-weboldal .include-card:hover {
  background: rgba(102,126,234,0.07);
  border-color: rgba(102,126,234,0.22);
}
body.page-weboldal .include-icon {
  background: linear-gradient(135deg, rgba(102,126,234,0.18), rgba(118,75,162,0.15));
  color: #a78bfa;
}
body.page-weboldal .type-card:hover {
  background: rgba(102,126,234,0.06);
  border-color: rgba(102,126,234,0.2);
}
body.page-weboldal .type-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
body.page-weboldal .type-tag {
  background: rgba(102,126,234,0.12);
  border: 1px solid rgba(102,126,234,0.2);
  color: #a78bfa;
}
body.page-weboldal .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(102,126,234,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(118,75,162,0.06) 0%, transparent 50%);
  padding: 60px 0 100px;
}
body.page-weboldal .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(102,126,234,0.4) 20%, rgba(118,75,162,0.4) 80%, transparent 100%);
}
body.page-weboldal .web-step-num {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 0 0 4px rgba(102,126,234,0.15);
}
body.page-weboldal .tech-pill:hover {
  background: rgba(102,126,234,0.10);
  border-color: rgba(102,126,234,0.28);
}
body.page-weboldal .tech-pill i { color: #a78bfa; }
body.page-weboldal .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(102,126,234,0.06) 0%, transparent 60%);
}
body.page-weboldal .faq-question:hover { color: #a78bfa; }
body.page-weboldal .faq-icon {
  background: rgba(102,126,234,0.12);
  color: #a78bfa;
}
body.page-weboldal .faq-item.open .faq-icon {
  background: rgba(102,126,234,0.25);
}

/* ── brand-design-ux-ui.html  (lila–pink, #a78bfa → #ec4899) ───── */
body.page-brand .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(167,139,250,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(236,72,153,0.08) 0%, transparent 50%),
    #0a0a0a;
}
body.page-brand .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a78bfa' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-brand .weboldal-hero-visual {
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  height: 550px;
}
body.page-brand .weboldal-hero-visual {
  margin-top: -40px;
}

body.page-brand .weboldal-hero-visual lottie-player {
  transform: scale(0.85);
}

body.page-brand .page-hero {
  padding-bottom: 60px;
}

body.page-brand .weboldal-hero-visual::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.5) 0%, rgba(236,72,153,0.35) 40%, rgba(167,139,250,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
body.page-brand .page-hero-eyebrow {
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.28);
  color: #c4b5fd;
}
body.page-brand .page-hero h1 .hl {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-brand .btn-cta-primary::before {
  background: linear-gradient(135deg, #a78bfa, #764ba2);
}
body.page-brand .stat-number {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-brand .sec-eyebrow {
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.22);
  color: #c4b5fd;
}
body.page-brand .include-card:hover {
  background: rgba(167,139,250,0.07);
  border-color: rgba(167,139,250,0.22);
}
body.page-brand .include-icon {
  background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(236,72,153,0.12));
  color: #c4b5fd;
}
body.page-brand .type-card:hover {
  background: rgba(167,139,250,0.06);
  border-color: rgba(167,139,250,0.2);
}
body.page-brand .type-icon {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
}
body.page-brand .type-tag {
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.2);
  color: #c4b5fd;
}
body.page-brand .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(167,139,250,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(236,72,153,0.05) 0%, transparent 50%);
}
body.page-brand .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(167,139,250,0.4) 20%, rgba(236,72,153,0.35) 80%, transparent 100%);
}
body.page-brand .web-step-num {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  box-shadow: 0 0 0 4px rgba(167,139,250,0.15);
}
body.page-brand .tech-pill:hover {
  background: rgba(167,139,250,0.10);
  border-color: rgba(167,139,250,0.28);
}
body.page-brand .tech-pill i { color: #c4b5fd; }
body.page-brand .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(167,139,250,0.06) 0%, transparent 60%);
}
body.page-brand .faq-question:hover { color: #c4b5fd; }
body.page-brand .faq-icon {
  background: rgba(167,139,250,0.12);
  color: #c4b5fd;
}
body.page-brand .faq-item.open .faq-icon {
  background: rgba(167,139,250,0.25);
}

/* ── marketing-management.html  (zöld–cián, #10b981 → #06b6d4) ─── */
body.page-marketing .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(16,185,129,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.09) 0%, transparent 50%),
    #0a0a0a;
}
body.page-marketing .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2310b981' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-marketing .page-hero-eyebrow {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.28);
  color: #34d399;
}
body.page-marketing .page-hero h1 .hl {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-marketing h2 .hl {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-marketing .btn-cta-primary::before {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
body.page-marketing .stat-number {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-marketing .sec-eyebrow {
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.22);
  color: #34d399;
}
body.page-marketing .include-card:hover {
  background: rgba(16,185,129,0.07);
  border-color: rgba(16,185,129,0.22);
}
body.page-marketing .include-icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(6,182,212,0.15));
  color: #34d399;
}
body.page-marketing .type-card:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
}
body.page-marketing .type-icon {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
body.page-marketing .type-tag {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  color: #34d399;
}
body.page-marketing .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(16,185,129,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(6,182,212,0.06) 0%, transparent 50%);
}
body.page-marketing .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(16,185,129,0.4) 20%, rgba(6,182,212,0.35) 80%, transparent 100%);
}
body.page-marketing .web-step-num {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
body.page-marketing .tech-pill:hover {
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.28);
}
body.page-marketing .tech-pill i { color: #34d399; }
body.page-marketing .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(16,185,129,0.06) 0%, transparent 60%);
}
body.page-marketing .faq-question:hover { color: #34d399; }
body.page-marketing .faq-icon {
  background: rgba(16,185,129,0.12);
  color: #34d399;
}
body.page-marketing .faq-item.open .faq-icon {
  background: rgba(16,185,129,0.25);
}
#marketingHeroChart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.28;
}body.page-marketing .page-hero .container { text-align: center; }
body.page-marketing .page-hero .page-breadcrumb { justify-content: center; }
body.page-marketing .page-hero h1 { margin-left: auto; margin-right: auto; }
body.page-marketing .page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }
body.page-marketing .page-hero-actions { justify-content: center; }

/* ── tartalomgyartas.html  (narancs–amber, #f97316 → #f59e0b) ──── */
body.page-tartalom .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(249,115,22,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(239,68,68,0.09) 0%, transparent 50%),
    #0a0a0a;
}
body.page-tartalom .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f97316' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-tartalom .page-hero-eyebrow {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.28);
  color: #fb923c;
}
body.page-tartalom .page-hero h1 .hl {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-tartalom h2 .hl {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-tartalom .btn-cta-primary::before {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}
body.page-tartalom .stat-number {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-tartalom .sec-eyebrow {
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.22);
  color: #fb923c;
}
body.page-tartalom .include-card:hover {
  background: rgba(249,115,22,0.07);
  border-color: rgba(249,115,22,0.22);
}
body.page-tartalom .include-icon {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(245,158,11,0.15));
  color: #fb923c;
}
body.page-tartalom .type-card:hover {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.2);
}
body.page-tartalom .type-icon {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}
body.page-tartalom .type-tag {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  color: #fb923c;
}
body.page-tartalom .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(249,115,22,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
body.page-tartalom .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.4) 20%, rgba(245,158,11,0.35) 80%, transparent 100%);
}
body.page-tartalom .web-step-num {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}
body.page-tartalom .tech-pill:hover {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.28);
}
body.page-tartalom .tech-pill i { color: #fb923c; }
body.page-tartalom .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(249,115,22,0.06) 0%, transparent 60%);
}
body.page-tartalom .faq-question:hover { color: #fb923c; }
body.page-tartalom .faq-icon {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
}
body.page-tartalom .faq-item.open .faq-icon {
  background: rgba(249,115,22,0.25);
}

/* ── Tartalomgyártás hero visual override ──────────────────────── */
.tart-hero-visual {
  position: relative;
  height: 550px;
  border-radius: 24px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tart-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Second animation box styling */
#tartToolsAnimationBox {
  position: relative;
  height: 650px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Blur sphere behind second animation */
#tartToolsAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249,115,22,0.5) 0%, rgba(239,68,68,0.35) 40%, rgba(249,115,22,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Content Carousel (körhinta) ───────────────────────────────── */
.cc-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}
.cc-orbit-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(249,115,22,0.18);
  pointer-events: none;
}
.cc-orbit-ring--lg {
  width: 320px;
  height: 320px;
  border-color: rgba(245,158,11,0.09);
}
.cc-carousel {
  position: relative;
  width: 150px;
  height: 190px;
  transform-style: preserve-3d;
  animation: ccSpin 12s linear infinite;
}
@keyframes ccSpin {
  0%   { transform: rotateY(0deg); }
  18%  { transform: rotateY(0deg); }
  25%  { transform: rotateY(-90deg); }
  43%  { transform: rotateY(-90deg); }
  50%  { transform: rotateY(-180deg); }
  68%  { transform: rotateY(-180deg); }
  75%  { transform: rotateY(-270deg); }
  93%  { transform: rotateY(-270deg); }
  100% { transform: rotateY(-360deg); }
}
.cc-card {
  position: absolute;
  inset: 0;
  width: 150px;
  height: 190px;
  border-radius: 18px;
  border: 1px solid rgba(249,115,22,0.25);
  overflow: hidden;
  background: rgba(20,15,10,0.7);
}
.cc-card:nth-child(1) { transform: rotateY(0deg)   translateZ(135px); }
.cc-card:nth-child(2) { transform: rotateY(90deg)  translateZ(135px); }
.cc-card:nth-child(3) { transform: rotateY(180deg) translateZ(135px); }
.cc-card:nth-child(4) { transform: rotateY(270deg) translateZ(135px); }
.cc-card img,
.cc-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── crm-rendszer.html  (kék–indigó, #3b82f6 → #6366f1) ────────── */
body.page-crm .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(59,130,246,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(99,102,241,0.10) 0%, transparent 50%),
    #0a0a0a;
}
body.page-crm .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b82f6' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-crm .page-hero-eyebrow {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.28);
  color: #60a5fa;
}
body.page-crm .page-hero h1 .hl {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-crm .page-hero .container { text-align: center; }
body.page-crm .page-hero .page-breadcrumb { justify-content: center; }
body.page-crm .page-hero h1 { margin-left: auto; margin-right: auto; }
body.page-crm .page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }
body.page-crm .page-hero-actions { justify-content: center; }
.crm-trust-row {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.01em;
}
body.page-crm .btn-cta-primary::before {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
body.page-crm .stat-number {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-crm .sec-eyebrow {
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.22);
  color: #60a5fa;
}
body.page-crm .include-card:hover {
  background: rgba(59,130,246,0.07);
  border-color: rgba(59,130,246,0.22);
}
body.page-crm .include-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(99,102,241,0.15));
  color: #60a5fa;
}
body.page-crm .type-card:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.2);
}
body.page-crm .type-icon {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
body.page-crm .type-tag {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  color: #60a5fa;
}
body.page-crm .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(59,130,246,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(99,102,241,0.06) 0%, transparent 50%);
  padding-top: 0;
}
body.page-crm .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.4) 20%, rgba(99,102,241,0.35) 80%, transparent 100%);
}
body.page-crm .web-step-num {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}
body.page-crm .tech-pill:hover {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.28);
}
body.page-crm .tech-pill i { color: #60a5fa; }
body.page-crm .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(59,130,246,0.06) 0%, transparent 60%);
}
body.page-crm .faq-question:hover { color: #60a5fa; }
body.page-crm .faq-icon {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
}
body.page-crm .faq-item.open .faq-icon {
  background: rgba(59,130,246,0.25);
}
body.page-crm h3 .hl {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CRM Promo Ticker ────────────────────────────────────────────── */
.crm-promo-ticker {
  position: relative;
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border-top: 1px solid rgba(99,102,241,0.25);
  border-bottom: 1px solid rgba(99,102,241,0.25);
}
.crm-promo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: tickerShine 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes tickerShine {
  0%   { left: -40%; }
  100% { left: 110%; }
}
.crm-promo-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}
.crm-promo-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.crm-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-right: 60px;
  flex-shrink: 0;
}
.crm-promo-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.38);
}
.crm-promo-arrow { color: #6366f1; font-weight: 700; }
.crm-promo-item strong {
  background: linear-gradient(135deg, #3b82f6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.crm-promo-item a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.crm-promo-item a:hover { color: #fde68a; text-decoration: underline; }
.crm-promo-sep { color: rgba(99,102,241,0.5); padding: 0 20px 0 10px; }

/* ─── CRM regisztrációs popup ────────────────────────────────────── */
.popup-subtitle {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: -8px 0 12px !important;
  letter-spacing: 0.02em;
}
body.page-crm .seo-spine-text p { text-align: center; }
@media (max-width: 768px) {
  body.page-crm .seo-spine .container { padding-left: 28px; padding-right: 28px; }
}
.crm-form-glow-wrap { width: 100%; }
.crm-form-glow-wrap .crm-form-submit { width: 100%; justify-content: center; }
.crm-form-subinfo {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  text-align: center;
}

/* ─── CRM Hero – LionCRM háttér suhanás ─────────────────────────── */
.crm-hero { overflow: hidden; }
.crm-hero-swoosh {
  position: absolute;
  top: 50%;
  left: -320px;
  transform: translateY(-50%);
  width: 300px;
  border-radius: 24px;
  opacity: 0;
  filter: blur(2px) grayscale(15%);
  pointer-events: none;
  animation: crmSwoosh 14s linear infinite;
  animation-delay: 1.5s;
  z-index: 0;
}
@keyframes crmSwoosh {
  /* gyors belépés */
  0%    { left: -320px;           opacity: 0;    filter: blur(6px); }
  6%    { left: 5%;               opacity: 0.09; filter: blur(2px); }
  /* lassulás – középen lebeg */
  20%   { left: 30%;              opacity: 0.11; filter: blur(0px); }
  45%   { left: 58%;              opacity: 0.10; filter: blur(0px); }
  /* gyorsulás – kimenetel */
  56%   { left: 80%;              opacity: 0.06; filter: blur(2px); }
  64%   { left: calc(100% + 320px); opacity: 0; filter: blur(8px); }
  /* várakozás */
  100%  { left: calc(100% + 320px); opacity: 0; filter: blur(8px); }
}
@media (max-width: 768px) {
  .crm-hero-swoosh { width: 180px; border-radius: 16px; }
}

/* ─── CRM Hero CTA – körbefutó lila/rózsaszín glow ──────────────── */
@property --crm-glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.crm-glow-wrap {
  position: relative;
  display: inline-flex;
  border-radius: 52px;
  padding: 2px;
  background: conic-gradient(
    from var(--crm-glow-angle),
    #a78bfa 0%,
    #ec4899 25%,
    #7c3aed 50%,
    #ec4899 75%,
    #a78bfa 100%
  );
  animation: crmGlowSpin 3s linear infinite;
  box-shadow:
    0 0 22px rgba(167,139,250,0.45),
    0 0 48px rgba(236,72,153,0.25);
}
@keyframes crmGlowSpin {
  to { --crm-glow-angle: 360deg; }
}
.crm-glow-wrap .btn-cta-primary {
  position: relative;
  z-index: 1;
  margin: 0;
}
.crm-glow-wrap .btn-cta-primary::before { display: none; }
.crm-glow-wrap .btn-cta-primary:hover {
  transform: none;
  box-shadow: none;
}
.crm-glow-wrap { transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.crm-glow-wrap:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════════════════════════════════
   CRM-RENDSZER.HTML – egyedi szekciók
   Padding: 100px 0 (egységes a többi oldallal)
   Breakpointok: 1024px / 900px / 768px / 480px (standard)
   ════════════════════════════════════════════════════════════════════ */

/* ─── CRM: szekció paddingjok visszavéve (100px → 72px) ─────────────*/
body.page-crm .service-includes,
body.page-crm .web-process,
body.page-crm .tech-stack,
body.page-crm .service-faq {
  padding: 72px 0;
}

body.page-crm .web-process.crm-process {
  padding-top: 0;
}
.crm-modules-section,
.crm-extras-section,
.crm-fixprice-section,
.crm-pricing-section,
.crm-addons-section { padding: 72px 0; }
.crm-modules-split { margin-bottom: 72px; }

/* ─── CRM: service-includes grid → 3 oszlop mindkét szekcióban ────── */
body.page-crm .service-includes .includes-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Szekció 3: Minden modul aktív – split layout ───────────────── */
.crm-modules-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin: 0 0 100px;
}
.crm-all-modules-box {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.crm-all-modules-box .btn-cta-primary { width: fit-content; }
.crm-all-modules-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.crm-all-modules-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.crm-all-modules-box > p:not(.crm-all-modules-sub) {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.crm-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.crm-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}
.crm-check-list li i,
.crm-check-list li svg { color: #a78bfa; stroke: #a78bfa; width: 16px; height: 16px; flex-shrink: 0; }

/* ─── CRM animáció doboz (kék/indigó szín) ───────────────────────── */
.crm-anim-box {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(59,130,246,0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(99,102,241,0.10) 0%, transparent 55%),
    rgba(255,255,255,0.02);
  border-color: rgba(59,130,246,0.22);
  min-height: 360px;
}

/* CRM Modules Animation Box with blur sphere */
#crmModulesAnimationBox {
  position: relative;
  height: 550px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#crmModulesAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, rgba(99,102,241,0.35) 40%, rgba(59,130,246,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* CRM Demo Animation Box with blur sphere */
#crmDemoEmbedBox {
  position: relative;
  height: 550px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#crmDemoEmbedBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, rgba(99,102,241,0.35) 40%, rgba(59,130,246,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* CRM Process Animation Box with blur sphere */
#crmProcessAnimationBox {
  position: relative;
  height: 550px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#crmProcessAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, rgba(99,102,241,0.35) 40%, rgba(59,130,246,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ─── Szekció 4: Fő modulok grid ─────────────────────────────────── */
.crm-modules-section { padding: 100px 0; }
.crm-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.crm-module-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.crm-module-card:hover {
  transform: translateY(-3px);
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.28);
}
.crm-module-card h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.crm-module-card p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.crm-mod-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s, gap 0.2s;
}
.crm-mod-cta:hover { color: #93c5fd; gap: 8px; }
.crm-mod-cta i,
.crm-mod-cta svg { width: 13px; height: 13px; }

/* ─── Szekció 5: Plusz funkciók ──────────────────────────────────── */
.crm-modules-section + div[style*="text-align:center"] {
  margin-top: 0 !important;
}

.crm-extras-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.crm-extras-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.crm-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.crm-extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  padding: 13px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.crm-extra-item:hover {
  background: rgba(59,130,246,0.07);
  border-color: rgba(59,130,246,0.2);
}
.crm-extra-item i,
.crm-extra-item svg { color: #60a5fa; stroke: #60a5fa; width: 17px; height: 17px; flex-shrink: 0; }

/* ─── Process: 3 lépés (standard 5 helyett) ──────────────────────── */
body.page-crm .web-process-steps { grid-template-columns: repeat(3, 1fr); }

/* ─── Szekció 7: Próba – a service-includes padding lefedi ────────── */

/* ─── Szekció 8: Fix ár ──────────────────────────────────────────── */
.crm-fixprice-section { padding: 100px 0; }
.crm-fixprice-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.crm-fixprice-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 24px;
}
.crm-fixprice-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 12px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  text-align: left;
  max-width: 560px;
}
.crm-fixprice-badge svg { color: #60a5fa; stroke: #60a5fa; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* ─── Szekció 8+9: Fix ár + Árazás (egyesített) ─────────────────── */
.crm-pricing-section { padding: 72px 0; }
.crm-pricing-combined {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.crm-fixprice-inner { max-width: unset; margin: 0; text-align: left; }
.crm-fixprice-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
.crm-pricing-card {
  background: linear-gradient(145deg, rgba(59,130,246,0.1) 0%, rgba(99,102,241,0.08) 100%);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 24px;
  padding: 48px 52px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 40px rgba(59,130,246,0.18),
    0 0 80px rgba(99,102,241,0.12),
    0 0 0 1px rgba(99,102,241,0.15) inset;
}
.crm-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.crm-pricing-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.crm-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.crm-price-amount { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.crm-price-currency { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.crm-price-period { font-size: 0.95rem; color: rgba(255,255,255,0.4); }
.crm-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
}
.crm-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.crm-pricing-features li i,
.crm-pricing-features li svg { color: #60a5fa; stroke: #60a5fa; width: 16px; height: 16px; flex-shrink: 0; }
.crm-pricing-cta { width: 100%; justify-content: center; }
.crm-pricing-footer {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.01em;
}

/* ─── Szekció 10: Bővítések ──────────────────────────────────────── */
.crm-addons-section {
  position: relative;
}
.crm-addons-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.crm-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.crm-addon-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 30px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 14px;
  align-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.crm-addon-card .include-icon { grid-row: 1; grid-column: 1; margin-bottom: 0; }
.crm-addon-card h4 { grid-row: 1; grid-column: 2; margin: 0; }
.crm-addon-pills { grid-row: 2; grid-column: 1 / -1; }
.crm-addon-card:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.22);
}
.crm-addon-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0; }
.crm-addon-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.crm-addon-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.22);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════
   CRM RESPONSIVE – standard breakpointok
   ════════════════════════════════════════════════════════════════════ */

/* 1024px – tablet landscape */
@media (max-width: 1024px) {
  .crm-modules-grid { grid-template-columns: repeat(2, 1fr); }
}
/* 768px – mobil: modul kártyák full width */
@media (max-width: 768px) {
  .crm-modules-grid { grid-template-columns: 1fr; }
}

/* 900px – tablet portrait */
@media (max-width: 900px) {
  .crm-pricing-combined { grid-template-columns: 1fr; gap: 40px; }
  .crm-fixprice-inner { text-align: center; }
  .crm-fixprice-badge { margin-left: auto; margin-right: auto; }
  .crm-pricing-card { margin: 0 auto; }
  .crm-modules-split { grid-template-columns: 1fr; }
  .crm-anim-box { height: 260px; min-height: unset; }
  body.page-crm .service-includes .includes-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .crm-addons-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-crm .web-process-steps { grid-template-columns: 1fr; gap: 32px; }
  body.page-crm .web-process-steps::before { display: none; }
  body.page-crm .web-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  body.page-crm .web-step-num { margin-bottom: 0; }
}

/* 768px – mobil */
@media (max-width: 768px) {
  .crm-modules-split { margin: 0 0 60px; }
  .crm-fixprice-badge { font-size: 0.84rem; padding: 10px 16px; }
  .crm-extras-grid { gap: 10px; }
  .crm-all-modules-box { text-align: center; align-items: center; }
  .crm-all-modules-box .crm-check-list { align-items: center; }
  .crm-addons-grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* 768px – mobil: CRM includes grid full width */
@media (max-width: 768px) {
  body.page-crm .service-includes .includes-grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* 480px – kis mobil */
@media (max-width: 480px) {
  .crm-modules-grid { grid-template-columns: 1fr; }
  .crm-extras-grid { grid-template-columns: 1fr; }
  .crm-addons-grid { grid-template-columns: 1fr; }
  .crm-all-modules-box { padding: 10px 0; }
  .crm-pricing-card { padding: 36px 20px; }
  .crm-price-amount { font-size: 2.4rem; }
}

/* ── applikacio.html  (cián–égkék, #06b6d4 → #0ea5e9) ──────────── */
body.page-applikacio .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6,182,212,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(14,165,233,0.10) 0%, transparent 50%),
    #0a0a0a;
}
body.page-applikacio .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2306b6d4' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-applikacio .page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.page-applikacio .page-hero h1,
body.page-applikacio .page-hero-desc { max-width: 780px; }
body.page-applikacio .page-breadcrumb { justify-content: center; }
body.page-applikacio .page-hero-eyebrow {
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.28);
  color: #22d3ee;
}
body.page-applikacio .page-hero h1 .hl {
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-applikacio .btn-cta-primary::before {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}
body.page-applikacio .stat-number {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-applikacio .sec-eyebrow {
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(6,182,212,0.22);
  color: #22d3ee;
}
body.page-applikacio .include-card:hover {
  background: rgba(6,182,212,0.07);
  border-color: rgba(6,182,212,0.22);
}
body.page-applikacio .include-icon {
  background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(14,165,233,0.15));
  color: #22d3ee;
}
body.page-applikacio .type-card:hover {
  background: rgba(6,182,212,0.06);
  border-color: rgba(6,182,212,0.2);
}
body.page-applikacio .type-icon {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}
body.page-applikacio .type-tag {
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  color: #22d3ee;
}
body.page-applikacio .web-process {
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(6,182,212,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(14,165,233,0.06) 0%, transparent 50%);
}
body.page-applikacio .web-process-steps::before {
  background: linear-gradient(90deg, transparent 0%, rgba(6,182,212,0.4) 20%, rgba(14,165,233,0.35) 80%, transparent 100%);
}
body.page-applikacio .web-step-num {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.15);
}
body.page-applikacio .tech-pill:hover {
  background: rgba(6,182,212,0.10);
  border-color: rgba(6,182,212,0.28);
}
body.page-applikacio .tech-pill i { color: #22d3ee; }
body.page-applikacio .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(6,182,212,0.06) 0%, transparent 60%);
}
body.page-applikacio .faq-question:hover { color: #22d3ee; }
body.page-applikacio .faq-icon {
  background: rgba(6,182,212,0.12);
  color: #22d3ee;
}
body.page-applikacio .faq-item.open .faq-icon {
  background: rgba(6,182,212,0.25);
}


/* ═══════════════════════════════════════════════════════════════
   CSOMAGAJÁNLATOK OLDAL (body.page-csomagok)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
body.page-csomagok .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(234,179,8,0.16)  0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%,  rgba(249,115,22,0.10) 0%, transparent 50%),
    #0a0a0a;
  overflow: visible;
}
body.page-csomagok .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eab308' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-csomagok .page-hero-eyebrow {
  background: rgba(234,179,8,0.12);
  border: 1px solid rgba(234,179,8,0.30);
  color: #fbbf24;
}
body.page-csomagok .page-hero h1 .hl {
  background: linear-gradient(135deg, #eab308 0%, #f97316 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-csomagok .btn-cta-primary::before {
  background: linear-gradient(135deg, #eab308, #f97316);
}
body.page-csomagok .stat-number {
  background: linear-gradient(135deg, #eab308, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-csomagok .sec-eyebrow {
  background: rgba(234,179,8,0.10);
  border: 1px solid rgba(234,179,8,0.22);
  color: #fbbf24;
}
body.page-csomagok .faq-question:hover { color: #fbbf24; }
body.page-csomagok .faq-icon {
  background: rgba(234,179,8,0.12);
  color: #fbbf24;
}
body.page-csomagok .faq-item.open .faq-icon {
  background: rgba(234,179,8,0.25);
}
body.page-csomagok .service-faq {
  background-image: radial-gradient(ellipse at center top, rgba(234,179,8,0.06) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════════════════════
   KKV CSOMAGOK OLDAL (body.page-kkv)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
body.page-kkv .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(59,130,246,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%,  rgba(99,102,241,0.10) 0%, transparent 50%),
    var(--gradient-dark);
  overflow: visible;
}
body.page-kkv .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236366f1' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-kkv .page-hero-eyebrow {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #818cf8;
}
body.page-kkv .page-hero h1 .hl {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-kkv .btn-cta-primary::before {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
body.page-kkv .stat-number {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-kkv .sec-eyebrow {
  background: rgba(99,102,241,0.10);
  border: 1px solid rgba(99,102,241,0.22);
  color: #818cf8;
}
body.page-kkv .faq-section {
  background: linear-gradient(to bottom, rgba(99,102,241,0.06) 0%, rgba(79,70,229,0.03) 50%, transparent 100%);
  padding: 100px 0;
}
body.page-kkv .faq-question:hover { color: #818cf8; }
body.page-kkv .faq-icon {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
}
body.page-kkv .faq-item.open .faq-icon {
  background: rgba(99,102,241,0.25);
}
@media (min-width: 769px) {
  body.page-kkv .page-hero-actions {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
}
body.page-kkv .kkv-package-eyebrow {
  color: #818cf8;
}
body.page-kkv .kkv-highlight-item svg {
  color: #818cf8;
}
body.page-kkv .kkv-package-content h2 {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-kkv .kkv-pricing-badge {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}
body.page-kkv .kkv-price-amount {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   COMPANY FULL SERVICE OLDAL (body.page-company)
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
body.page-company .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(16,185,129,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%,  rgba(52,211,153,0.08) 0%, transparent 50%),
    var(--gradient-dark);
}
body.page-company .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2310b981' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-company .page-hero-eyebrow {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: #34d399;
}
body.page-company .page-hero h1 .hl {
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-company .btn-cta-primary::before {
  background: linear-gradient(135deg, #10b981, #34d399);
}
body.page-company .stat-number {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-company .sec-eyebrow {
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.22);
  color: #34d399;
}
body.page-company .include-icon {
  background: rgba(16,185,129,0.12);
  color: #34d399;
}
body.page-company .why-pkg-icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(52,211,153,0.14));
  color: #34d399;
}
body.page-company .crm-pricing-badge {
  background: linear-gradient(135deg, #10b981, #34d399);
}
body.page-company .crm-price-amount {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-company .crm-price-features li svg {
  color: #34d399;
}
body.page-company .pkg-card.pkg-featured {
  background: linear-gradient(160deg, rgba(16,185,129,0.08) 0%, rgba(52,211,153,0.06) 100%);
  border-color: rgba(16,185,129,0.35);
}
body.page-company .pkg-badge {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}
body.page-company .pkg-cta-gold {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}
body.page-company .pkg-icon-business {
  background: linear-gradient(135deg, rgba(16,185,129,0.22), rgba(52,211,153,0.16));
  color: #34d399;
}
body.page-company .pkg-card .pkg-price-label {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.12));
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(16,185,129,0.2);
}
body.page-company .faq-question:hover {
  color: #34d399;
}
body.page-company .faq-icon {
  background: rgba(16,185,129,0.12);
  color: #34d399;
}
body.page-company .faq-item.open .faq-icon {
  background: rgba(16,185,129,0.25);
}
@media (min-width: 769px) {
  body.page-company .page-hero-actions {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
}

/* ── Company Card Color Themes ──────────────────────────────── */
/* Purple theme - Company Online */
.pkg-online .pkg-icon {
  background: linear-gradient(135deg, rgba(168,85,247,0.20), rgba(147,51,234,0.15)) !important;
  color: #a855f7 !important;
}
.pkg-online .pkg-price-label {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(147,51,234,0.12)) !important;
  border: 1px solid rgba(168,85,247,0.3) !important;
  color: #c084fc !important;
  box-shadow: 0 0 20px rgba(168,85,247,0.2) !important;
}
.pkg-online .setup-feature {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(147,51,234,0.12)) !important;
  border-color: rgba(168,85,247,0.25) !important;
}
.pkg-online .setup-feature .feat-icon {
  color: #a855f7 !important;
}
.pkg-online .pkg-cta {
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(147,51,234,0.08)) !important;
  border: 1px solid rgba(168,85,247,0.3) !important;
  color: #c084fc !important;
}
.pkg-online .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(147,51,234,0.12)) !important;
  border-color: rgba(168,85,247,0.4) !important;
}

/* Orange theme - Company Webshop */
.pkg-webshop .pkg-icon {
  background: linear-gradient(135deg, rgba(249,115,22,0.20), rgba(234,88,12,0.15)) !important;
  color: #f97316 !important;
}
.pkg-webshop .pkg-price-label {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(234,88,12,0.12)) !important;
  border: 1px solid rgba(249,115,22,0.3) !important;
  color: #fb923c !important;
  box-shadow: 0 0 20px rgba(249,115,22,0.2) !important;
}
.pkg-webshop .setup-feature {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(234,88,12,0.12)) !important;
  border-color: rgba(249,115,22,0.25) !important;
}
.pkg-webshop .setup-feature .feat-icon {
  color: #f97316 !important;
}
.pkg-webshop .pkg-cta {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(234,88,12,0.08)) !important;
  border: 1px solid rgba(249,115,22,0.3) !important;
  color: #fb923c !important;
}
.pkg-webshop .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(234,88,12,0.12)) !important;
  border-color: rgba(249,115,22,0.4) !important;
}

/* Blue theme - Company App */
.pkg-app .pkg-icon {
  background: linear-gradient(135deg, rgba(59,130,246,0.20), rgba(37,99,235,0.15)) !important;
  color: #3b82f6 !important;
}
.pkg-app .pkg-price-label {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.12)) !important;
  border: 1px solid rgba(59,130,246,0.3) !important;
  color: #60a5fa !important;
  box-shadow: 0 0 20px rgba(59,130,246,0.2) !important;
}
.pkg-app .setup-feature {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.12)) !important;
  border-color: rgba(59,130,246,0.25) !important;
}
.pkg-app .setup-feature .feat-icon {
  color: #3b82f6 !important;
}
.pkg-app .pkg-cta {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(37,99,235,0.08)) !important;
  border: 1px solid rgba(59,130,246,0.3) !important;
  color: #60a5fa !important;
}
.pkg-app .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(37,99,235,0.12)) !important;
  border-color: rgba(59,130,246,0.4) !important;
}

/* ── KKV Card Color Themes ──────────────────────────────────── */
/* Teal theme - KKV Boost */
.pkg-kkv-boost .pkg-icon {
  background: linear-gradient(135deg, rgba(20,184,166,0.20), rgba(13,148,136,0.15)) !important;
  color: #14b8a6 !important;
}
.pkg-kkv-boost .pkg-cta {
  background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(13,148,136,0.08)) !important;
  border: 1px solid rgba(20,184,166,0.3) !important;
  color: #5eead4 !important;
}
.pkg-kkv-boost .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(20,184,166,0.18), rgba(13,148,136,0.12)) !important;
  border-color: rgba(20,184,166,0.4) !important;
}

/* Pink theme - KKV Webshop */
.pkg-kkv-webshop .pkg-icon {
  background: linear-gradient(135deg, rgba(236,72,153,0.20), rgba(219,39,119,0.15)) !important;
  color: #ec4899 !important;
}
.pkg-kkv-webshop .pkg-cta {
  background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(219,39,119,0.08)) !important;
  border: 1px solid rgba(236,72,153,0.3) !important;
  color: #f9a8d4 !important;
}
.pkg-kkv-webshop .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(236,72,153,0.18), rgba(219,39,119,0.12)) !important;
  border-color: rgba(236,72,153,0.4) !important;
}

/* Amber theme - Extensions */
.pkg-extensions .pkg-icon {
  background: linear-gradient(135deg, rgba(245,158,11,0.20), rgba(217,119,6,0.15)) !important;
  color: #f59e0b !important;
}
.pkg-extensions .pkg-cta {
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(217,119,6,0.08)) !important;
  border: 1px solid rgba(245,158,11,0.3) !important;
  color: #fbbf24 !important;
}
.pkg-extensions .pkg-cta:hover {
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(217,119,6,0.12)) !important;
  border-color: rgba(245,158,11,0.4) !important;
}
.pkg-extensions .pkg-features li strong {
  color: #fbbf24;
  font-weight: 700;
}

/* ── Package Cards ──────────────────────────────────────────── */
.packages-section {
  padding: 100px 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.pkg-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-4px);
}
.pkg-card.pkg-featured {
  background: linear-gradient(160deg, rgba(234,179,8,0.07) 0%, rgba(249,115,22,0.05) 100%);
  border-color: rgba(234,179,8,0.35);
  transform: scale(1.03);
}
.pkg-card.pkg-featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #eab308, #f97316);
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pkg-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.pkg-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkg-icon i { width: 26px; height: 26px; }
.pkg-icon-starter  { background: linear-gradient(135deg, rgba(102,126,234,0.20), rgba(118,75,162,0.15)); color: #a78bfa; }
.pkg-icon-business { background: linear-gradient(135deg, rgba(234,179,8,0.22), rgba(249,115,22,0.16)); color: #fbbf24; }
.pkg-icon-premium  { background: linear-gradient(135deg, rgba(99,102,241,0.20), rgba(168,85,247,0.15)); color: #c4b5fd; }
.pkg-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.pkg-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
  margin-bottom: 36px;
  height: 70px;
  display: flex;
  align-items: center;
}
.pkg-price {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pkg-price-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
  text-align: center;
}
.pkg-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-align: center;
  margin-bottom: 12px;
}
.pkg-price-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}
.pkg-price-note {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0;
  text-align: center;
}
.pkg-features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 1;
}
.pkg-features-collapsed {
  max-height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
}
.pkg-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pkg-toggle-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.pkg-toggle-btn .toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.pkg-toggle-btn.expanded .toggle-icon {
  transform: rotate(180deg);
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}
.pkg-features li .feat-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  color: #4ade80;
}
.pkg-features li.feat-missing {
  color: rgba(255,255,255,0.28);
}
.pkg-features li.feat-missing .feat-icon {
  color: rgba(255,255,255,0.20);
}
.pkg-features li.setup-feature {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.12));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 -12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.pkg-features li.setup-feature .feat-icon {
  color: #10b981;
}
.pkg-features li.pkg-section-header {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  margin-bottom: 4px;
  padding: 0;
}
.pkg-features li.pkg-section-header:first-child {
  margin-top: 0;
}
.pkg-features li.pkg-section-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  padding: 0;
  margin-bottom: 12px;
  font-style: italic;
}
.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.pkg-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.pkg-cta i { width: 17px; height: 17px; }
.pkg-cta-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.80);
}
.pkg-cta-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.30);
}
.pkg-cta-gold {
  background: linear-gradient(135deg, #eab308, #f97316);
  color: #0a0a0a;
}
.pkg-cta-purple {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

/* ── Csomagajánlatok hero split ─────────────────────────────── */
.csomag-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.csomag-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.csomag-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

/* Kapcsolat page - larger animation */
body.page-kapcsolat .csomag-hero-right lottie-player {
  transform: scale(1.3);
}

/* Purple blur sphere for Kapcsolat page */
body.page-kapcsolat .csomag-hero-right::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.6) 0%, rgba(139,92,246,0.4) 40%, rgba(168,85,247,0.2) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-kapcsolat .csomag-hero-right lottie-player {
  position: relative;
  z-index: 1;
}

/* Green blur sphere for Company page - higher specificity */
body.page-csomagok.page-company .csomag-hero-right::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.6) 0%, rgba(5,150,105,0.4) 40%, rgba(16,185,129,0.2) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-csomagok.page-company .csomag-hero-right lottie-player {
  position: relative;
  z-index: 1;
}

/* Blue blur sphere for KKV page */
body.page-kkv .csomag-hero-right::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.7) 0%, rgba(37,99,235,0.5) 40%, rgba(59,130,246,0.2) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Orange blur sphere for csomagok page */
body.page-csomagok .csomag-hero-right::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.5) 0%, rgba(234,88,12,0.35) 40%, rgba(249,115,22,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.csomag-capso-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.35);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}

.csomag-capso-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .csomag-hero-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .csomag-hero-right {
    order: 1;
  }

  .csomag-hero-left {
    order: 0;
    align-items: center;
    text-align: center;
  }

  .csomag-hero-left .page-breadcrumb {
    justify-content: center;
  }

  .csomag-hero-left .page-hero-actions {
    justify-content: center;
  }

  .csomag-capso-placeholder {
    aspect-ratio: 16 / 7;
    border-radius: 14px;
  }
}

/* ── Full Service szekciók ──────────────────────────────────── */
.fullservice-section { padding: 80px 0; }
.fullservice-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 56px 60px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.fullservice-card:last-child { margin-bottom: 0; }
.fullservice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
}
.fullservice-card--company::before {
  background: radial-gradient(ellipse at 80% 0%, rgba(99,102,241,0.1) 0%, transparent 60%);
}
.fullservice-card--kkv::before {
  background: radial-gradient(ellipse at 20% 100%, rgba(16,185,129,0.08) 0%, transparent 60%);
}
.fullservice-card:hover { border-color: rgba(255,255,255,0.15); }

.fullservice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #818cf8;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 30px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.fullservice-badge svg { width: 13px; height: 13px; }
.fullservice-badge--kkv {
  color: #34d399;
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.25);
}

.fullservice-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0 0 14px;
}
.fullservice-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 28px;
}
.fullservice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fullservice-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.fullservice-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6366f1;
  stroke: #6366f1;
}
.fullservice-card--kkv .fullservice-list li svg {
  color: #34d399;
  stroke: #34d399;
}

.fullservice-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}
.fullservice-price-from {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}
.fullservice-price-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fullservice-card--kkv .fullservice-price-value {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fullservice-price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.fullservice-cta { width: fit-content; }

.fullservice-visual {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.fullservice-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  position: relative;
  z-index: 2;
}

/* Green blur behind Company Full Service image */
.fullservice-card--kkv .fullservice-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.5) 0%, rgba(6,182,212,0.35) 40%, rgba(16,185,129,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Purple-blue blur behind KKV Full Service image */
.fullservice-card--company .fullservice-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147,197,253,0.5) 0%, rgba(167,139,250,0.35) 40%, rgba(147,197,253,0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.fullservice-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
}
.fullservice-img-placeholder svg { width: 40px; height: 40px; }

@media (max-width: 1024px) {
  .fullservice-card { gap: 40px; padding: 44px 40px; }
}
@media (max-width: 768px) {
  .fullservice-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .fullservice-card--kkv .fullservice-visual { order: -1; }
  .fullservice-img-placeholder { aspect-ratio: 16/9; }
}

/* ── KKV Package Layout ──────────────────────────────────────── */
.kkv-package-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kkv-package-section:last-of-type {
  border-bottom: none;
}
.kkv-package-alt {
  background: rgba(255,255,255,0.01);
}

.kkv-package-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

/* Reverse layout for middle section (pricing first visually) */
.kkv-package-reverse {
  grid-template-columns: 480px 1fr;
}

.kkv-package-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kkv-package-pricing {
  display: flex;
}

.kkv-pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  width: 100%;
}
.kkv-pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
}
.kkv-price-amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.kkv-price-period {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  font-weight: 600;
}
.kkv-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.kkv-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.kkv-price-features li:last-child {
  border-bottom: none;
}
.kkv-price-features li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}
.kkv-pkg-cta {
  width: 100%;
  justify-content: center;
}

.kkv-package-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.kkv-package-eyebrow svg {
  width: 16px;
  height: 16px;
}
.kkv-package-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.kkv-package-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.kkv-package-long-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.kkv-package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.kkv-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.kkv-highlight-item svg {
  width: 16px;
  height: 16px;
  color: #a78bfa;
}
.kkv-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.tech-badge {
  display: inline-block;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.tech-badge:hover {
  background: rgba(167,139,250,0.2);
  border-color: rgba(167,139,250,0.4);
}

@media (max-width: 1024px) {
  .kkv-package-layout {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }
  .kkv-package-reverse {
    grid-template-columns: 420px 1fr;
  }
  .kkv-pricing-card {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .kkv-package-layout,
  .kkv-package-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Always show content first on mobile */
  .kkv-package-content {
    order: 1;
  }
  .kkv-package-pricing {
    order: 2;
  }
  .kkv-pricing-card {
    position: relative;
    top: 0;
  }
  .kkv-package-content h2 {
    font-size: 2rem;
  }
}

/* ── Webshop Extensions ──────────────────────────────────────── */
.webshop-extensions {
  padding: 60px 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.extensions-header {
  text-align: center;
  margin-bottom: 40px;
}
.extensions-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.extensions-header h3 svg {
  width: 28px;
  height: 28px;
  color: #a78bfa;
}
.extensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.extension-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}
.extension-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(167,139,250,0.3);
  transform: translateY(-2px);
}
.extension-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.extension-price {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .extensions-grid {
    grid-template-columns: 1fr;
  }
  .extensions-header h3 {
    font-size: 1.5rem;
  }
}

/* ── Why packages ───────────────────────────────────────────── */
.why-packages {
  padding: 0 0 100px;
}
.why-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-pkg-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 22px;
}
.why-pkg-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(234,179,8,0.18), rgba(249,115,22,0.14));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  margin-bottom: 16px;
}
.why-pkg-icon i { width: 20px; height: 20px; }
.why-pkg-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.why-pkg-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

/* ── Additional Services ────────────────────────────────────── */
.additional-services {
  padding: 100px 0;
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.service-list-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.service-list-item:hover {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(52,211,153,0.03));
  transform: translateY(-4px);
}
.service-list-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(52,211,153,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 16px;
}
.service-list-icon i {
  width: 24px;
  height: 24px;
}
.service-list-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.service-list-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-list-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.service-list-link:hover {
  color: #34d399;
}
.service-list-link:hover i {
  transform: translateX(4px);
}
.additional-services-cta {
  text-align: center;
  margin-top: 24px;
}

/* ── Custom offer banner ────────────────────────────────────── */
.custom-offer {
  padding: 0 0 100px;
}
.custom-offer-box {
  background: linear-gradient(135deg, rgba(234,179,8,0.08), rgba(249,115,22,0.06));
  border: 1px solid rgba(234,179,8,0.22);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.custom-offer-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.custom-offer-box h2 span {
  background: linear-gradient(135deg, #eab308, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.custom-offer-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.custom-offer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Packages Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pkg-card.pkg-featured { transform: scale(1); }
  .pkg-card.pkg-featured:hover { transform: translateY(-4px); }
  .why-pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-pkg-grid { grid-template-columns: 1fr; }
  .custom-offer-box { padding: 40px 24px; }
  .custom-offer-actions { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════════
   CSAPATUNK PAGE  ·  body.page-csapat
   Accent: kék–lila  (#667eea → #764ba2)  — főoldal színek
══════════════════════════════════════════════════════════════ */

body.page-csapat .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(102,126,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(118,75,162,0.10) 0%, transparent 50%),
    #0a0a0a;
}

body.page-csapat .page-hero .container {
  text-align: center;
}

body.page-csapat .page-breadcrumb {
  justify-content: center;
}

body.page-csapat .page-hero h1,
body.page-csapat .page-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

body.page-csapat .page-hero-actions {
  justify-content: center;
}
body.page-csapat .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-csapat .page-hero-eyebrow {
  background: rgba(102,126,234,0.12);
  border: 1px solid rgba(102,126,234,0.28);
  color: #a78bfa;
}
body.page-csapat .page-breadcrumb a { color: #a78bfa; }

body.page-csapat .sec-eyebrow {
  background: rgba(102,126,234,0.10);
  border: 1px solid rgba(102,126,234,0.22);
  color: #a78bfa;
}

body.page-csapat .page-hero h1 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.page-csapat .stat-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.page-csapat .btn-cta-primary::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* ── Értékeink section ──────────────────────────────────────── */
.values-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.values-section::after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 300px;
  top: 50%;
  left: -1200px;
  transform: translateY(-50%);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  animation: slideAcross 6s linear infinite, colorCycle 6s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes slideAcross {
  0% {
    left: -1200px;
  }
  100% {
    left: calc(100% + 1200px);
  }
}

@keyframes colorCycle {
  0% {
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.9) 0%, rgba(16, 185, 129, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(16, 185, 129, 0.6);
  }
  20% {
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.9) 0%, rgba(245, 158, 11, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.6);
  }
  40% {
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.9) 0%, rgba(167, 139, 250, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(139, 92, 246, 0.6);
  }
  60% {
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.9) 0%, rgba(96, 165, 250, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.6);
  }
  80% {
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.9) 0%, rgba(244, 114, 182, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(236, 72, 153, 0.6);
  }
  100% {
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.9) 0%, rgba(16, 185, 129, 0.5) 30%, transparent 60%);
    box-shadow: 0 0 100px rgba(16, 185, 129, 0.6);
  }
}

.values-section .sec-header {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

/* Premium Carousel */
.values-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 2000px;
  overflow: visible;
  z-index: 2;
}

.values-carousel::before,
.values-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.values-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.values-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: infiniteScroll 25s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  100% {
    transform: translate(-50%, -50%) translateX(calc(-25% - 1.25rem));
  }
}

.values-section .value-card {
  flex: 0 0 380px;
  width: 380px;
  min-height: 320px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.values-section .value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.values-section .value-card:hover::before {
  opacity: 1;
}

.values-section .value-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(20, 20, 20, 0.8);
  box-shadow:
    0 30px 80px rgba(102, 126, 234, 0.3),
    0 0 0 1px rgba(102, 126, 234, 0.2) inset,
    0 0 50px rgba(102, 126, 234, 0.1) inset;
}

.values-section .value-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border: 1px solid rgba(102, 126, 234, 0.3);
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.values-section .value-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1.25rem;
  padding: 2px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section .value-card:hover .value-icon::after {
  opacity: 1;
}

.values-section .value-icon i {
  width: 32px;
  height: 32px;
  color: #a78bfa;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.5));
}

.values-section .value-card:hover .value-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
}

.values-section .value-card:hover .value-icon i {
  color: #c4b5fd;
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px rgba(196, 181, 253, 0.8));
}

.values-section .value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section .value-card:hover .value-title {
  color: #c4b5fd;
  transform: translateY(-2px);
}

.values-section .value-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section .value-card:hover .value-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Csapattagok section ────────────────────────────────────── */
.team-section {
  padding: 0 0 6rem;
}
.team-section .sec-header { margin-bottom: 3.5rem; }

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  flex: 0 0 calc(33.333% - 1.5rem);
  max-width: 360px;
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 1.5rem;
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border-bottom: 1px solid var(--border);
  z-index: 0;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
}
.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

.team-avatar {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4);
  object-fit: cover;
  display: block;
  border: 4px solid var(--bg-card);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-avatar-bw {
  filter: grayscale(100%);
}

.team-name {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.team-role {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.team-bio {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.team-social {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.team-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-social-link:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* ── Csatlakozz hozzánk section ─────────────────────────────── */
.join-us-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.join-us-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.join-us-box .sec-eyebrow { color: #a78bfa; }

.join-us-box h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}

.join-us-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.join-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 18px 36px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.join-us-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(102, 126, 234, 0.35);
}

/* ── Csapatunk Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-section .value-card { flex: 0 0 320px; width: 320px; }
  .values-carousel { height: 380px; }
}
@media (max-width: 640px) {
  .values-section .value-card { flex: 0 0 280px; width: 280px; padding: 2rem 1.5rem; }
  .values-carousel { height: 350px; }
  .values-section .value-icon { width: 3.5rem; height: 3.5rem; }
  .carousel-track { gap: 1.5rem; }
  .team-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .team-grid {
    gap: 1rem;
  }
  .team-card {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    min-width: 0;
    padding: 3.5rem 0.75rem 2rem;
  }
  .team-avatar {
    width: 90px;
    height: 90px;
  }
  .team-name {
    font-size: 1.05rem;
  }
  .team-role {
    font-size: 0.7rem;
  }
  .team-bio {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  .team-social-link {
    width: 2rem;
    height: 2rem;
  }
  .join-us-box { padding: 2.5rem 1.5rem; }
  .join-us-box h2 { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   REFERENCIÁK  ·  body.page-referenciak
   ESETTANULMÁNY  ·  body.page-esettanulmany
   Accent: kék–lila  (#667eea → #764ba2)
══════════════════════════════════════════════════════════════ */

body.page-referenciak .page-hero,
body.page-esettanulmany .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(102,126,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(118,75,162,0.10) 0%, transparent 50%),
    #0a0a0a;
}
body.page-referenciak .page-hero::before,
body.page-esettanulmany .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-referenciak .page-hero-eyebrow,
body.page-esettanulmany .page-hero-eyebrow { color: #a78bfa; }

body.page-referenciak .page-breadcrumb a,
body.page-esettanulmany .page-breadcrumb a { color: #a78bfa; }

body.page-referenciak .page-hero h1 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.page-referenciak .stat-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.page-referenciak .btn-cta-primary::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

body.page-referenciak .weboldal-hero-visual {
  position: relative;
}

#refHeroAnimationBox {
  position: relative;
  background: transparent !important;
}

#refHeroAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.35) 40%, rgba(102, 126, 234, 0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Filter bar ─────────────────────────────────────────────── */
.ref-filter-bar {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.ref-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ref-filter {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.ref-filter:hover {
  border-color: #667eea;
  color: #a78bfa;
}
.ref-filter.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  font-weight: 600;
}

/* ── Reference grid ─────────────────────────────────────────── */
.ref-grid-section {
  padding: 4rem 0 6rem;
}

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

.ref-card {
  background:
    linear-gradient(160deg, rgba(102,126,234,0.10) 0%, rgba(118,75,162,0.06) 50%, transparent 100%),
    var(--bg-card, #13131f);
  border: 1px solid rgba(102,126,234,0.18);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.22);
  border-color: rgba(102, 126, 234, 0.45);
  background:
    linear-gradient(160deg, rgba(102,126,234,0.16) 0%, rgba(118,75,162,0.10) 50%, transparent 100%),
    var(--bg-card, #13131f);
}

.ref-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.ref-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.ref-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ref-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.ref-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a78bfa;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}

.ref-card-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ref-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.ref-card-client {
  font-size: 0.825rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.ref-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ref-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.ref-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
}

.ref-card-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #a78bfa;
  transition: gap 0.2s ease;
}
.ref-card:hover .ref-card-link { gap: 0.65rem; }
.ref-card-link svg { width: 15px; height: 15px; flex-shrink: 0; }

.ref-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}
.ref-empty h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text-primary); }

/* ── Case Study Hero ────────────────────────────────────────── */
.cs-hero {
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.06) 0%, transparent 100%);
}

.cs-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.cs-meta-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a78bfa;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
}

.cs-meta-client {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.cs-meta-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cs-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cs-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 700px;
}

/* ── Case Study Content Sections ────────────────────────────── */
.cs-section {
  padding: 5rem 0;
}

.cs-section-alt {
  background: var(--bg-secondary);
}

.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cs-split-reverse {
  direction: rtl;
}
.cs-split-reverse > * {
  direction: ltr;
}

.cs-text-block h2 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.35));
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cs-text-block p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  white-space: pre-wrap;
}

.cs-image-block img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: block;
}

.cs-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px dashed rgba(102, 126, 234, 0.25);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(167, 139, 250, 0.5);
  font-size: 2.5rem;
}
.cs-image-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ── Case Study Video ────────────────────────────────────────── */
.cs-video-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.cs-video-section .sec-header {
  margin-bottom: 2.5rem;
}

.cs-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cs-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Referenciak + Esettanulmany Responsive ─────────────────── */
@media (max-width: 1024px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cs-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-split-reverse { direction: ltr; }
  .cs-hero h1 { font-size: 1.75rem; }
}
@media (max-width: 640px) {
  .ref-grid { grid-template-columns: 1fr; }
  .cs-section { padding: 3.5rem 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG OLDAL
   ═══════════════════════════════════════════════════════════════════ */
body.page-blog .page-hero,
body.page-blogpost .page-hero,
body.page-blogpost .bp-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(102,126,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(118,75,162,0.10) 0%, transparent 50%),
    #0a0a0a;
}
body.page-blog .page-hero::before,
body.page-blogpost .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-blog .page-hero-eyebrow,
body.page-blogpost .page-hero-eyebrow {
  background: rgba(102,126,234,0.12);
  border: 1px solid rgba(102,126,234,0.28);
  color: #a78bfa;
}
body.page-blog .page-hero h1 .hl,
body.page-blogpost .page-hero h1 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-blog .page-breadcrumb a,
body.page-blogpost .page-breadcrumb a { color: #a78bfa; }

body.page-blog .btn-cta-primary::before,
body.page-blogpost .btn-cta-primary::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

body.page-blog .weboldal-hero-visual {
  position: relative;
}

#blogHeroAnimationBox {
  position: relative;
  background: transparent !important;
}

#blogHeroAnimationBox::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.35) 40%, rgba(102, 126, 234, 0.15) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Kiemelt blog cikk ── */
.featured-post-section {
  padding: 4rem 0 3rem;
  background: var(--bg-secondary);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.28);
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 2rem;
}

.featured-badge i {
  width: 14px;
  height: 14px;
}

.featured-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-post-grid:hover {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

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

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

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

.featured-post-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.featured-post-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.featured-post-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(102, 126, 234, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(102, 126, 234, 0.25);
}

.featured-post-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.featured-post-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.featured-post-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.featured-post-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.featured-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.featured-post-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.featured-post-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.featured-post-btn i {
  width: 18px;
  height: 18px;
}

/* ── További cikkek címsor ── */
.more-posts-header {
  padding: 3rem 0 2rem;
  background: var(--bg-secondary);
}

.more-posts-header .section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ── Blog kártyák ── */
.blog-grid-section { padding: 4rem 0 5rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(102,126,234,.18);
  border-color: rgba(102,126,234,.35);
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(102,126,234,.15), rgba(118,75,162,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.blog-card-category {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
}
.blog-card-date {
  font-size: .78rem;
  color: var(--text-secondary);
}
.blog-card-author {
  font-size: .78rem;
  color: var(--text-secondary);
}
.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}
.blog-card-excerpt {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .25rem;
}
.blog-tag {
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(102,126,234,.12);
  color: #a78bfa;
  border: 1px solid rgba(167,139,250,.2);
}
.blog-card-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: #a78bfa;
  margin-top: .5rem;
}
.blog-card-link svg { width: 14px; height: 14px; }

/* ── Blog filter bar ── */
.blog-filter-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,.02);
}
.blog-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.blog-filter {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background: rgba(102, 126, 234, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-filter:hover {
  border-color: rgba(167, 139, 250, 0.6);
  background: rgba(167, 139, 250, 0.15);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.blog-filter.active {
  background: linear-gradient(135deg, #a78bfa, #c084fc);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

/* ── Empty state ── */
.blog-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-secondary);
  grid-column: 1/-1;
}
.blog-empty h3 { font-size: 1.5rem; margin-bottom: .5rem; color: var(--text-primary); }

/* ── Blog pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover {
  border-color: rgba(102, 126, 234, 0.4);
  background: rgba(102, 126, 234, 0.08);
  color: #a78bfa;
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.pagination-btn i {
  width: 18px;
  height: 18px;
}

.pagination-dots {
  color: var(--text-secondary);
  padding: 0 0.5rem;
  font-weight: 600;
  user-select: none;
}

/* ── Responsive: Featured Post & Blog Grid ── */
@media (max-width: 968px) {
  .featured-post-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-post-image {
    min-height: 300px;
  }

  .featured-post-content {
    padding: 2rem 1.5rem;
  }

  .featured-post-title {
    font-size: 1.5rem;
  }

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

@media (max-width: 640px) {
  .featured-post-section {
    padding: 3rem 0 2rem;
  }

  .featured-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 1.5rem;
  }

  .featured-post-content {
    padding: 1.5rem 1rem;
  }

  .featured-post-title {
    font-size: 1.25rem;
  }

  .featured-post-excerpt {
    font-size: 0.9rem;
  }

  .featured-post-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-pagination {
    margin-top: 3rem;
  }

  .pagination-btn {
    min-width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOGPOST OLDAL
   ═══════════════════════════════════════════════════════════════════ */
.bp-hero { padding: 7rem 0 3.5rem; }
.bp-hero h1 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.bp-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.bp-category {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
}
.bp-author, .bp-date {
  font-size: .85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.bp-hero-thumb {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 3rem;
}
.bp-excerpt {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 760px;
}

/* ── Blog bejegyzés szekciók ── */
.bp-section { padding: 3.5rem 0; }
.bp-section-alt { background: rgba(255,255,255,.025); }
.bp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bp-split-reverse { direction: rtl; }
.bp-split-reverse > * { direction: ltr; }
.bp-text-block h2 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.35));
  margin-bottom: 1rem;
}
.bp-text-block p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 1rem;
  white-space: pre-line;
}
.bp-image-block img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.bp-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(102,126,234,.12), rgba(118,75,162,.08));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-secondary);
  font-size: .9rem;
  border: 1px dashed rgba(167,139,250,.25);
}
.bp-image-placeholder span:first-child { font-size: 2rem; }

/* ── Videó szekció ── */
.bp-video-section { padding: 3.5rem 0; }
.bp-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

/* ── CTA gombok ── */
.bp-cta-section { padding: 3.5rem 0 4rem; text-align: center; }
.bp-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.bp-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bp-cta-btn:first-child {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}
.bp-cta-btn:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(102,126,234,.35);
}
.bp-cta-btn:not(:first-child) {
  border: 2px solid rgba(167,139,250,.4);
  color: #a78bfa;
}
.bp-cta-btn:not(:first-child):hover {
  border-color: #a78bfa;
  background: rgba(167,139,250,.08);
  transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-split { grid-template-columns: 1fr; gap: 2rem; }
  .bp-split-reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .bp-hero h1 { font-size: 1.35rem; }
  .bp-cta-buttons { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   KAPCSOLAT OLDAL  ·  body.page-kapcsolat
   ═══════════════════════════════════════════════════════════════════ */
body.page-kapcsolat .page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(102,126,234,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(118,75,162,0.10) 0%, transparent 50%),
    #0a0a0a;
}
body.page-kapcsolat .page-hero::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
body.page-kapcsolat .page-hero-eyebrow {
  background: rgba(102,126,234,0.12);
  border: 1px solid rgba(102,126,234,0.28);
  color: #a78bfa;
}
body.page-kapcsolat .page-hero h1 .hl {
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.page-kapcsolat .page-breadcrumb a { color: #a78bfa; }
body.page-kapcsolat .btn-cta-primary::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* ── Kapcsolat layout ── */
.kapcsolat-section { padding: 5rem 0 6rem; }
.kapcsolat-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* ── Info panel ── */
.kapcsolat-info { display: flex; flex-direction: column; gap: 1.5rem; }
.kapcsolat-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.kapcsolat-info-lead {
  color: var(--text-secondary, rgba(255,255,255,.6));
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: .5rem;
}

.kapcsolat-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.05) 100%);
  border: 1px solid rgba(102,126,234,0.18);
  border-radius: 14px;
  transition: border-color .2s, background .2s;
}
.kapcsolat-card:hover {
  border-color: rgba(102,126,234,0.38);
  background: linear-gradient(135deg, rgba(102,126,234,0.14) 0%, rgba(118,75,162,0.09) 100%);
}
.kapcsolat-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.kapcsolat-card-icon svg { width: 20px; height: 20px; }
.kapcsolat-card-body {}
.kapcsolat-card-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #a78bfa;
  margin-bottom: .2rem;
}
.kapcsolat-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: color .2s;
}
a.kapcsolat-card-value:hover { color: #a78bfa; }
.kapcsolat-card-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: .15rem;
}

.kapcsolat-social {
  display: flex;
  gap: .75rem;
  padding-top: .5rem;
}
.kapcsolat-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(102,126,234,0.25);
  background: rgba(102,126,234,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: all .2s;
  text-decoration: none;
}
.kapcsolat-social-link:hover {
  border-color: #667eea;
  background: rgba(102,126,234,0.18);
  color: #fff;
  transform: translateY(-2px);
}
.kapcsolat-social-link svg { width: 18px; height: 18px; }

/* ── Form panel ── */
.kapcsolat-form-box {
  background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.05) 100%);
  border: 1px solid rgba(102,126,234,0.18);
  border-radius: 20px;
  padding: 2.5rem;
}
.kapcsolat-form-box .contact-form { gap: 16px; }
.kapcsolat-form-box .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.kapcsolat-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.kapcsolat-form-title span {
  background: linear-gradient(135deg, #667eea, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kapcsolat-form-box select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all .3s ease;
  appearance: none;
  cursor: pointer;
}
.kapcsolat-form-box select option { background: #1a1a2e; color: white; }
.kapcsolat-form-box select:focus {
  outline: none;
  background: rgba(255,255,255,.08);
  border-color: rgba(102,126,234,.5);
  box-shadow: 0 0 20px rgba(102,126,234,.2);
}
.kapcsolat-form-success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.kapcsolat-form-success svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
  margin-bottom: 1rem;
}
.kapcsolat-form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.kapcsolat-form-success p { color: rgba(255,255,255,.6); }

/* ── Garancia kártyák ── */
.kapcsolat-garanciák { padding: 6rem 0 5rem; }
.garancia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.garancia-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(102,126,234,0.15);
  background: linear-gradient(135deg, rgba(102,126,234,0.06) 0%, rgba(118,75,162,0.04) 100%);
  text-align: center;
  transition: transform .2s, border-color .2s;
}
.garancia-card:hover { transform: translateY(-4px); border-color: rgba(102,126,234,.3); }
.garancia-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1rem;
}
.garancia-icon svg { width: 26px; height: 26px; }
.garancia-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.garancia-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .kapcsolat-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .garancia-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .kapcsolat-form-box { padding: 1.5rem; }
  .kapcsolat-form-box .form-row-2 { grid-template-columns: 1fr; }
  .garancia-grid { grid-template-columns: 1fr; }
}
