/* ============================================================
   VR Marketing – Design System
   Vision and Results Marketing

   Szín paletta a VR Marketing logóból kinyerve:
   Kék (#1A2FA0) + Pink/Magenta (#D91578)
   ============================================================ */

/* Betűtípusok: functions.php-n keresztül töltődnek be (wp_enqueue_style) */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colours – VR Marketing logó hex kódok */
  --color-dark: #0D0D18;
  --color-dark-2: #161626;
  --color-accent: #D91578;
  /* Hot pink/magenta – logo "R" betű #D91578 */
  --color-accent-hover: #BA1268;
  --color-accent-glow: rgba(217, 21, 120, 0.25);
  --color-blue: #1A2FA0;
  /* Royal blue – logo "V" betű #1A2FA0 */
  --color-bg: #F7F7F3;
  --color-bg-alt: #EFEFEB;
  --color-white: #FFFFFF;
  --color-text: #1A1A28;
  --color-text-muted: #68687E;
  --color-border: #E0E0E8;
  --color-border-dark: rgba(255, 255, 255, 0.10);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Font scale – clamp for fluid sizing */
  --fs-hero: clamp(3rem, 8vw, 6.5rem);
  --fs-display: clamp(2.25rem, 5vw, 4.25rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.625rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.625rem);
  --fs-h4: clamp(1.05rem, 1.5vw, 1.3rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 4.5rem;
  --sp-3xl: 6rem;
  --sp-4xl: 9rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-wide: 1400px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 20px 70px rgba(0, 0, 0, 0.22);

  /* Transitions */
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.display-text {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  letter-spacing: -0.035em;
  line-height: 1.0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

p {
  line-height: 1.72;
  color: var(--color-text-muted);
}

blockquote {
  line-height: 1.5;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.container-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section {
  padding: var(--sp-4xl) 0;
}

.section-sm {
  padding: var(--sp-3xl) 0;
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-dark-2 {
  background: var(--color-dark-2);
  color: var(--color-white);
}

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

.section-white {
  background: var(--color-white);
}

.section-dark p,
.section-dark-2 p {
  color: rgba(255, 255, 255, 0.62);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark-2 h1,
.section-dark-2 h2,
.section-dark-2 h3,
.section-dark-2 h4 {
  color: var(--color-white);
}

/* ============================================================
   SECTION HEADING PATTERN
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 6px 14px;
  background: rgba(217, 21, 120, 0.10);
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-md);
}

.section-heading {
  margin-bottom: var(--sp-3xl);
}

.section-heading.center {
  text-align: center;
}

.section-heading.center>p {
  max-width: 580px;
  margin: var(--sp-sm) auto 0;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem 2rem;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--ease);
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--color-accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-lg {
  padding: 1.25rem 2.75rem;
  font-size: 0.9375rem;
}

.btn-xl {
  padding: 1.5rem 3.75rem;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
}

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

.btn-white:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   SCROLL PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-blue));
  z-index: 9999;
  transition: width 0.08s;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(13, 13, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.site-logo img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fallback szöveges logó (ha nincs kép) */
.site-logo .logo-vr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0;
}

.site-logo .logo-text {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav-link {
  position: relative;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 0;
  transition: color var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Mega Menu */
.nav-item-mega {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch; /* teljes header-magasság = nincs hover-gap a szöveg alatt */
}

.mega-menu {
  position: absolute;
  top: 100%;             /* rés nélkül, közvetlenül a header alján */
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), visibility var(--ease);
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  border-radius: var(--radius-sm);
  transition: background var(--ease);
  cursor: pointer;
}

.mega-menu-item:hover {
  background: var(--color-bg);
}

.mega-menu-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.tab-icon {
  font-size: 0.9rem;
  color: inherit;
}

.mega-menu-content h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
  letter-spacing: 0;
}

.mega-menu-content p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* Header CTA */
.header-cta {}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* Mobile nav */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: var(--sp-xl);
    gap: var(--sp-md);
    border-top: 1px solid var(--color-border-dark);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
  }

  .nav-link {
    font-size: var(--fs-sm);
    padding: var(--sp-xs) 0;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: var(--sp-md) 0 0 var(--sp-md);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    grid-template-columns: 1fr;
    background: transparent;
    border-radius: 0;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu-item {
    padding: var(--sp-xs) 0;
  }

  .mega-menu-content h4 {
    color: rgba(255, 255, 255, 0.85);
  }

  .mega-menu-content p {
    color: rgba(255, 255, 255, 0.45);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 55%, rgba(26, 47, 160, 0.20) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(217, 21, 120, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(13, 13, 24, 0.9) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 7px 16px;
  background: rgba(217, 21, 120, 0.12);
  border: 1px solid rgba(217, 21, 120, 0.28);
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-md);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-lg);
}

.hero h1 .accent {
  color: var(--color-accent);
}

.hero h1 .italic {
  font-style: italic;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: bounce-down 2s ease infinite;
  margin-top: -6px;
}

@keyframes bounce-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* ============================================================
   STATS / SOCIAL PROOF
   ============================================================ */
.stats-section {
  background: var(--color-dark-2);
  padding: var(--sp-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-left: 1px solid var(--color-border-dark);
  position: relative;
}

.stat-item:first-child {
  border-left: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-number .accent {
  color: var(--color-accent);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: var(--sp-lg) var(--sp-xl);
    border-left: none;
    border-top: 1px solid var(--color-border-dark);
  }

  .stat-item:first-child {
    border-top: none;
  }

  .stat-number {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
}

/* ============================================================
   SEGMENTS – Kinek tudunk segíteni?
   ============================================================ */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.segment-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--ease-slow);
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}

.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.segment-card:hover::before {
  transform: scaleX(1);
}

.segment-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-white);
  margin: 0 auto var(--sp-lg);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(217, 21, 120, 0.28);
  transition: transform var(--ease), box-shadow var(--ease);
}

.segment-card:hover .segment-icon {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 36px rgba(217, 21, 120, 0.38);
}

.segment-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-text);
  margin-bottom: var(--sp-sm);
}

.segment-card p {
  font-size: var(--fs-body);
  margin-bottom: var(--sp-lg);
  color: var(--color-text-muted);
}

/* ============================================================
   PROCESS FLOW
   ============================================================ */
.process-section {
  background: var(--color-dark);
  overflow: hidden;
}

.process-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl);
}

.process-intro-text {
  max-width: 540px;
}

.process-intro-text h2 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-sm);
}

.process-intro-text p {
  color: rgba(255, 255, 255, 0.58);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

/* Horizontal connector */
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(10% + 38px);
  right: calc(10% + 38px);
  height: 2px;
  background: linear-gradient(90deg,
      var(--color-accent) 0%,
      rgba(232, 52, 30, 0.4) 50%,
      var(--color-blue) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-md) var(--sp-xl);
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 6px var(--color-dark),
    0 0 0 8px rgba(232, 52, 30, 0.2),
    var(--shadow-lg);
  transition: transform var(--ease), box-shadow var(--ease);
}

.process-step:hover .process-step-num {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px var(--color-dark),
    0 0 0 8px rgba(232, 52, 30, 0.35),
    var(--shadow-xl);
}

.process-step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-xs);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.55;
}

/* ============================================================
   PHILOSOPHY – Miért VR Marketing?
   ============================================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.philosophy-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-xl);
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all var(--ease);
}

.philosophy-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.philosophy-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.18;
  line-height: 1;
  flex-shrink: 0;
  width: 55px;
  margin-top: -8px;
}

.philosophy-content h3 {
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 700;
}

.philosophy-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.philosophy-quote-block {
  grid-column: 1 / -1;
  padding: var(--sp-2xl) var(--sp-3xl);
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--color-accent);
  opacity: 0.08;
  line-height: 1;
}

.philosophy-quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--color-white);
  font-style: italic;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

/* ============================================================
   VISION SCAN CTA
   ============================================================ */
.vision-scan-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, #8A0E54 100%);
  padding: var(--sp-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-scan-section::before {
  content: 'VISION SCAN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 18rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.vision-scan-content {
  position: relative;
  z-index: 1;
}

.vision-scan-section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin-bottom: var(--sp-md);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.vision-scan-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 620px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.7;
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners-section {
  background: var(--color-white);
  padding: var(--sp-3xl) 0;
}

.partners-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-2xl);
}

.partners-row {
  display: flex;
  gap: var(--sp-2xl);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.45;
  transition: opacity var(--ease);
}

.partners-row:hover {
  opacity: 0.7;
}

.partner-ph {
  height: 36px;
  width: 110px;
  background: var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* ============================================================
   BRIDGE QUOTE
   ============================================================ */
.bridge-quote {
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--color-dark-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bridge-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg);
}

.bridge-quote h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.bridge-quote h2 em {
  color: var(--color-accent);
  font-style: normal;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  background: var(--color-dark);
  padding: calc(var(--header-h) + var(--sp-3xl)) 0 var(--sp-3xl);
  text-align: center;
}

.services-hero h1 {
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: var(--sp-md);
}

.services-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Anchor spanok (hash navigáció) */
.services-anchor {
  display: block;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

/* Service Tabs */
.services-tabs-wrap {
  background: var(--color-bg-alt);
  padding: var(--sp-sm);
  border-radius: var(--radius);
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-3xl);
  flex-wrap: wrap;
}

.service-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 4px);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--ease);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-tab-btn.active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.service-tab-btn .tab-icon {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .services-tabs-wrap {
    flex-direction: column;
    gap: 4px;
    padding: var(--sp-xs);
  }

  .service-tab-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
    justify-content: flex-start;
    font-size: var(--fs-sm);
    text-align: left;
  }
}

/* Service Panel */
.service-panel {
  display: none;
  animation: panel-in 0.35s ease;
}

.service-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-panel-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-md);
  color: var(--color-text);
}

.service-panel-text>p {
  font-size: 1.0625rem;
  margin-bottom: var(--sp-lg);
  line-height: 1.72;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-xl);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
}

.service-feature-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.service-panel-visual {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.service-panel-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(232, 52, 30, 0.18), transparent),
    radial-gradient(ellipse 60% 60% at 70% 70%, rgba(32, 71, 197, 0.14), transparent);
}

.service-panel-visual-label {
  position: relative;
  z-index: 1;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Service panel visual FA icon */
.service-visual-icon {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(217, 21, 120, 0.35);
}

.service-ctas {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2xl);
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-card-header {
  background: linear-gradient(160deg, var(--color-dark) 60%, #1a1a2e 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: var(--sp-2xl) var(--sp-xl) 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 140px;
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  border: 5px solid var(--color-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

.team-meta {
  text-align: center;
  padding-top: 96px;
  margin-bottom: var(--sp-lg);
}

.team-meta h3 {
  color: var(--color-text);
  font-size: var(--fs-h3);
  margin-bottom: 6px;
}

.team-meta span {
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.team-card-body {
  padding: 0 var(--sp-xl) var(--sp-xl);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.team-card-body p {
  font-size: 0.9375rem;
  line-height: 1.78;
  margin-bottom: var(--sp-sm);
  color: var(--color-text-muted);
}

.team-card-body p:last-child {
  margin-bottom: 0;
}

.team-quote-text {
  font-style: italic;
  font-weight: 600;
  color: var(--color-accent) !important;
  padding: var(--sp-md) var(--sp-md);
  border-left: 3px solid var(--color-accent);
  background: rgba(217, 21, 120, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================================
   REFERENCES PAGE
   ============================================================ */
.ref-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.ref-logo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  transition: all var(--ease);
}

.ref-logo-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: var(--sp-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 22px);
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--sp-xl);
  border: 1px solid var(--color-border);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.testimonial-slide:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-md);
}

.testimonial-quote {
  font-style: italic;
  font-size: var(--fs-sm);
  line-height: 1.72;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-lg);
}

.testimonial-quote::before {
  content: '\201E';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 2px;
}

.testimonial-author-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-author-role {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  font-size: 0.875rem;
}

.slider-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  padding: 0;
}

.slider-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .testimonial-slide {
    flex: 0 0 88%;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-3xl);
  align-items: start;
}

/* ---- Kapcsolat oldal – csapat portré kártya ---- */
.contact-team-photo-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.contact-team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-team-photo-card:hover .contact-team-photo {
  transform: scale(1.04);
}

.contact-team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  background: linear-gradient(to top,
      rgba(13, 13, 24, 0.88) 0%,
      rgba(13, 13, 24, 0.55) 55%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-team-names {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.contact-team-separator {
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
}

.contact-team-role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}



.contact-info-block h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-sm);
}

.contact-info-block>p {
  margin-bottom: var(--sp-2xl);
  font-size: 1.0625rem;
}

/* Kompakt kontakt info sáv a fotó alatt */
.contact-photo-info-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.contact-photo-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--ease);
  white-space: nowrap;
}

a.contact-photo-info-item:hover {
  color: var(--color-accent);
}

.contact-photo-info-item>i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(217, 21, 120, 0.08);
  border: 1px solid rgba(217, 21, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-photo-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.contact-photo-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217, 21, 120, 0.08);
  border: 1px solid rgba(217, 21, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-accent);
  transition: all var(--ease);
  text-decoration: none;
}

.contact-photo-social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(217, 21, 120, 0.08);
  border: 1px solid rgba(217, 21, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: color var(--ease);
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

/* Animated email */
.email-animated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--ease);
}

.email-animated:hover {
  color: var(--color-accent);
}

.email-animated .ea-text {
  position: relative;
  overflow: hidden;
}

.email-animated .ea-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  white-space: nowrap;
}

.email-animated:hover .ea-text::after {
  transform: translateY(0);
}

.email-animated:hover .ea-real {
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.ea-real {
  display: inline-block;
  transition: transform 0.35s ease;
}

/* Contact form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(217, 21, 120, 0.10);
  background: var(--color-white);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-submit-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 0.9375rem;
  margin-top: var(--sp-sm);
}

/* ============================================================
   POST-SUBMIT FULL WIDTH SECTION
   ============================================================ */
.post-submit-section {
  background: var(--color-dark);
  padding: var(--sp-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-submit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(26, 47, 160, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(217, 21, 120, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.post-submit-section .section-heading h2 {
  color: var(--color-white);
}

.post-submit-section .section-heading p {
  color: rgba(255, 255, 255, 0.55);
}

.post-submit-section .section-heading {
  margin-bottom: var(--sp-md);
}

.post-submit-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  position: relative;
  z-index: 1;
  margin-top: var(--sp-lg);
}


.post-submit-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--ease-slow);
}

.post-submit-step-card:hover {
  background: rgba(217, 21, 120, 0.07);
  border-color: rgba(217, 21, 120, 0.30);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(217, 21, 120, 0.12);
}

.post-step-icon-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 auto var(--sp-lg);
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 6px var(--color-dark),
    0 0 0 8px rgba(217, 21, 120, 0.20),
    0 12px 36px rgba(217, 21, 120, 0.25);
}

.post-submit-step-card h3 {
  color: var(--color-white);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-sm);
  font-family: var(--font-display);
}

.post-submit-step-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.post-submit-step-card p strong {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 700;
}

@media (max-width: 768px) {
  .post-submit-steps-grid {
    grid-template-columns: 1fr;
  }

  .post-submit-steps-grid::before {
    display: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--sp-3xl) 0 var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.site-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 35%, var(--color-blue) 65%, transparent 100%);
}

/* ============================================================
   404 HIBAOLDAL
   ============================================================ */
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--sp-4xl) 0;
}

.error-404-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(217, 21, 120, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(26, 47, 160, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.error-404-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.error-404-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
  line-height: 1;
}

.error-digit {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.error-digit-4 {
  color: var(--color-accent);
}

.error-digit-0 {
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.15);
  text-stroke: 3px rgba(255, 255, 255, 0.15);
  position: relative;
}

.error-digit-0::after {
  content: '0';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent), var(--color-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
}

.error-digit-4b {
  color: var(--color-blue);
}

.error-404-section .section-label {
  margin: 0 auto var(--sp-sm);
}

.error-404-section h1 {
  color: var(--color-white);
  margin-bottom: var(--sp-md);
}

.error-404-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto var(--sp-xl);
}

.error-404-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.error-404-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-xl);
}

.error-404-nav-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}

.error-404-links {
  display: flex;
  gap: var(--sp-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--ease);
}

.error-404-links a:hover {
  color: var(--color-accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--color-border-dark);
  margin-bottom: var(--sp-sm);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--sp-sm);
}

.footer-brand .footer-logo img {
  height: 249px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fallback szöveges footer logó */
.footer-logo .logo-vr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-accent);
  border-radius: 7px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: var(--sp-lg);
  max-width: 280px;
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--ease);
}

.footer-nav a:hover {
  color: var(--color-white);
}

/* Animated email in footer */
.footer-email-wrap {
  margin-bottom: var(--sp-md);
}

.footer-email-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.footer-email-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.footer-email-animated .fea-icon {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.footer-email-animated .fea-text {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.footer-email-animated .fea-text .fea-chars {
  display: inline-flex;
}

.footer-email-animated .fea-text .char {
  display: inline-block;
  transition: transform 0.35s ease, color 0.35s ease;
  transition-delay: calc(var(--i) * 0.02s);
}

.footer-email-animated:hover .char {
  transform: translateY(-3px);
  color: var(--color-accent);
}

/* Rotating social */

.footer-follow-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.social-rotator-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.social-rotator {
  position: relative;
  width: 48px;
  height: 48px;
}

.social-rot-icon {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  opacity: 0;
  transform: scale(0.7) rotate(-20deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
  cursor: pointer;
}

.social-rot-icon.active {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.social-rot-icon:hover {
  background: var(--color-accent);
}

.social-rot-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  min-width: 80px;
}

.social-static {
  display: flex;
  gap: var(--sp-sm);
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--ease);
}

.social-icon-link:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  padding-top: var(--sp-sm);
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: var(--sp-md);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--ease);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-made-by {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.22);
}

.footer-made-by a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  transition: color var(--ease);
}

.footer-made-by a:hover {
  color: var(--color-accent);
}

/* ============================================================
   PAGE HERO (generic inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-dark);
  padding: calc(var(--header-h) + var(--sp-3xl)) 0 var(--sp-3xl);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: var(--sp-md);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.125rem;
  max-width: 580px;
}

/* ============================================================
   COMING SOON (Academy / Karrier)
   ============================================================ */
.coming-soon-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-md);
}

.coming-soon-section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-md);
}

.coming-soon-section p {
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto var(--sp-xl);
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer: brand teljes szélességű, alatta 4 oszlop 2×2-ben */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .process-steps::before {
    display: none;
  }

  .service-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }

  .segments-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-quote-block {
    padding: var(--sp-xl) var(--sp-lg);
  }

  .ref-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .process-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer mobilon: 1 oszlop, minden egymás alá */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Logó mérete mobilon */
  .footer-brand .footer-logo img {
    height: 144px;
  }

  /* Social rotator ne legyen min-width kötött */
  .social-rot-name {
    min-width: unset;
  }

  /* Nav linkek biztonsági tördelése */
  .footer-nav a,
  .footer-col-title {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Kapcsolat gomb teljes szélesség */
  .footer-nav .btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* Footer bottom egymás alá */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-xs);
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4rem;
    --sp-4xl: 6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ref-logos-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: var(--sp-xl);
  }

  /* Gombok egységes mérete mobilon */
  .btn-lg,
  .btn-xl {
    padding: 1rem 1.75rem;
    font-size: 0.875rem;
    letter-spacing: 0.07em;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
  }

  /* Vision Scan szekció gombja ne lógjon ki */
  .vision-scan-section .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  /* Szegmens kártyák gombjai teljes szélesség */
  .segment-card .btn {
    width: 100%;
  }

  /* Footer kis mobilon */
  .footer-brand .footer-logo img {
    height: 120px;
  }

  .footer-top {
    gap: var(--sp-md);
  }

  .site-footer {
    padding-left: var(--sp-sm);
    padding-right: var(--sp-sm);
  }
}

/* ============================================================
   PARTNER LOGÓK SZEKCIÓ (főoldal + referenciák – egységes kártyás stílus)
   ============================================================ */

/* --- Szekció keret (főoldal) --- */
.partners-section {
  padding: var(--sp-3xl) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-xl);
}

/* --- Közös logó grid (főoldal .partners-row + referenciák .ref-logos-grid) --- */
.partners-row,
.ref-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-md);
  align-items: stretch;
}

/* --- Közös kártyadoboz --- */
.partners-row>img,
.ref-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-lg) var(--sp-md);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  min-height: 110px;
}

.ref-logo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(217, 21, 120, 0.25);
}

/* --- A főoldalon a kép IS kapja meg a kártyastílust --- */

.partner-logo {
  display: block;
  height: 57px !important;
  width: auto !important;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--ease), transform var(--ease);
  margin: 0 auto;
}

/* Főoldalon az img maga IS tartalmazza a kártyastílust */
.partners-row>img.partner-logo {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-lg) var(--sp-md);
  min-height: 110px;
  box-sizing: border-box;
  width: 100% !important;
  height: auto !important;
  max-height: 110px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease), filter var(--ease);
}

.partners-row>img.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(217, 21, 120, 0.25);
  filter: grayscale(0%) opacity(1);
}

/* --- Referenciák oldalon a kép mérete --- */
.ref-logo-card img,
.ref-logo-img {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--ease);
  margin: 0 auto;
}

.ref-logo-card:hover img,
.ref-logo-card:hover .ref-logo-img {
  filter: grayscale(0%) opacity(1);
}

/* --- Reszponzív – tablet (768px) --- */
@media (max-width: 768px) {
  .partners-section {
    padding: var(--sp-2xl) 0;
  }

  .ref-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }

  .ref-logo-card {
    min-height: 90px;
    padding: var(--sp-md) var(--sp-sm);
    border-radius: var(--radius-sm);
  }

  .ref-logo-card img,
  .ref-logo-img {
    max-height: 56px;
    max-width: 120px;
  }
}

/* --- Reszponzív – mobil (480px) --- */
@media (max-width: 480px) {
  .ref-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ref-logo-card {
    min-height: 80px;
    padding: 14px 10px;
  }

  .ref-logo-card img,
  .ref-logo-img {
    max-height: 46px;
    max-width: 100px;
  }
}

/* --- Reszponzív – kis mobil (360px) --- */
@media (max-width: 360px) {
  .ref-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .ref-logo-card {
    min-height: 70px;
    padding: 12px 8px;
  }

  .ref-logo-card img,
  .ref-logo-img {
    max-height: 40px;
    max-width: 88px;
  }
}

/* Touch eszközökön (hover nem él) – logók ne legyenek annyira elmosva */
@media (hover: none) {

  .ref-logo-card img,
  .ref-logo-img {
    filter: grayscale(40%) opacity(0.75);
  }
}

/* ============================================================
   FLUENT FORMS – egyedi stílusok
   ============================================================ */

/* GDPR / elfogadó checkbox linkje legyen hiperhivatkozás */
.fluentform .ff-el-form-check a,
.fluentform .ff-el-group a,
.fluentform .ff-checkable-gutters a,
.fluentform p a,
.fluentform label a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(217, 21, 120, 0.4);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color var(--ease), text-decoration-color var(--ease);
}

.fluentform .ff-el-form-check a:hover,
.fluentform .ff-el-group a:hover,
.fluentform .ff-checkable-gutters a:hover,
.fluentform p a:hover,
.fluentform label a:hover {
  color: var(--color-blue);
  text-decoration-color: rgba(26, 47, 160, 0.4);
}