/*
Theme Name: WEOCOMM Child Theme
Theme URI: https://weocomm.hu
Description: Premium Custom Child Theme for WEOCOMM
Author: WEOCOMM
Template: hello-elementor
Version: 26.0.0
*/
/* ==========================================================================
   WEOCOMM Weo2 - Halston Architecture-Inspired Premium Design System
   Theme: Obsidian & Champagne Gold (Permanently Dark Luxury)
   Typography: JetBrains Mono (CDN)
   ========================================================================== */

/* Import JetBrains Mono */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800&display=swap');

/* ---- DESIGN TOKENS & SYSTEM VARIABLES ---- */
:root {
  --bg-primary: #0C0C0E;
  --bg-secondary: #121214;
  --bg-tertiary: #19191C;
  --bg-overlay: rgba(12, 12, 14, 0.72);
  --bg-preloader: #0C0C0E;

  --text-primary: #FAF9F6;
  --text-secondary: #A0A0A5;
  --text-muted: #626269;

  --color-accent: #C5A059;
  --color-accent-light: #E0C185;
  --color-accent-dark: #8E7036;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(197, 160, 89, 0.35);
  --border-color-light: rgba(255, 255, 255, 0.03);
  --border-color-gold: rgba(197, 160, 89, 0.15);

  --logo-color-weo: #FAF9F6;
  --logo-color-comm: #FFFFFF;
  --color-placeholder: rgba(250, 249, 246, 0.75);

  --font-primary: 'JetBrains Mono', monospace;

  --font-size--200: 0.75rem;
  --font-size--300: 0.875rem;
  --font-size--400: 1.05rem;
  --font-size--500: 1.35rem;
  --font-size--600: 1.85rem;
  --font-size--800: 2.85rem;
  --font-size--900: 4rem;
  --font-size-display--100: 5.5rem;
  --font-size-display--200: 7.5rem;

  --line-height--200: 1.05;
  --line-height--300: 1.25;
  --line-height--400: 1.5;
  --line-height--500: 1.7;

  --space-100: 0.25rem;
  --space-200: 0.5rem;
  --space-300: 1.25rem;
  --space-400: 1.75rem;
  --space-500: 2.75rem;
  --space-600: 4rem;
  --space-700: 5.5rem;
  --space-800: 9rem;
  --space-900: 14rem;
  
  --space-grid-gap: 0px; /* Seamless grid alignment */
  --space-grid-padding: 3rem;
  --border-radius: 0px; /* Rectilinear design */
}

@media only screen and (max-width: 1023px) {
  :root {
    --space-grid-padding: 1.5rem;
    --font-size-display--100: 3rem;
    --font-size--900: 2.5rem;
    --font-size--800: 2.1rem;
    --font-size--600: 1.5rem;
    --space-800: 5.5rem;
    --space-900: 8rem;
  }
}

/* ---- RESET & GLOBAL STYLES ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: initial;
}

@media screen and (min-width: 1440px) {
  html { font-size: calc(16px + 6 * (100vw - 1440px) / 1120); }
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  line-height: var(--line-height--400);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* ---- ELEMENTOR THEME KIT & GLOBAL STYLES ISOLATION RESET ---- */
.elementor-widget-weo2_custom_widget,
.elementor-widget-weo2_custom_widget * {
  box-sizing: border-box;
}

.elementor-widget-weo2_custom_widget button,
.elementor-widget-weo2_custom_widget input[type="button"],
.elementor-widget-weo2_custom_widget input[type="submit"],
.elementor-widget-weo2_custom_widget a {
  -webkit-appearance: none;
  appearance: none;
}

.elementor-widget-weo2_custom_widget button:focus,
.elementor-widget-weo2_custom_widget button:active,
.elementor-widget-weo2_custom_widget button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-preloader);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.preloader.--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.preloader__logo {
  font-size: var(--font-size--600);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.preloader__logo span {
  font-weight: 300;
  color: var(--color-accent);
}

.preloader__bar-wrap {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  position: relative;
  overflow: hidden;
}

.preloader__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.1, 0.8, 0.1, 1);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-grid-padding);
  background: rgba(12, 12, 14, 0.6);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-link svg {
  display: block;
  overflow: visible;
}

.logo-link svg text {
  fill: var(--text-primary);
}

.logo-text-weo {
  fill: #FAF9F6 !important;
  font-weight: 700;
}

.logo-text-comm {
  fill: #FFFFFF !important;
  font-weight: 300;
}

.logo-text-sub {
  fill: rgba(250, 249, 246, 0.75) !important;
  font-weight: 500;
}

.brand-logo-image {
  height: 24px;
  width: auto;
}

.brand-name-text {
  font-size: var(--font-size--400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.brand-slogan {
  font-size: var(--font-size--200);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--border-color);
  padding-left: 1.5rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-main-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-size: var(--font-size--300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  opacity: 0.95;
  font-weight: 600;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size--300);
}

.header__lang a {
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.header__lang a.--active {
  opacity: 1;
  color: var(--color-accent);
  font-weight: 700;
}

.header__lang-sep {
  opacity: 0.3;
}

.burger-menu {
  display: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size--200);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.burger-lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-menu-line, .burger-menu-line-2 {
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, width 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .brand-slogan {
    display: none;
  }
  .nav-main-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    border-top: 1px solid var(--border-color);
  }
  .nav-main-links.--open {
    transform: translateX(0);
  }
  .burger-menu {
    display: flex;
  }
}

/* ==========================================================================
   HERO DISPLAY (Halston-Style video hero)
   ========================================================================== */
.hero-display {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-display-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-display-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-display-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}

.hero-display-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.4) 0%, rgba(12, 12, 14, 0.85) 100%);
  z-index: 2;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-display-layout {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--space-grid-padding) 4rem var(--space-grid-padding);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: end;
}

.hero-display-heading {
  grid-column: span 8;
}

.heading-bold.is-large {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.heading-bold.is-large span {
  color: var(--color-accent);
}

.hero-display-details {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-left: 1px solid var(--border-color);
  padding-left: 2.5rem;
}

.hero-display-services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-display-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-primary);
  font-size: var(--font-size--300);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-display-service-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.display-link-icon {
  width: 12px;
  height: 12px;
  filter: opacity(0.5);
  transition: filter 0.3s ease;
}

.hero-display-service-link:hover .display-link-icon {
  filter: opacity(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.hero-display-action {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-display-recognition {
  font-size: var(--font-size--200);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: var(--line-height--300);
}

.label-text.is-small {
  font-size: var(--font-size--200);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media only screen and (max-width: 1023px) {
  .hero-display-layout {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }
  .hero-display-heading {
    grid-column: span 1;
  }
  .hero-display-details {
    grid-column: span 1;
    border-left: none;
    padding-left: 0;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   ACHIEVEMENTS ROW
   ========================================================================== */
.section-achievements {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.achievements-layout {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 9.5fr;
  align-items: stretch;
}

.achievement-col {
  padding: 3rem var(--space-grid-padding);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.achievements-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.achievement-item {
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.achievement-item:last-child {
  border-right: none;
}

.achievement-text {
  font-size: var(--font-size--900);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.achievement-text.is-2nd {
  font-size: var(--font-size--200);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.achievement-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.6s ease;
}

.achievement-item:hover .achievement-line {
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  .achievements-layout {
    grid-template-columns: 1fr;
  }
  .achievement-col {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
  }
  .achievements-wrap {
    grid-template-columns: 1fr;
  }
  .achievement-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
  }
  .achievement-item:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   ABOUT GRID COMPONENT (Split Grid Parallax)
   ========================================================================== */
.about-grid-component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.about-content-block {
  padding: 7rem var(--space-grid-padding);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-color);
}

.about-grid-component.w-variant-655221cd-c2b4-a201-9c98-90d65aa05e07 .about-content-block {
  order: 2;
  border-right: none;
  border-left: 1px solid var(--border-color);
}

.about-content-wrap {
  max-width: 680px;
}

.heading.is-medium {
  font-size: var(--font-size--500);
  font-weight: 300;
  line-height: var(--line-height--500);
  color: var(--text-secondary);
}

.heading.is-medium strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-content-action {
  margin-top: 3.5rem;
}

.about-image-block {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.parallax-wrap {
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  overflow: hidden;
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05) grayscale(15%);
}

@media only screen and (max-width: 1023px) {
  .about-grid-component {
    grid-template-columns: 1fr;
  }
  .about-content-block {
    padding: 4rem 1.5rem;
    border-right: none;
  }
  .about-grid-component.w-variant-655221cd-c2b4-a201-9c98-90d65aa05e07 .about-content-block {
    order: unset;
    border-left: none;
  }
  .about-image-block {
    min-height: 350px;
  }
}

/* ==========================================================================
   TYPO TITLE SECTION (Considered Crafted Lasting)
   ========================================================================== */
.section-typo-titles {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.typo-title-block {
  display: flex;
  align-items: center;
  padding: 3rem var(--space-grid-padding);
  border-bottom: 1px solid var(--border-color);
  justify-content: space-between;
  gap: 3rem;
  overflow: hidden; /* Prevent horizontal scrollbars during scroll slide */
  position: relative;
}

.typo-title-block:last-child {
  border-bottom: none;
}

.typo-title-image {
  width: 520px !important;
  max-width: 42vw !important;
  height: 280px !important;
  overflow: hidden !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.typo-title-block:hover .typo-title-image {
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.18);
}

.typo-title-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

.typo-title-block:hover .typo-title-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1);
}

.heading.is-typo-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-display--100);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.heading-typo-text {
  font-size: var(--font-size--400);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

@media only screen and (max-width: 1023px) {
  .typo-title-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .typo-title-image {
    width: 100%;
    height: 150px;
  }
  .heading.is-typo-title {
    font-size: 2.5rem;
  }
}



/* ==========================================================================
   QUOTE SECTION
   ========================================================================== */
.section-quote {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.quote-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quote-image {
  border-right: 1px solid var(--border-color);
  position: relative;
  min-height: 480px;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.65);
}

.quote-content {
  padding: 4rem var(--space-grid-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.methodology-steps-wrap {
  margin-bottom: 2rem;
}

.methodology-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.methodology-steps-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-size: var(--font-size--400);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.methodology-num {
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--font-primary);
}

.quote-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
}

.quote-icon {
  width: 100%;
  height: auto;
  filter: sepia(1) saturate(5) hue-rotate(15deg) brightness(0.8);
}

.testimonial-text {
  font-size: var(--font-size--500);
  line-height: var(--line-height--500);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.testimonial-text span {
  color: var(--text-primary);
}

.quote-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.quote-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
}

.paragraph.is-large {
  font-size: var(--font-size--300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.opacity-70 {
  opacity: 0.7;
}

@media only screen and (max-width: 1023px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-image {
    min-height: 350px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .quote-content {
    padding: 4rem 1.5rem;
  }
}

/* ==========================================================================
   SECTION REVEAL (Sticky split scroll layout)
   ========================================================================== */
.section-reveal {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  width: 100%;
}

.section-reveal-container {
  position: relative;
  width: 100%;
  height: 300vh; /* 3 screens high scroll track */
}

.section-reveal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.section-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.section-reveal-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-reveal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1) grayscale(15%);
}

.section-reveal-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.section-reveal-content-block {
  height: 45vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.heading-reveal {
  font-family: var(--font-primary);
  font-size: var(--font-size-display--200);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  will-change: transform, opacity;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0.15;
  transform: scale(0.85);
}

@media only screen and (max-width: 1023px) {
  .heading-reveal {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
   SERVICES FULLSCREEN LISTING
   ========================================================================== */
.section-services-header {
  padding: 3.5rem var(--space-grid-padding) 2rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.section-services-fullscreen {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.service-listing-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-color);
  max-width: 1920px;
  margin: 0 auto;
}

.service-listing-item {
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.service-listing-item:nth-child(2n) {
  border-right: none;
}

.service-listing-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: none;
}

.service-listing-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.8rem;
  text-decoration: none;
  width: 100%;
  position: relative;
  z-index: 10;
  transition: padding-left 0.3s ease;
}

.service-listing-link:hover {
  padding-left: 2.2rem;
}

.service-listing-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 5;
}

.service-listing-index {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.heading-bold.is-xsmall {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.service-listing-badge {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid var(--border-color);
}

.service-listing-arrow {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--color-accent);
  opacity: 0.3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 5;
}

.service-listing-item:hover .service-listing-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.service-listing-large-title {
  display: none;
}

.service-listing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  transform: scaleY(0);
  transform-origin: bottom;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-listing-item:hover .service-listing-bg {
  transform: scaleY(1);
}

@media only screen and (max-width: 900px) {
  .service-listing-wrap {
    grid-template-columns: 1fr;
  }
  .service-listing-item {
    border-right: none;
  }
  .service-listing-link {
    padding: 1rem 1.4rem;
  }
  .service-listing-badge {
    display: none;
  }
}

/* ==========================================================================
   REFERENCES GRID (Halston client block grid style - Compact & Tight)
   ========================================================================== */
.section-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  max-width: 1260px;
  margin: 0 auto;
}

.logo-block {
  height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.25rem;
  background: transparent;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.logo-block:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.logo-image {
  width: auto;
  height: auto;
  max-width: 270px;
  max-height: 88px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.2);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.logo-block:hover .logo-image {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

@media only screen and (max-width: 1200px) {
  .section-logo-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1040px;
  }
}

@media only screen and (max-width: 960px) {
  .section-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 820px;
  }
  .logo-block {
    height: 149px;
    padding: 0.6rem 1rem;
  }
  .logo-image {
    max-width: 239px;
    max-height: 76px;
  }
}

@media only screen and (max-width: 680px) {
  .section-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .section-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-block {
    height: 139px;
    padding: 0.5rem 0.75rem;
  }
  .logo-image {
    max-width: 219px;
    max-height: 68px;
  }
}

.logo-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  transition: opacity 0.4s ease;
}

.logo-block:hover .logo-image-bg {
  opacity: 0.4;
}

.logo-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

@media only screen and (max-width: 1023px) {
  .section-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-logo-grid .logo-block:nth-child(4n) {
    border-right: 1px solid var(--border-color);
  }
  .section-logo-grid .logo-block:nth-child(2n) {
    border-right: none;
  }
  .logo-block {
    aspect-ratio: 1.5;
  }
}

/* ==========================================================================
   CONTACT FORM & FOOTER
   ========================================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-form__group {
  position: relative;
}

.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.contact-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form__input:focus, .contact-form__textarea:focus {
  border-bottom: 1px solid var(--color-accent);
}

.contact-form__label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease, font-size 0.3s ease;
  transform-origin: left top;
}

.contact-form__input:focus ~ .contact-form__label,
.contact-form__input:not(:placeholder-shown) ~ .contact-form__label,
.contact-form__textarea:focus ~ .contact-form__label,
.contact-form__textarea:not(:placeholder-shown) ~ .contact-form__label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--color-accent);
  font-weight: 500;
}

.contact-form__status {
  margin-top: 1rem;
  padding: 1rem;
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  display: none;
}

.contact-form__status.--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-form__status.--success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.large-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
}

.large-action-button-text {
  position: relative;
  z-index: 5;
  transition: color 0.4s ease;
}

.large-action-button-icon {
  width: 14px;
  height: 14px;
  filter: sepia(1) saturate(5) hue-rotate(15deg) brightness(0.85);
}

.footer__links {
  display: flex;
  gap: 2.5rem;
}

.footer__link {
  font-size: var(--font-size--300);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 600px) {
  .footer {
    padding: 3rem 1.5rem;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__links {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ==========================================================================
   SOLUTIONS SHOWCASE (4-COLUMN FULL-HEIGHT CARD GRID)
   ========================================================================== */
.section-solutions {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  width: 100%;
}

.solutions-showcase-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.solutions-header {
  padding: 5rem var(--space-grid-padding) 3rem var(--space-grid-padding);
  border-bottom: 1px solid var(--border-color);
}

.solutions-showcase-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
}

.solution-showcase-item {
  position: relative;
  height: 640px;
  min-height: 560px;
  border-right: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem;
  background-color: #0C0C0E;
  transition: border-color 0.4s ease;
  cursor: pointer;
}

.solution-showcase-item:last-child {
  border-right: none;
}

.solution-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.solution-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.15) grayscale(20%);
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.solution-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 14, 0.75) 0%,
    rgba(12, 12, 14, 0.25) 40%,
    rgba(12, 12, 14, 0.92) 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.solution-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  pointer-events: auto;
}

.solution-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solution-card-tag {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.solution-card-num {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-placeholder);
  opacity: 0.7;
}

.solution-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-card-title {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
  transition: color 0.3s ease, transform 0.4s ease;
}

.solution-card-desc {
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, transform 0.5s ease;
}

.solution-card-action {
  margin-top: 0.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
}

.solution-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-accent);
  background: rgba(197, 160, 89, 0.1);
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.solution-card-btn:hover {
  background: var(--color-accent);
  color: #0C0C0E;
}

/* Hover States */
.solution-showcase-item:hover .solution-card-bg img {
  transform: scale(1.08);
  filter: brightness(0.48) contrast(1.15) grayscale(0%);
}

.solution-showcase-item:hover .solution-card-title {
  color: var(--color-accent);
}

.solution-showcase-item:hover .solution-card-desc {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}

.solution-showcase-item:hover .solution-card-action {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* Tablet & Mobile */
@media only screen and (max-width: 1200px) {
  .solutions-showcase-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-showcase-item {
    height: 520px;
  }
  .solution-showcase-item:nth-child(2) {
    border-right: none;
  }
  .solution-showcase-item:nth-child(1),
  .solution-showcase-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
  }
}

@media only screen and (max-width: 767px) {
  .solutions-showcase-list {
    grid-template-columns: 1fr;
  }
  .solution-showcase-item {
    height: 440px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
  }
  .solution-card-desc {
    max-height: 120px;
    opacity: 1;
    transform: none;
  }
  .solution-card-action {
    max-height: 60px;
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   HIGHLIGHTS (MIÉRT MŰKÖDIK? & MIÉRT A WEOCOMM?)
   ========================================================================== */
.section-highlights {
  padding: var(--space-800) var(--space-grid-padding);
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.highlights-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.highlight-block {
  border-left: 2px solid var(--color-accent);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.highlight-list li {
  font-size: var(--font-size--400);
  color: var(--text-secondary);
  line-height: var(--line-height--500);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.highlight-bullet {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.highlight-number {
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.highlight-callout {
  margin-top: auto;
  font-size: var(--font-size--500);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

@media only screen and (max-width: 1023px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .highlight-block {
    padding-left: 1.5rem;
  }
}

/* ==========================================================================
   WEO2 ELEMENTOR CUSTOM CONTACT SECTION & WIDGET FORM
   ========================================================================== */
.section-contact {
  padding: 8rem var(--space-grid-padding);
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.contact-layout {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-600);
}

.contact-details-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-detail-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.contact-detail-card:hover {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
}

.contact-detail-card.--wide {
  grid-column: span 2;
}

.detail-label {
  font-family: var(--font-primary);
  font-size: var(--font-size--200);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-val {
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-primary);
  font-weight: 600;
}

.detail-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.detail-val.--small-text {
  font-size: var(--font-size--300);
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
  outline: none;
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-bottom: 1px solid var(--color-accent);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease, font-size 0.3s ease;
  transform-origin: left top;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--color-accent);
  font-weight: 500;
}

/* Dropdown styled specifically in Halston Luxury look */
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C5A059' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  color: var(--text-muted);
}

.form-select:focus, .form-select:valid {
  color: var(--text-primary);
}

.form-select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* ==========================================================================
   WIDGET FOOTER STYLING
   ========================================================================== */
.footer-wrap {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-link-item {
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link-item:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media only screen and (max-width: 1023px) {
  .section-contact {
    padding: 5rem 1.5rem;
  }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-details-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-detail-card.--wide {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media only screen and (max-width: 600px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   WEO2 ELEMENTOR CUSTOM CAPABILITIES (ESZKÖZTÁR)
   ========================================================================== */
.section-capabilities {
  padding: 8rem var(--space-grid-padding);
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.capabilities-layout {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.capabilities-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.capabilities-content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.capabilities-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.capabilities-grid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.filter-btn {
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  font-weight: 500;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.filter-btn.--active {
  background: var(--color-accent);
  color: var(--bg-primary);
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.filterable-tag {
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.filterable-tag:hover {
  border-color: var(--color-accent);
  color: var(--text-primary);
}

.filterable-tag.--highlighted {
  border-color: var(--color-accent);
  color: var(--text-primary);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
}

.filterable-tag.--dimmed {
  opacity: 0.25;
}

/* ==========================================================================
   WEO2 ELEMENTOR CUSTOM TESTIMONIALS (VÉLEMÉNYEK)
   ========================================================================== */
.section-testimonials {
  padding: 8rem var(--space-grid-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

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

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  background: var(--bg-tertiary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.testimonial-text {
  font-family: var(--font-primary);
  font-size: var(--font-size--400);
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.testimonial-logo {
  max-height: 25px;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) invert(1);
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-logo {
  opacity: 0.9;
  filter: grayscale(0) invert(0) sepia(0.3) saturate(1.5) hue-rotate(15deg);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.client-name {
  font-family: var(--font-primary);
  font-size: var(--font-size--300);
  font-weight: 600;
  color: var(--text-primary);
}

.client-role {
  font-family: var(--font-primary);
  font-size: var(--font-size--200);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   WEO2 ELEMENTOR CUSTOM PARTNERS (REFERENCES)
   ========================================================================== */
.section-partners {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.partners-layout {
  width: 100%;
}

.partners-header {
  padding: 6rem var(--space-grid-padding) 3rem var(--space-grid-padding);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  max-width: 1920px;
  margin: 0 auto;
}

.logo-grid .logo-block {
  aspect-ratio: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.logo-grid .logo-block:nth-child(4n) {
  border-right: none;
}

.partner-logo {
  max-width: 55%;
  max-height: 45%;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.logo-grid .logo-block:hover .partner-logo {
  opacity: 0.9;
  filter: grayscale(0) invert(0) sepia(0.3) saturate(1.5) hue-rotate(15deg);
}

/* Responsive elements for new sections */
@media only screen and (max-width: 1023px) {
  .section-capabilities {
    padding: 5rem 1.5rem;
  }
  .section-testimonials {
    padding: 5rem 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-grid .logo-block:nth-child(4n) {
    border-right: 1px solid var(--border-color);
  }
  .logo-grid .logo-block:nth-child(2n) {
    border-right: none;
  }
  .logo-grid .logo-block {
    aspect-ratio: 1.5;
  }
}

/* ==========================================================================
   WordPress & Elementor Integration CSS (Auto-Full-Screen Reset)
   ========================================================================== */
/* ==========================================================================
   WordPress & Elementor Integration CSS (Auto-Full-Screen Reset)
   ========================================================================== */

/* 1. Reset parent theme layout wrappers */
#content,
.page-content,
.site-main,
article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 2. Reset Elementor section, column, container wrappers */
.elementor,
.e-con,
.e-con-inner,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
.elementor-widget-weo2_custom_widget,
.elementor-widget-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
  --width: 100% !important;
  --max-width: 100% !important;
  --container-max-width: 100% !important;
  --content-width: 100% !important;
}

/* 3. Hide Hello Elementor theme header, page-header title, and footer */
#site-header,
.page-header,
#site-footer,
.skip-link {
  display: none !important;
}


/* ---- IMPRESSZUM + HEADER LOGO (weocomm 2026-09-03) ---- */
.header__logo-img {
  height: 46px !important;
  width: auto !important;
  display: block;
}
.grid {
  display: grid;
  grid-template-columns: repeat(21, 1fr);
  gap: 0 1rem;
  width: 100%;
}
.grid > [pos] {
  grid-column: 1 / -1;
}
.grid > [pos^="1-21"], .grid > [pos-s="1-21"] {
  grid-column: 1 / 22;
}
.grid > [pos^="1-10"] { grid-column: 1 / 11; }
.grid > [pos^="14-21"] { grid-column: 14 / 22; }
@media only screen and (max-width: 1023px) {
  .grid { display: block; }
  .grid > [pos] { grid-column: auto; }
}
.footer__impressum {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__impressum-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer__impressum-title {
  font-size: 0.8rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer__impressum-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem 2rem;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer__impressum-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.footer__impressum-item--full {
  flex-basis: 100%;
}
.footer__impressum-label {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.footer__impressum-val {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.footer__impressum-val a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.footer__impressum-val a:hover {
  color: var(--color-accent) !important;
}
@media only screen and (max-width: 768px) {
  .footer__impressum-grid {
    flex-direction: column;
    gap: 0.6rem;
  }
}
