* {
  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-block;
}

/* 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;
}

/* 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;
}

@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 {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.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;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(176, 48, 96, 0.6) 0%,
    rgba(176, 48, 96, 0.3) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  transform: translateX(-50%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

@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(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero h1 .highlight,
.why-choose-us .highlight,
.services .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 {
  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 Section - Fixed Marquee */
.clients {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #764ba2, #667eea);
  width: 100%;
}

.clients h3 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  opacity: 0.6;
}

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

.client-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  /* Dupla hosszúság a smooth loophoz */
  animation: marquee 40s linear infinite;
  width: max-content;
}

/* Módosított keyframe - teljes duplikált tartalom mozgatása */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    /* A teljes első set szélességének megfelelő mozgatás */
    transform: translateX(-50%);
  }
}

.client-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  /* Biztosítjuk hogy minden elem ugyanakkora helyet foglal */
  min-width: 200px;
  justify-content: center;
}

.client-logo:hover {
  color: white;
  transform: scale(1.1);
}

.client-logo img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%) brightness(0.4);
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* 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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

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

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(102, 126, 234, 0.1) 45deg,
    transparent 90deg,
    rgba(118, 75, 162, 0.1) 135deg,
    transparent 180deg
  );
  opacity: 0;
  animation: rotate-slow 20s linear infinite;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

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

.service-card:hover::after {
  opacity: 0.3;
}

.service-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 15px 24px;
  border-radius: 0 0 20px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 30px -30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  width: calc(100% + 60px);
  text-align: center;
}

.service-tag::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;
}

.service-card:hover .service-tag::before {
  left: 100%;
}

.service-card:hover .service-tag {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.service-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  flex-grow: 1;
}

.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: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.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 {
  transform: translateX(4px);
}

/* Case Study Section - Modernizált */
.case-study {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 20, 0.98) 0%,
    rgba(25, 25, 40, 0.95) 50%,
    rgba(15, 15, 25, 0.98) 100%
  );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.case-study::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(102, 126, 234, 0.1) 45deg,
    transparent 90deg,
    rgba(118, 75, 162, 0.1) 180deg,
    transparent 270deg,
    rgba(102, 126, 234, 0.05) 360deg
  );
  animation: rotate-slow 30s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

.case-study::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: float-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.6;
  }
}

.case-study .container {
  position: relative;
  z-index: 2;
}

.case-study .section-title {
  color: white;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.case-study .section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
  transform: translateX(-50%);
}

.case-study-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 120px auto;
  position: relative;
}

.case-study-container:last-child {
  margin-bottom: 0;
}

.case-study-container.reverse {
  flex-direction: row-reverse;
}

.case-study-left {
  flex: 1;
  position: relative;
}

.case-study-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.6) 0%,
    rgba(118, 75, 162, 0.5) 25%,
    rgba(240, 147, 251, 0.4) 50%,
    rgba(102, 126, 234, 0.3) 75%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(40px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: float-glow-vivid 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes float-glow-vivid {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: translate(-45%, -55%) scale(1.1) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -45%) scale(1.2) rotate(180deg);
    opacity: 0.9;
  }
  75% {
    transform: translate(-55%, -50%) scale(1.1) rotate(270deg);
    opacity: 1;
  }
}

.case-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(102, 126, 234, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.03) 0%,
    rgba(118, 75, 162, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.25),
    0 24px 48px rgba(102, 126, 234, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.case-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-image {
  flex-shrink: 0;
  position: relative;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.profile-image img {
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.speech-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 32px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent rgba(255, 255, 255, 0.08) transparent;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 34px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent rgba(255, 255, 255, 0.05) transparent;
}

.speech-bubble:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.2);
}

.speech-bubble p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  font-style: italic;
  position: relative;
}

.speech-bubble p::before {
  content: "";
  font-size: 2.5rem;
  color: rgba(102, 126, 234, 0.3);
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: Georgia, serif;
}

.speech-bubble p::after {
  content: "
    "";
  font-size: 2.5rem;
  color: rgba(102, 126, 234, 0.3);
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: Georgia, serif;
}

.case-study-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.case-image {
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 50%,
    rgba(118, 75, 162, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.case-image:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.case-image:hover::before {
  opacity: 1;
}

.case-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.case-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;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.case-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;
}

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

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

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

.case-button:hover::after {
  transform: translateX(4px);
}

/* Mobile responsive for Case Study Section */
@media (max-width: 968px) {
  .case-study {
    padding: 60px 0;
  }

  .case-study-container {
    flex-direction: column !important;
    gap: 50px;
    padding: 0 12px;
    margin-bottom: 80px;
  }

  .case-study-container.reverse {
    flex-direction: column !important;
  }

  /* Mobilon minden esetben tartalom fent, kép lent */
  .case-study-left {
    order: 1;
  }

  .case-study-right {
    order: 2;
  }

  .case-card {
    padding: 30px;
  }

  .case-profile {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .speech-bubble {
    padding: 24px;
  }

  .speech-bubble::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .speech-bubble::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .speech-bubble p {
    font-size: 1rem;
  }

  .speech-bubble p::before,
  .speech-bubble p::after {
    display: none;
  }
}

/* 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: 50px;
  position: relative;
}

.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;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-text:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.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: 30px;
  height: 2px;
  background: linear-gradient(135deg, #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: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.12) 0%,
    rgba(118, 75, 162, 0.08) 30%,
    transparent 60%
  );
  border-radius: 50%;
  filter: blur(50px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: float-glow 6s ease-in-out infinite;
  z-index: -1;
}

.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: center;
    padding: 0 12px;
  }

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

  .why-content .why-text {
    order: 1;
  }

  .why-content .why-image {
    order: 2;
  }

  .why-text {
    padding: 20px;
  }

  .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;
  }
}

/* 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 {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.animation-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 20px;
}

.animation-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(240, 147, 251, 0.2) 0%,
    rgba(255, 105, 180, 0.15) 20%,
    rgba(102, 126, 234, 0.08) 40%,
    rgba(240, 147, 251, 0.1) 60%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(35px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: float-glow-vivid 8s ease-in-out infinite;
  z-index: -1;
}

.steps-container {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.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 {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .animation-container {
    width: 100%;
    order: 1;
  }

  .steps-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    order: 2;
  }

  .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(2rem, 5vw, 4rem);
  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: 1.1rem;
}

.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: 24px;
  font-weight: 700;
  font-size: 1.2rem;
  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: 12px;
}

.footer-section a,
.footer-section span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.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.9rem;
  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.9rem;
  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: 30px;
  }

  .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: 30px;
  }

  .service-card {
    padding: 0 20px 30px 20px;
  }

  .service-tag {
    margin: 0 0 25px -20px;
    width: calc(100% + 40px);
  }

  .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;
  }
}