:root {
  --color-black: #000000;
  --color-red: #ed1c24;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-darkgray: #2b2a2a;
 

  --header-height: 70px;
  --topbar-height: 34px;
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-darkgray);
  background-color: var(--color-white);
}

/* Konténer */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Felső elérhetőségi sáv (topbar) */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background-color: #333333;
  color: var(--color-white);
  z-index: 1000;
  font-size: 13px;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar-left span {
  margin-right: 16px;
}

.topbar-right .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 12px;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: 50%;  /* kör */
    overflow: hidden;    /* kép ne lógjon ki */
    background-color: rgba(255,255,255,0.1);
  }
  
  .social-img {
    width: 22px;         /* ikon mérete */
    height: 22px;
    display: block;
    filter: brightness(1.2);  /* világosítás fehér háttérhez */
  }
  
  .social-link:hover {
    background-color: var(--color-red);
    transform: scale(1.1);
  }
  
  .social-link:hover .social-img {
    filter: brightness(0) invert(1);  /* fehérré válik hoverkor */
  }
  
/* Fő navigáció (header) */
.main-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logó */
.logo a {
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-black);
}

/* Menü */
.main-nav {
  display: flex;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--color-darkgray);
  font-weight: 500;
  font-size: 15px;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

/* Középről induló aláhúzás */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: var(--color-red);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

/* Hover és active állapot */
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobil menü gomb */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background-color: var(--color-darkgray);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}


.hero {
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--color-black);
}

.hero p {
  font-size: 16px;
  color: var(--color-gray);
}


/* Reszponzív – mobil nézet */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    background-color: var(--color-white);
    flex-direction: column;
    display: none;
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .topbar-content {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .topbar-left span {
    margin-right: 8px;
  }
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo img {
    height: 50px;           /* állítsd tetszés szerint */
    width: auto;
    display: block;
  }
  
  @media (max-width: 768px) {
    .logo img {
      height: 32px !important;  /* kisebb telefonon */
    }
  }

  /* Hero slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }
  
  .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: slowZoom 6s ease-in-out infinite;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  /* Lassú zoom effekt minden képre (7s ciklus) */
  @keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.05); }
  }
  
  .slide-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    padding: 0 20px;
  }
  
  .slide-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  
  .slide-text {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 32px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  
  .index-cta-button {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
  }
  
  .index-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
  }
  
  /* Navigációs pontok */
  .slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
  }
  
  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav-dot:hover,
  .nav-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
  }
  
  /* Mobil finomhang */
  @media (max-width: 768px) {
    .slide-content {
      bottom: 60px;
      padding: 0 16px;
    }
  
    .slide-title {
      margin-bottom: 12px;
    }
  
    .slide-text {
      margin-bottom: 24px;
    }
  
    .cta-button {
      padding: 14px 24px;
      font-size: 15px;
    }
  }


  

  /* Termékeink teaser */
.products-teaser {
    background-color: var(--color-darkgray);  /* sötét szürke */
    padding: 20px 0;                           /* felső/alsó padding */
    margin: 0;                                 /* teljes szélesség */
    width: 100%;
    margin-top: 50px;
  }
  
  .teaser-title {
    color: var(--color-white);                 /* fehér */
    font-size: clamp(28px, 6vw, 36px);         /* nagy, reszponzív */
    font-weight: 700;                          /* vastag */
    margin: 0;
    padding-left: 40px;                        /* balra behúzás */
    text-align: left;
    line-height: 1.1;
  }
  
  /* Mobil kisebb behúzás */
  @media (max-width: 768px) {
    .teaser-title {
      padding-left: 24px;
      font-size: clamp(28px, 8vw, 36px);
    }
  }
  
  /* 3 termék kártya */
.products-grid {
    padding: 50px 0;
    background-color: var(--color-white);
  }
  
  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
    align-items: stretch;
  }
  
  .product-card {
    display: block;
    text-decoration: none;
    border-radius: 0px;                    /* kicsi rádiusz */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01); /* alap árnyék */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* sima lebegés */
    position: relative;
    z-index: 1;
  }
  
  .product-card:hover {
    transform: translateY(-12px);           /* lebegő effekt */
    box-shadow: 0 20px 40px rgba(0,0,0,0.16); /* nagyobb árnyék */
    z-index: 2;
  }
  
  .product-card:focus-visible {
    outline: 3px solid var(--color-red);
    outline-offset: 4px;
  }
  
  /* Képrész */
  .card-image {
    width: 100%;
    height: 150px;                          /* fix magasság */
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;                      /* kép kitölti, arányosan */
    transition: transform 0.4s ease;
  }
  
  .product-card:hover .card-image img {
    transform: scale(1.05);                 /* enyhe nagyítás hoverkor */
  }
  
  /* Szövegrész */
  .card-content {
    padding: 24px;
    text-align: center;
  }
  
  .card-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-darkgray);
    transition: color 0.3s ease;
  }
  
  .product-card:hover .card-content h3 {
    color: var(--color-red);                /* pirosra vált hoverkor */
  }
  
  /* Reszponzív */
  @media (max-width: 1024px) {
    .cards-wrapper {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .cards-wrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .products-grid {
      padding: 60px 0;
    }
  
    .card-image {
      height: 200px;
    }
  }
  
  /* Feature szekciók (WPC-stílus) */
.feature-section {
    padding: 80px 0;
    background-color: var(--color-darkgray);  /* sötétszürke */
  }
  
  .feature-content {
    display: flex;                          /* flexbox egy sorba */
    align-items: flex-start;                /* felülről igazítás */
    gap: 60px;
    height: auto;                           /* automatikus magasság */
  }
  
  .feature-image {
    flex-shrink: 0;                         /* kép ne zsugorodjon */
    width: 50%;                             /* fele-fele arány */
  }
  
  .feature-image img {
    width: 100%;
    height: auto;                           /* arányos magasság */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: block;
  }
  
  .feature-text {
    flex: 1;                                /* szöveg foglalja a többit */
    padding-top: 8px;                       /* enyhe igazítás a kép tetejéhez */
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;                     /* kisebb alsó margó */
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;                 /* balra igazítás */
  }
  
  .feature-text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    align-self: flex-start;                 /* balra igazítás */
  }

  
  
  /* Mobil: kép fölé szöveg */
  @media (max-width: 768px) {
    .feature-section {
      padding: 60px 0;
    }
    
    .feature-content {
      display: flex;
      flex-direction: column;   /* egymás alá */
    }
  
    .feature-image {
      order: 1;                 /* ← kép FELÜLRE */
      width: 100%;
    }
  
    .feature-text {
      order: 2;                 /* ← szöveg ALULRA */
      width: 100%;
      text-align: left;
    }

    .feature-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .feature-image img {
      height: 280px;
    }
    
    .feature-text h3 {
      font-size: 28px;
    }
  }
  
  /* Előny lista – körben pipa */
.advantages-section {
    margin-top: 70px;
  }
  
  .advantages-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-white);
    text-align: left;
  }
  
  .checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .checkmark-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 2.2;
    color: rgba(255,255,255,0.95);
  }
  
  .checkmark-list li::before {
    content: "✓";                           /* pipa jel */
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-red);     /* piros kör */
    border-radius: 50%;                     /* kör */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
    box-shadow: 0 2px 6px rgba(237,28,36,0.4);
  }
  
  .checkmark-list li:last-child {
    margin-bottom: 0;
  }
  
  /* Mobil finomhang */
  @media (max-width: 768px) {
    .checkmark-list li {
      padding-left: 32px;
      font-size: 14px;
    }
    
    .checkmark-list li::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }
  }
  
  /* Láthatatlan 2x6 grid */
.icon-grid-section {
    margin-top: 0px;                      /* pontosan 60px kihagyás */
    margin-bottom: 10px;
    
    
  }
  
  .icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);  /* 6 oszlop */
    grid-template-rows: auto auto;          /* 2 sor */
    gap: 20px 10px;                         /* függőleges 20px, vízszintes 16px */
    width: 100%;
    background-color: var(--color-darkgray);  /* sötétszürke */
  }
  
  .icon-cell,
  .text-cell {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .grid-icon {
    width: 80px;                            /* ikon méret */
    height: 80px;
    object-fit: contain;
  }
  
  .text-cell {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-align: center;
    padding: 8px 4px;
    margin-bottom: 20px;
  }
  
  /* Reszponzív: kisebb képernyőn kevesebb oszlop */
  @media (max-width: 1024px) {
    .icon-grid {
      grid-template-columns: repeat(3, 1fr); /* tablet: 3 oszlop */
      gap: 16px 12px;
    }
  }
  
  @media (max-width: 768px) {
    .icon-grid {
      grid-template-columns: repeat(2, 1fr); /* mobil: 2 oszlop */
      gap: 16px;
    }
    
    .grid-icon {
      width: 40px;
      height: 40px;
    }
  }
  

   /* Feature szekciók (ALU) */
.alu-feature-section {
    padding: 80px 0;
    background-color: var(--color-white);  /* sötétszürke */
  }
  
  .alu-feature-content {
    display: flex;                          /* flexbox egy sorba */
    align-items: flex-start;                /* felülről igazítás */
    gap: 60px;
    height: auto;                           /* automatikus magasság */
  }
  
  .alu-feature-image {
    flex-shrink: 0;                         /* kép ne zsugorodjon */
    width: 50%;
    object-position:right center;                            
  }
  
  .alu-feature-image img {
    width: 100%;
    height: auto;                           /* arányos magasság */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: block;

  }
  
  .alu-feature-text {
    flex: 1;                                /* szöveg foglalja a többit */
    padding-top: 8px;                       /* enyhe igazítás a kép tetejéhez */
    color: var(--color-darkgray);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .alu-feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;                     /* kisebb alsó margó */
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;                 /* balra igazítás */
  }
  
  .alu-feature-text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
    align-self: flex-start;                 /* balra igazítás */
  }

  
  
  /* Mobil: kép fölé szöveg */
  @media (max-width: 768px) {
    .alu-feature-section {
      padding: 60px 0;
    }
    
    .alu-feature-content {
      display: flex;
      flex-direction: column;
    }
  
    .alu-feature-image {
      order: 1;                 /* ← kép FELÜLRE */
      width: 100%;
    }
  
    .alu-feature-text {
      order: 2;                 /* ← szöveg ALULRA */
      width: 100%;
      text-align: left;
    }

    .alu-feature-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .alu-feature-image img {
      height: 280px;
    }
    
    .alu-feature-text h3 {
      font-size: 28px;
    }
  }
  
  /* Előny lista – körben pipa */
.alu-advantages-section {
    margin-top: 50px;
  }
  
  .alu-advantages-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-darkgray);
    text-align: left;
  }
  
  .alu-checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .alu-checkmark-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-darkgray);
  }
  
  .alu-checkmark-list li::before {
    content: "✓";                           /* pipa jel */
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-red);     /* piros kör */
    border-radius: 50%;                     /* kör */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
    box-shadow: 0 2px 6px rgba(237,28,36,0.4);
  }
  
  .alu-checkmark-list li:last-child {
    margin-bottom: 0;
  }
  
  /* Mobil finomhang */
  @media (max-width: 768px) {
    .alu-checkmark-list li {
      padding-left: 32px;
      font-size: 14px;
    }
    
    .alu-checkmark-list li::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }
  }
  
  /* Láthatatlan 2x6 grid */
.icon-grid-section {
    margin-top: 0px;                      /* pontosan 60px kihagyás */
    margin-bottom: 10px;
    
    
  }
  
  .alu-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);  /* 6 oszlop */
    grid-template-rows: auto auto;          /* 2 sor */
    gap: 20px 10px;                         /* függőleges 20px, vízszintes 16px */
    width: 100%;
    background-color: var(--color-darkgray);  /* sötétszürke */
  }
  
  .icon-cell,
  .text-cell {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .grid-icon {
    width: 80px;                            /* ikon méret */
    height: 80px;
    object-fit: contain;
  }
  
  .text-cell {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-align: center;
    padding: 8px 4px;
    margin-bottom: 20px;
  }
  
  /* Reszponzív: kisebb képernyőn kevesebb oszlop */
  @media (max-width: 1024px) {
    .icon-grid {
      grid-template-columns: repeat(3, 1fr); /* tablet: 3 oszlop */
      gap: 16px 12px;
    }
  }
  
  @media (max-width: 768px) {
    .icon-grid {
      grid-template-columns: repeat(2, 1fr); /* mobil: 2 oszlop */
      gap: 16px;
    }
    
    .grid-icon {
      width: 40px;
      height: 40px;
    }
  }
  
  .stainless-feature {
    padding: 80px 0;
    background-color: var(--color-darkgray);
  }
  
  .stainless-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .stainless-text {
    flex: 1;
    color: var(--color-white);
  }
  
  .stainless-text h3 {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  
  /* Animált kép */
  .stainless-image {
    flex: 1;
    position: relative;
  }
  
  .animated-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
    
  /* Mobil */
  @media (max-width: 768px) {
    .stainless-content {
      flex-direction: column-reverse;  /* kép elöl */
    }
  }

   /* Előny lista – körben pipa */
.k-advantages-section {
    margin-top: 30px;
  }
  
  .k-advantages-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-white);
    text-align: left;
  }
  
  .k-checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .k-checkmark-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-white);
  }
  
  .k-checkmark-list li::before {
    content: "✓";                           /* pipa jel */
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-red);     /* piros kör */
    border-radius: 50%;                     /* kör */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
    box-shadow: 0 2px 6px rgba(237,28,36,0.4);
  }
  
  .k-checkmark-list li:last-child {
    margin-bottom: 0;
  }
  
  /* Mobil finomhang */
  @media (max-width: 768px) {
    .alu-checkmark-list li {
      padding-left: 32px;
      font-size: 14px;
    }
    
    .k-checkmark-list li::before {
      width: 20px;
      height: 20px;
      font-size: 12px;
    }
  }


  .site-footer {
    background-color: var(--color-darkgray);
    color: var(--color-white);
    padding: 30px 0 0;
    font-size: 13px;
    text-align: center;
    position: relative;
    z-index: 5;
  }
  

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 32px;
  }
  
  .footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-white);
  }
  
  .footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .footer-column a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: var(--color-red);
  }
  
  .social-links {
    margin-top: 16px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-right: 12px;
    font-size: 20px;
    color: var(--color-white);
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
  }
  
  .copyright {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
  }
  
  /* Mobil: egyetlen oszlop */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }
    
    .social-links a {
      margin: 0 6px 6px 0;
    }
  }
/* Vékony fehér copyright sáv */ 
  .copyright-bar {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 10px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    pointer-events: all;  /* ← biztosítja hogy kattintható legyen */
  }
  
  .copyright-bar p {
    margin: 0;
    font-size: 13px;
    color: var(--color-gray);
    text-align: center;
    line-height: 1.4;
    z-index: 10;
  }
  
  .copyright-bar a {
    pointer-events: all;  /* ← link mindenképp kattintható */
    position: relative;
    z-index: 11;
  }
  
  /* Mobil finomhang */
  @media (max-width: 768px) {
    .copyright-bar {
      padding: 12px 0;
      margin-top: 30px;
    }
    
    .copyright-bar p {
      font-size: 12px;
    }
  }
    
  .purchase-timeline {
    padding: 100px 0;
    background-image: url('timeline.jpg'); /* ÁLLÓ kép */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
  }
  
  .purchase-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7); /* sötét overlay */
    z-index: 1;
  }
  
  .timeline-title {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    color: white;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  
  .timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-red), white);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(237,28,36,0.5);
  }
  
  .timeline-item {
    display: flex;
    align-items: center;
    margin: 60px 0;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--order) * 0.2s);
  }
  
  .timeline-item.left {
    justify-content: flex-start;
  }
  
  .timeline-item.right {
    justify-content: flex-end;
  }
  
  .timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--color-red);
    border: 4px solid white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(237,28,36,0.3);
  }
  
  .timeline-item.left .timeline-dot {
    margin-left: -60px;
  }
  
  .timeline-item.right .timeline-dot {
    margin-left: 40px;
  }
  
  .timeline-content {
    width: 40%;
    background: rgba(255,255,255,0.95);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    position: relative;
  }
  
  .timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
  }
  
  .timeline-item.left .timeline-content {
    margin-left: 60px;
  }
  
  .timeline-item.left .timeline-content::before {
    right: -24px;
    border-left-color: rgba(255,255,255,0.95);
  }
  
  .timeline-item.right .timeline-content {
    margin-right: 60px;
  }
  
  .timeline-item.right .timeline-content::before {
    left: -24px;
    border-right-color: rgba(255,255,255,0.95);
  }
  
  .step-number {
    display: inline-block;
    background: var(--color-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
  }
  
  .timeline-content h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--color-darkgray);
    font-weight: 600;
  }
  
  .timeline-content p {
    margin: 0;
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Animációk */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .timeline-item:nth-child(1) { --order: 1; }
  .timeline-item:nth-child(2) { --order: 2; }
  .timeline-item:nth-child(3) { --order: 3; }
  .timeline-item:nth-child(4) { --order: 4; }
  .timeline-item:nth-child(5) { --order: 5; }
  .timeline-item:nth-child(6) { --order: 6; }
  
  /* Mobil */
  @media (max-width: 768px) {
    .timeline-line {
      left: 20px;
    }
    
    .timeline-item {
      flex-direction: column !important;
      align-items: flex-start !important;
      margin: 40px 0;
    }
    
    .timeline-content {
      width: 100% !important;
      margin-left: 50px !important;
      margin-right: 0 !important;
    }
    
    .timeline-content::before {
      left: -24px !important;
      border-right-color: rgba(255,255,255,0.95) !important;
    }
  }
  
  /* LENYÍLÓ MENÜ */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* The .dropbtn class has been removed as it was empty and unnecessary */
  
  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.60); /* ÁTTETSZŐ FEHÉR */
    backdrop-filter: blur(10px);                  /* üveg effekt */
    min-width: 260px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 0;
  }
  
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-content a {
    color: var(--color-darkgray) !important;    /* sötét szürke */
    padding: 10px 10px !important;
    display: block !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    margin: 2px 2px;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .dropdown-content a:hover {
    color: var(--color-red) !important;         /* piros kiemelés */
    background-color: rgba(237, 28, 36, 0.08);
    transform: translateX(4px);
  }
  
  /* Mobil menüben is működik */
  .main-nav.open .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(255,255,255,0.98);
    margin-top: 8px;
  }
  
  /* WPC HERO – ÁTFEDŐ KÉPEK + ZOOM */
.wpc-hero {
    position: relative;
    height: 100%;
    min-height: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  /* 4 átfedő kép + folyamatos zoom */
  .wpc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      url('../images/wpchero/hero1.jpg'),    /* fekvő 1920x1080 vagy 1600x900 */
      url('../images/wpchero/hero2.jpg'),
      url('../images/wpchero/hero3.jpg'),
      url('../images/wpchero/hero4.jpg');
    background-size: cover;               /* fekvő képekhez tökéletes */
    background-position: center center;    /* középre igazítás */
    background-repeat: repeat;          /* ismétlődés engedélyezése */
    animation: heroSlides 20s infinite linear, heroZoom 4s infinite ease-in-out;
    z-index: 1; 
  }
  
  
  @keyframes heroSlides {
    0%, 25% { background-position: 0% 50%; }
    25%, 50% { background-position: 100% 50%; }
    50%, 75% { background-position: 100% 100%; }
    75%, 100% { background-position: 0% 100%; }
  }
  
  @keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  
  /* Tartalom */
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
  }
  
  .hero-content h1 {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    letter-spacing: -1px;
  }
  
  .hero-content h2 {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 400;
    margin: 0 0 48px 0;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  
  /* 3 előny doboz */
  .hero-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
  }
  
  .feature-box {
    background: rgba(54, 54, 54, 0.272);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 24px 20px;
    min-width: 220px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  
  .feature-box:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  
  .checkmark-icon {
    display: block;
    width: 48px;
    height: 48px;
    background: var(--color-red);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 48px;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(237,28,36,0.4);
  }
  
  .feature-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    margin: 32px 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .cta-button.large {
    /* meglévő stílusok */
    background: linear-gradient(135deg, var(--color-red), #ff4444);
    color: white;
    padding: 20px 48px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(237,28,36,0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth */
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;  /* új: glow effekthez */
  }
  
  .cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255,255,255,0.3), 
      transparent);
    transition: left 0.6s ease;
    z-index: 1;
  }
  
  .cta-button.large:hover {
    transform: translateY(-8px) scale(1.06); /* nagyobb emelés */
    box-shadow: 0 35px 70px rgba(237,28,36,0.6); /* erősebb glow */
    background: linear-gradient(135deg, #ff3333, #cc0000); /* sötétebb piros */
  }
  
  .cta-button.large:hover::before {
    left: 100%; /* swipe fénycsík */
  }
  
  
  /* Animációk */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobil optimalizálás */
  @media (max-width: 768px) {
    .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .feature-box {
      min-width: 280px;
      padding: 20px 16px;
    }
  }
  
  /* Termékválasztó szekció */
.product-selector {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    text-align: center;
  }
  
  .product-selector h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--color-darkgray);
    margin-bottom: 60px;
  }
  
  .product-cards {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  
  .product-card-link {
    text-decoration: none;
  }
  
  .floating-product {
    position: relative;
    padding: 40px 32px;
    background: transparent;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
  }
  
  /* Lebegő animáció (eltolt fázisonként) */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  .product-card-link:nth-child(1) .floating-product { animation-delay: 0s; }
  .product-card-link:nth-child(2) .floating-product { animation-delay: 0.5s; }
  .product-card-link:nth-child(3) .floating-product { animation-delay: 1s; }
  
  .floating-product img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  }
  
  .floating-product h3 {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-darkgray);
    transition: color 0.3s ease;
  }
  
  /* Hover effekt */

  
  .floating-product:hover img {
    transform: scale(1.15) translateY(-10px);
    filter: drop-shadow(0 35px 45px rgba(0,0,0,0.25));
  }
  
  .floating-product:hover h3 {
    color: var(--color-red);
  }
  
  /* Termék részlet szekciók */
  .product-detail {
    padding: 100px 0;
    scroll-margin-top: 120px; /* fix header miatt */
  }
  
  .product-detail:nth-child(odd) {
    background-color: var(--color-white);
  }
  
  .product-detail:nth-child(even) {
    background-color: #f8f9fa;
  }
  
  /* Mobil */
  @media (max-width: 768px) {
    .product-cards {
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    
    .floating-product img {
      width: 160px;
      height: 160px;
    }
  }
  
/* WPC longevity szekció */
.wpc-longevity-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    text-align: center;
    color: #2b2a2a;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  
  .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .image-wrapper {
    flex: 1;
    min-width: 300px;
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
  }
  
  .text-wrapper {
    flex: 1;
    min-width: 300px;
  }
  
  .intro-text,
  .closing-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2b2a2a;
    margin-bottom: 30px;
  }
  
  .guarantee-section {
    margin: 40px 0;
  }
  
  .guarantee-section h3 {
    font-size: 1.4rem;
    color: #2b2a2a;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  /* Zöld pipa lista */
  .green-check-list {
    list-style: none;
    padding-left: 0%;
    margin: 0;

  }
  
  .green-check-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    font-size: 1.2rem;
    line-height: 2;
    color: #2b2a2a;
  }
  
  .green-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 36px;
    height: 36px;
    background: #28a745 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
  }
  
  /* CTA gomb */
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ed1c24, #c8102e);
    color: #ffffff !important;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(237,28,36,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(237,28,36,0.6);
    background: linear-gradient(135deg, #c8102e, #ed1c24);
  }
  
  .cta-button:active {
    transform: translateY(-2px);
  }
  
  /* Mobil reszponzív */
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }
    
    .image-wrapper {
      order: 2;
    }
    
    .text-wrapper {
      order: 1;
    }
    
    .green-check-list li {
      padding-left: 60px;
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      margin-bottom: 40px;
    }
    
    .cta-button {
      padding: 16px 30px;
      font-size: 1.1rem;
    }
  }
  
  /* Classic WPC szekció */
.classic-wpc-section {
    padding: 120px 0;
    background: #ffffff;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .main-title {
    font-size: clamp(2.0rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2b2a2a;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: #6c757d;
    margin: 0;
    letter-spacing: 0.02em;
  }
  
  .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .text-content {
    flex: 1;
    min-width: 320px;
  }
  
  .image-content {
    flex: 1;
    min-width: 300px;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    object-fit: cover;
  }
  
  .intro-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2b2a2a;
    margin-bottom: 40px;
  }
  
  .features-section {
    margin: 30px 0;
  }
  
  .features-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2a2a;
    margin-bottom: 25px;
  }
  
  /* Pipás lista */
  .check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .check-list li {
    position: relative;
    padding-left: 55px;
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.65;
    color: #333;
  }
  
  .check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 36px;
    height: 36px;
    background: #28a745 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(40,167,69,0.3);
  }
  
  /* Kiemelt doboz */
  .highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ffc107;
    padding: 25px 35px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2b2a2a;
    margin: 0;
    font-weight: 500;
  }
  
  /* Mobil nézet */
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column-reverse;
      gap: 40px;
      text-align: center;
    }
    
    .text-content {
      order: 2;
    }
    
    .image-content {
      order: 1;
    }
    
    .check-list li {
      padding-left: 65px;
      font-size: 1.1rem;
    }
    
    .highlight-box {
      padding: 25px;
      margin: 30px -20px;
      border-radius: 0;
      border-left: none;
      border-top: 5px solid #28a745;
    }
  }
  
  @media (max-width: 480px) {
    .classic-wpc-section {
      padding: 60px 0;
    }
    
    .features-section h4 {
      font-size: 1.3rem;
    }
  }
  
  /* WPC színek galéria */
.wpc-colors-section {
    padding: 40px 0;
    background: #ffffff;
  }
  
  .colors-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #2b2a2a;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
  }
  
  .colors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .color-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .color-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
  }
  
  .color-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* TARTSD MEG A TELJES KÉPET */
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .color-item:hover img {
    transform: scale(1.05);
  }
  
  .color-name {
    font-weight: 600;
    font-size: 1rem;
    color: #2b2a2a;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Tablet nézet */
  @media (max-width: 992px) {
    .colors-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }
  
  /* Mobil nézet */
  @media (max-width: 768px) {
    .colors-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 15px;
    }
    
    .wpc-colors-section {
      padding: 50px 0;
    }
    
    .colors-title {
      margin-bottom: 40px;
    }
    
    .color-item {
      padding: 20px 15px;
    }
    
    .color-item img {
      height: 180px;
    }
  }
  
  /* Nagy képernyő optimalizálás */
  @media (min-width: 1400px) {
    .colors-grid {
      gap: 40px;
    }
    
    .color-item img {
      height: 220px;
    }
  }
  
  .wpc-pricing-wrapper {
    padding: 30px 0;
    background:#ffffff;
  }
  
  .pricing-toggle {
    display: none;
  }
  
  .pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: linear-gradient(135deg, #ed1c24, #c8102e);
    color: #ffffff;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
  }
  
  .pricing-header:hover {
    background: linear-gradient(135deg, #c8102e, #ed1c24);
    box-shadow: 0 10px 30px rgba(237,28,36,0.3);
  }
  
  .pricing-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .pricing-header .icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .pricing-content {
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  
  .pricing-toggle:checked + .pricing-header .icon {
    transform: rotate(180deg);
  }
  
  .pricing-toggle:checked ~ .pricing-content {
    max-height: 1200px;
  }
  
  .price-group {
    padding: 35px;
    border-bottom: 1px solid #f1f3f4;
  }
  
  .price-group:last-child {
    border-bottom: none;
  }
  
  .group-title {
    margin: 0 0 25px 0;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    border-radius: 8px;
  }
  
  .szalan-title {
    color: #ffffff;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
  }
  
  .rendszer-title {
    color: #ffffff;
    background: linear-gradient(135deg, #007bff, #0056b3);
  }
  
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
  }
  
  .price-item:hover {
    background: linear-gradient(90deg, rgba(237,28,36,0.08), transparent);
    transform: translateX(8px);
    border-left-color: #ed1c24;
  }
  
  .price-label {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    flex: 1;
  }
  
  .price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ed1c24;
    white-space: nowrap;
    margin-left: 20px;
  }
  
  /* Mobil */
  @media (max-width: 768px) {
    .wpc-pricing-wrapper {
      padding: 40px 0;
    }
    
    .pricing-header {
      padding: 20px 25px;
    }
    
    .pricing-header h2 {
      font-size: 1.4rem;
    }
    
    .price-group {
      padding: 25px 20px;
    }
    
    .price-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 16px 15px;
    }
    
    .price-label {
      font-size: 0.95rem;
    }
    
    .price-amount {
      font-size: 1.5rem;
      margin-left: 0;
      align-self: flex-start;
    }
    
    .pricing-toggle:checked ~ .pricing-content {
      max-height: 1200px;
    }
  }
  
  /* Woody WPC szekció */
.woody-wpc-section {
    padding: 80px 0;
    background: #969696;
  }


  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #2b2a2a;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }
  
  .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: #6c757d;
    margin: 0;
    letter-spacing: 0.02em;
  }
  
  .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .text-content {
    flex: 1;
    min-width: 320px;
  }
  
  .image-content {
    flex: 1;
    min-width: 300px;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    object-fit: cover;
  }
  
  .intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2b2a2a;
    margin-bottom: 40px;
  }
  
  .feature-group {
    margin: 40px 0;
  }
  
  .feature-group h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2a2a;
    margin-bottom: 20px;
  }
  
  /* Pipás lista */
  .feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 55px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #333;
  }
  
  .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 36px;
    height: 36px;
    background: #28a745 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(40,167,69,0.3);
  }
  
  /* Kiemelt doboz */
  .highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ffc107;
    padding: 30px 35px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  
  .highlight-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2b2a2a;
    margin: 0;
    font-weight: 600;
  }
  
  /* Mobil */
  @media (max-width: 768px) {
    .woody-wpc-section {
      padding: 60px 0;
    }
    
    .content-wrapper {
      flex-direction: column;
      gap: 40px;
    }
    
    .feature-list li {
      padding-left: 60px;
      font-size: 1.05rem;
    }
    
    .highlight-box {
      padding: 25px;
      margin: 30px -20px;
      border-radius: 0;
      border-left: none;
      border-top: 5px solid #ffc107;
    }
  }
  
  @media (max-width: 480px) {
    .feature-group h4 {
      font-size: 1.3rem;
    }
  }
  
  .woody-colors-section {
    padding: 40px 0;
    background: #ffffff;
  }
  
  .colors-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #2b2a2a;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
  }
  
  .woody-colors-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .woody-color-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .color-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
  }
  
  .woody-color-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* TARTSD MEG A TELJES KÉPET */
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .color-item:hover img {
    transform: scale(1.05);
  }
  
  .color-name {
    font-weight: 600;
    font-size: 1rem;
    color: #2b2a2a;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Tablet nézet */
  @media (max-width: 992px) {
    .woody-colors-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }
  
  /* Mobil nézet */
  @media (max-width: 768px) {
    .woody-colors-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 15px;
    }
    
    .woody-colors-section {
      padding: 50px 0;
    }
    
    .colors-title {
      margin-bottom: 40px;
    }
    
    .color-item {
      padding: 20px 15px;
    }
    
    .color-item img {
      height: 180px;
    }
  }
  
  /* Nagy képernyő optimalizálás */
  @media (min-width: 1400px) {
    .colors-grid {
      gap: 40px;
    }
    
    .color-item img {
      height: 220px;
    }
  }
  
  /* Woody cím színezés */
.woody-title {
  color: #ffffff;
  background: linear-gradient(135deg, #8b4513, #d2691e) !important;
}

/* Real Wood WPC szekció */
.realwood-wpc-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #2b2a2a;
  margin: 0 0 15px 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: #6c757d;
  margin: 0;
  letter-spacing: 0.02em;
}

.content-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 320px;
}

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  object-fit: cover;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #2b2a2a;
  margin-bottom: 40px;
}

.feature-group {
  margin: 40px 0;
}

.feature-group h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2a2a;
  margin-bottom: 20px;
}

/* Zöld pipás lista */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 36px;
  height: 36px;
  background: #28a745 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(40,167,69,0.3);
}

/* Garanciás doboz - arany */
.guarantee-box {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe082 100%);
  border-left: 5px solid #ffa000;
  padding: 30px 35px;
  border-radius: 0 12px 12px 0;
  margin: 40px 0 25px 0;
  box-shadow: 0 8px 25px rgba(255,160,0,0.15);
}

.guarantee-box h5 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #e65100;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-box p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2b2a2a;
  margin: 0;
  font-weight: 500;
}

/* Prémium doboz - elegáns kék */
.premium-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
  border-left: 5px solid #1976d2;
  padding: 25px 35px;
  border-radius: 0 12px 12px 0;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(25,118,210,0.15);
  text-align: center;
}

.premium-box p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #0d47a1;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Mobil */
@media (max-width: 768px) {
  .realwood-wpc-section {
    padding: 60px 0;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .feature-list li {
    padding-left: 60px;
    font-size: 1.05rem;
  }
  
  .guarantee-box,
  .premium-box {
    padding: 25px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-top: 5px solid #ffa000;
  }
  
  .premium-box {
    border-top-color: #1976d2;
  }
}

@media (max-width: 480px) {
  .feature-group h4 {
    font-size: 1.3rem;
  }
  
  .guarantee-box h5 {
    font-size: 1.2rem;
  }
}

/* Real Wood színek szekció */
.realwood-colors-section {
  padding: 60px 0;
  background: #ffffff;
}

.colors-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #2b2a2a;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.realwood-colors-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.realwood-colors-section .color-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.realwood-colors-section .color-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.realwood-colors-section .color-item img {
  width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* TARTSD MEG A TELJES KÉPET */
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }

.realwood-colors-section .color-item:hover img {
  transform: scale(1.05);
  }

.realwood-colors-section .color-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2b2a2a;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.realwood-colors-section .color-item:hover .color-name {
  color: #ffa000;
}

/* Tablet */
@media (max-width: 992px) {
  .realwood-colors-grid {
    gap: 40px;
  }
  
  .realwood-colors-section .color-item img {
    width: 280px;
    height: 280px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .realwood-colors-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .realwood-colors-section {
    padding: 50px 0;
  }
  
  .realwood-colors-section .color-item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
  }
}

/* Nagy képernyő */
@media (min-width: 1400px) {
  .realwood-colors-grid {
    gap: 80px;
  }
  
  .realwood-colors-section .color-item img {
    width: 360px;
    height: 360px;
  }
}

/* Real Wood cím színezés - arany/narancs */
.realwood-title {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6f00, #ffa000) !important;
}

/* Záró szekció - WPC tulajdonságok */
.wpc-features-closing {
  padding: 80px 0;
  background: #2b2a2a;
  margin-bottom: 120px;
}

.closing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.all-feature-box {
  background: rgba(237, 28, 36, 0.3);
  border: 2px solid rgba(237, 28, 36, 0.6);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(5px);
}

.all-feature-box:hover {
  background: rgba(237, 28, 36, 0.5);
  border-color: rgba(237, 28, 36, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
}

/* Tablet */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }
  
  .feature-box {
    padding: 20px 15px;
    font-size: 1rem;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .wpc-features-closing {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .closing-title {
    margin-bottom: 40px;
  }
}

 /* WPC HERO – ÁTFEDŐ KÉPEK + ZOOM */
 .kwpc-hero {
  position: relative;
  height: 100%;
  min-height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* 4 átfedő kép + folyamatos zoom */
.kwpc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('../images/wpckerites/k-hero/2.jpg'),    /* fekvő 1920x1080 vagy 1600x900 */
    url('../images/wpchero/hero2.jpg'),
    url('../images/wpchero/hero3.jpg'),
    url('../images/wpchero/hero4.jpg');
  background-size: cover;               /* fekvő képekhez tökéletes */
  background-position: center center;    /* középre igazítás */
  background-repeat: repeat;          /* ismétlődés engedélyezése */
  animation: heroSlides 20s infinite linear, heroZoom 4s infinite ease-in-out;
  z-index: 1; 
}


@keyframes heroSlides {
  0%, 25% { background-position: 0% 50%; }
  25%, 50% { background-position: 100% 50%; }
  50%, 75% { background-position: 100% 100%; }
  75%, 100% { background-position: 0% 100%; }
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* Tartalom */
.khero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease-out;
}

.khero-content h1 {
  font-size: clamp(48px, 8vw, 60px);
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  letter-spacing: -1px;
}

.khero-content h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 400;
  margin: 0 0 48px 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* 3 előny doboz */
.khero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.kfeature-box {
  background: rgba(54, 54, 54, 0.272);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 220px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.kfeature-box:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.kcheckmark-icon {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(237,28,36,0.4);
}

.kfeature-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.khero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 32px 0;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button.large {
  /* meglévő stílusok */
  background: linear-gradient(135deg, var(--color-red), #ff4444);
  color: white;
  padding: 20px 48px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(237,28,36,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth */
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;  /* új: glow effekthez */
}

.cta-button.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.cta-button.large:hover {
  transform: translateY(-8px) scale(1.06); /* nagyobb emelés */
  box-shadow: 0 35px 70px rgba(237,28,36,0.6); /* erősebb glow */
  background: linear-gradient(135deg, #ff3333, #cc0000); /* sötétebb piros */
}

.cta-button.large:hover::before {
  left: 100%; /* swipe fénycsík */
}


/* Animációk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-box {
    min-width: 280px;
    padding: 20px 16px;
  }
}

/* Kerítés problémák szekció */
.fence-problems-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 320px;
}

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  object-fit: cover;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #ed1c24;
  margin: 0 0 40px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problems-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #dc3545;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(220,53,69,0.1);
}

.problems-block h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b2a2a;
  margin: 0 0 20px 0;
}

/* Dislike jelekkel lista */
.dislike-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.dislike-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
}

.dislike-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 36px;
  height: 36px;
  background: #dc3545 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') center/contain no-repeat;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(220,53,69,0.3);
}

.warning-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #dc3545;
  font-weight: 600;
  background: rgba(220,53,69,0.05);
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #dc3545;
}

.solution-text {
  margin-top: 40px;
}

.solution-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #28a745;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.solution-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2b2a2a;
  margin-bottom: 20px;
}

/* Mobil */
@media (max-width: 768px) {
  .fence-problems-section {
    padding: 60px 0;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .problems-block {
    padding: 25px 20px;
  }
  
  .dislike-list li {
    padding-left: 60px;
    font-size: 1.05rem;
  }
  
  .warning-text {
    padding: 18px 20px;
    margin: 25px -20px;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .problems-block h4 {
    font-size: 1.2rem;
  }
  
  .solution-text h3 {
    font-size: 1.4rem;
  }
}

/* WPC kerítés előnyök szekció */
.fence-benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #28a745;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 320px;
}

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  object-fit: cover;
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #2b2a2a;
  margin: 0 0 35px 0;
  font-weight: 600;
}

.benefits-block {
  background: linear-gradient(135deg, rgba(40,167,69,0.08) 0%, rgba(40,167,69,0.03) 100%);
  padding: 35px 35px;
  border-radius: 16px;
  border-left: 5px solid #28a745;
  margin: 35px 0;
  box-shadow: 0 8px 25px rgba(40,167,69,0.1);
}

.benefits-block h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b2a2a;
  margin: 0 0 25px 0;
}

/* Like (pipa) jelekkel lista */
.like-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.like-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

.like-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 36px;
  height: 36px;
  background: #28a745 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(40,167,69,0.35);
}

.description-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #495057;
  margin: 30px 0;
}

.cta-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #2b2a2a;
  font-weight: 600;
  margin: 35px 0 25px 0;
}

.cta-wrapper {
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff !important;
  padding: 20px 45px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 15px 40px rgba(40,167,69,0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(40,167,69,0.6);
  background: linear-gradient(135deg, #20c997, #28a745);
}

.cta-button:active {
  transform: translateY(-2px);
}

/* Mobil */
@media (max-width: 768px) {
  .fence-benefits-section {
    padding: 60px 0;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .intro-text {
    font-size: 1.2rem;
  }
  
  .benefits-block {
    padding: 30px 25px;
  }
  
  .benefits-block h4 {
    font-size: 1.3rem;
  }
  
  .like-list li {
    padding-left: 60px;
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .cta-intro {
    font-size: 1.15rem;
  }
}

/* Element WPC Kerítés Szekció - háttérképpel */
.element-fence-section {
  padding: 80px 0;
  background-color: #2b2a2a; /* Ha nem tölt be a kép, legalább látszik valami */
  background-image: url('/assets/images/element_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43,42,42,0.45) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.element-fence-section .container {
  position: relative;
  z-index: 2;
}

.e-main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.content-box {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255,255,255,0.35);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px); /* Üveg blur */
  -webkit-backdrop-filter: blur(20px); /* Safari */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Fényes szélek */
}

.content-box .text-block p {
  color: #ffffff;
}

.text-block {
  margin-bottom: 35px;
}

.text-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2b2a2a;
  margin-bottom: 20px;
}

.text-block p strong {
  color: #ed1c24;
  font-weight: 700;
}

.important-note {
  background: rgba(255,193,7,0.55);
  padding: 15px 20px;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  font-weight: 600;
  color: #2b2a2a;
}

/* Kiemelt doboz - Figyelmeztetés (narancs) */
.highlight-box {
  padding: 30px 35px;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-box.warning {
  background: linear-gradient(135deg, #fff3cd 25%, #ffe8a1 45%);
  border-left: 6px solid #ff9800;
}

.highlight-box.info {
  background: linear-gradient(135deg, #e3f2fd 25%, #bbdefb 45%);
  border-left: 6px solid #2196f3;
}

.highlight-box h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #2b2a2a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 15px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.highlight-box p strong {
  color: #d32f2f;
  font-weight: 700;
}

.small-note {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-top: 15px;
}

/* Mobil */
@media (max-width: 768px) {
  .element-fence-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .content-box {
    padding: 40px 30px;
  }
  
  .main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .text-block p {
    font-size: 1.05rem;
  }
  
  .highlight-box {
    padding: 25px 20px;
  }
  
  .highlight-box h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .content-box {
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .text-block {
    margin-bottom: 25px;
  }
}

/* Element WPC színek szekció */
.element-colors-section {
  padding: 60px 0;
  background: #ffffff;
}

.colors-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2b2a2a;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.element-colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.element-colors-section .color-item {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}



.element-colors-section .color-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
 
}

.element-colors-section .color-item:hover img {
  transform: scale(1.1);
}

.element-colors-section .color-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #2b2a2a;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.element-colors-section .color-item:hover .color-name {
  color: #28a745;
}

.new-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,107,107,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Tablet - 2 oszlop */
@media (max-width: 992px) {
  .element-colors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .element-colors-section .color-item img {
    height: 250px;
  }
}

/* Mobil - 1 oszlop */
@media (max-width: 600px) {
  .element-colors-section {
    padding: 60px 0;
  }
  
  .element-colors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .colors-title {
    margin-bottom: 40px;
  }
  
  .element-colors-section .color-item img {
    height: auto;
    max-width: 350px;
    margin: 0 auto 20px;
  }
}

/* Nagy képernyő */
@media (min-width: 1400px) {
  .element-colors-grid {
    gap: 50px;
  }
  
  .element-colors-section .color-item img {
    height: 320px;
  }
}

/* Element kerítés cím színezés - zöld */
.element-title {
  color: #ffffff;
  background: linear-gradient(135deg, #2e7d32, #43a047) !important;
}

/* Árinfó + színkockák */
.price-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.2s ease;
}

/* Színkockák */
.color-swatches {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.2);
  border-color: #28a745;
  box-shadow: 0 4px 16px rgba(40,167,69,0.4);
}

.color-swatch::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.color-swatch:hover::after {
  opacity: 1;
}

/* Mobil nézet javítás */
@media (max-width: 768px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
  }
  
  .price-amount {
    align-self: flex-start;
    font-size: 1.5rem;
    margin-left: 0;
  }
  
  .color-swatches {
    margin-top: 12px;
  }
  
  .color-swatch {
    width: 32px;
    height: 32px;
  }
  
  .color-swatch::after {
    bottom: -35px;
    font-size: 0.8rem;
  }
}

/* Woody Kerítés Szekció - háttérképpel */
.woody-fence-section {
  margin-top: 80px;
  padding: 80px 0;
  background: url('/assets/images/woodykbg.jpg') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.woody-fence-section .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.85) 0%, rgba(33,33,33,0.80) 100%);
  z-index: 1;
}

.woody-fence-section .container {
  position: relative;
  z-index: 2;
}

.woody-fence-section .main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.woody-fence-section .content-box {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.woody-fence-section .text-block {
  margin-bottom: 35px;
}

.woody-fence-section .text-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.woody-fence-section .text-block p strong {
  color: #ffc107;
  font-weight: 700;
}

.woody-fence-section .color-info {
  background: rgba(255, 193, 7, 0.2);
  padding: 15px 20px;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  font-weight: 600;
}

/* Összetétel blokk */
.woody-fence-section .composition {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 4px solid #8d6e63;
  margin: 30px 0;
}

.woody-fence-section .composition h5 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffc107;
  margin: 0 0 15px 0;
}

.woody-fence-section .small-note {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-top: 15px;
}

/* Kiemelt dobozok */
.woody-fence-section .highlight-box {
  padding: 30px 35px;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.woody-fence-section .highlight-box.warning {
  background: rgba(255, 243, 205, 0.25);
  border-left: 6px solid #ff9800;
  backdrop-filter: blur(10px);
}

.woody-fence-section .highlight-box.info {
  background: rgba(227, 242, 253, 0.25);
  border-left: 6px solid #2196f3;
  backdrop-filter: blur(10px);
}

.woody-fence-section .highlight-box h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woody-fence-section .highlight-box p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 15px;
}

.woody-fence-section .highlight-box p:last-child {
  margin-bottom: 0;
}

.woody-fence-section .highlight-box p strong {
  color: #ffc107;
  font-weight: 700;
}

/* Mobil */
@media (max-width: 768px) {
  .woody-fence-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .woody-fence-section .content-box {
    padding: 40px 30px;
  }
  
  .woody-fence-section .main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .woody-fence-section .text-block p {
    font-size: 1.05rem;
  }
  
  .woody-fence-section .highlight-box {
    padding: 25px 20px;
  }
  
  .woody-fence-section .highlight-box h4 {
    font-size: 1.3rem;
  }
  
  .woody-fence-section .composition {
    padding: 20px 25px;
  }
}

@media (max-width: 480px) {
  .woody-fence-section .content-box {
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .woody-fence-section .text-block {
    margin-bottom: 25px;
  }
}

/* Woody Variánsok Szekció */
.woody-variants-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #2b2a2a;
  text-align: center;
  margin: 0 0 70px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.variant-group {
  margin-bottom: 80px;
}

.variant-group:last-child {
  margin-bottom: 0;
}

.variant-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #6f3c2a;
  text-align: center;
  margin: 0 0 40px 0;
  position: relative;
  padding-bottom: 15px;
}

.variant-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
 
}

.variant-colors-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.woody-variants-section .color-item {
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex: 0 0 auto;
}

.woody-variants-section .color-item:hover {
  transform: translateY(-15px);
}

.woody-variants-section .color-item img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
 
}

.woody-variants-section .color-item:hover img {
  transform: scale(1.1);
}

.woody-variants-section .color-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2b2a2a;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
}

.woody-variants-section .color-item:hover .color-name {
  color: #6f3c2a;
}

/* Tablet */
@media (max-width: 992px) {
  .variant-colors-grid {
    gap: 40px;
  }
  
  .woody-variants-section .color-item img {
    width: 250px;
    height: 250px;
  }
  
  .variant-group {
    margin-bottom: 60px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .woody-variants-section {
    padding: 60px 0;
  }
  
  .variant-colors-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .woody-variants-section .color-item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .variant-title {
    margin-bottom: 30px;
  }
}

/* Nagy képernyő */
@media (min-width: 1400px) {
  .variant-colors-grid {
    gap: 60px;
  }
  
  .woody-variants-section .color-item img {
    width: 340px;
    height: 340px;
  }
}

/* Woody kerítés cím színezés - barna árnyalat */
.woody-fence-title {
  color: #ffffff;
  background: linear-gradient(135deg, #6f3c2a, #a1887f) !important;
}


/* WPC HERO – ÁTFEDŐ KÉPEK + ZOOM */
.fwpc-hero {
  position: relative;
  height: 100%;
  min-height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* 4 átfedő kép + folyamatos zoom */
.fwpc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('../images/wpcfal/falhero.png'),    /* fekvő 1920x1080 vagy 1600x900 */
    url('../images/wpchero/hero2.jpg'),
    url('../images/wpchero/hero3.jpg'),
    url('../images/wpchero/hero4.jpg');
  background-size: cover;               /* fekvő képekhez tökéletes */
  background-position: center center;    /* középre igazítás */
  background-repeat: repeat;          /* ismétlődés engedélyezése */
  animation: heroSlides 20s infinite linear, heroZoom 4s infinite ease-in-out;
  z-index: 1; 
}


@keyframes heroSlides {
  0%, 25% { background-position: 0% 50%; }
  25%, 50% { background-position: 100% 50%; }
  50%, 75% { background-position: 100% 100%; }
  75%, 100% { background-position: 0% 100%; }
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* Falburkolat HERO */
.fhero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease-out;
}

.fhero-content h1 {
  font-size: clamp(48px, 8vw, 60px);
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  letter-spacing: -1px;
}

.fhero-content h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 400;
  margin: 0 0 48px 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* 3 előny doboz */
.fhero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.ffeature-box {
  background: rgba(54, 54, 54, 0.272);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 220px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.ffeature-box:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fcheckmark-icon {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(237,28,36,0.4);
}

.ffeature-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.fhero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 32px 0;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button.large {
  /* meglévő stílusok */
  background: linear-gradient(135deg, var(--color-red), #ff4444);
  color: white;
  padding: 20px 48px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(237,28,36,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth */
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;  /* új: glow effekthez */
}

.cta-button.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.cta-button.large:hover {
  transform: translateY(-8px) scale(1.06); /* nagyobb emelés */
  box-shadow: 0 35px 70px rgba(237,28,36,0.6); /* erősebb glow */
  background: linear-gradient(135deg, #ff3333, #cc0000); /* sötétebb piros */
}

.cta-button.large:hover::before {
  left: 100%; /* swipe fénycsík */
}


/* Animációk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-box {
    min-width: 280px;
    padding: 20px 16px;
  }
}

/* WPC Falburkolat main szekció */
.wallcover-main-section {
  padding: 80px 0;
  background: url('/assets/images/wpcfal/fal_bg.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.wallcover-main-section .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43,42,42,0.88) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}

.wallcover-main-section .container {
  position: relative;
  z-index: 2;
}

.wallcover-main-section .main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Kép + szöveg kétoszlopos elrendezés */
.wallcover-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.wallcover-image {
  flex: 1;
  min-width: 280px;
  position: sticky;
  top: 20px;
}

.wallcover-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.wallcover-text {
  flex: 1.4;
  min-width: 300px;
}

/* Szövegdoboz üveghatással */
.wallcover-text.content-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 45px 50px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.wallcover-text .text-block {
  margin-bottom: 35px;
}

.wallcover-text .text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 18px;
}

.wallcover-text .text-block p strong {
  color: #ffc107;
  font-weight: 700;
}

.wallcover-text .small-note {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  border-left: 3px solid rgba(255,255,255,0.3);
  padding-left: 12px;
  margin-top: 20px;
}

/* Kiemelt dobozok */
.wallcover-text .highlight-box {
  padding: 28px 32px;
  border-radius: 14px;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.wallcover-text .highlight-box.info {
  background: rgba(33, 150, 243, 0.2);
  border-left: 5px solid #2196f3;
  backdrop-filter: blur(8px);
}

.wallcover-text .highlight-box.warning {
  background: rgba(255, 152, 0, 0.2);
  border-left: 5px solid #ff9800;
  backdrop-filter: blur(8px);
}

.wallcover-text .highlight-box h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 15px 0;
}

.wallcover-text .highlight-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 12px;
}

.wallcover-text .highlight-box p:last-child {
  margin-bottom: 0;
}

.wallcover-text .highlight-box p strong {
  color: #ffc107;
  font-weight: 700;
}

/* Mobil */
@media (max-width: 992px) {
  .wallcover-content {
    flex-direction: column;
    gap: 35px;
  }

  .wallcover-image {
    position: static;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wallcover-main-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .wallcover-text.content-box {
    padding: 30px 25px;
  }

  .wallcover-main-section .main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .wallcover-text .text-block p {
    font-size: 1.05rem;
  }

  .wallcover-text .highlight-box {
    padding: 22px 20px;
  }

  .wallcover-text .highlight-box h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .wallcover-text.content-box {
    padding: 25px 18px;
    border-radius: 12px;
  }
}

/* Woody WPC Falburkolat – színválaszték szekció */
.wwoody-colors-section {
  padding: 60px 0;
  background: #ffffff;
}

.wwoody-colors-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2b2a2a;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

/* 3 oszlopos grid */
.wwoody-colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}



.wwoody-color-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwoody-color-item {
  text-align: center;
  cursor: pointer;
  border-radius: 18px;
  padding: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

/* Az egész kártya emelkedik fel – kép + szöveg együtt */
.wwoody-color-item:hover {
  transform: translateY(-10px);

}

/* Kép hover-t TÖRÖLD vagy felülírd így – ne legyen külön scale */
.wwoody-color-item:hover img {
  transform: scale(1.1);
}

.wwoody-color-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #2b2a2a;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wwoody-color-item:hover .wwoody-color-name {
  color: #ed9c7e;
}


/* Tablet – 2 oszlop */
@media (max-width: 992px) {
  .wwoody-colors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 700px;
  }

  .wwoody-color-item img {
    height: 250px;
  }
}

/* Mobil – 1 oszlop */
@media (max-width: 600px) {
  .wwoody-colors-section {
    padding: 50px 0;
  }

  .wwoody-colors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wwoody-colors-title {
    margin-bottom: 40px;
  }

  .wwoody-color-item img {
    height: auto;
    max-width: 350px;
    margin: 0 auto 20px;
    display: block;
  }
}

/* Nagy képernyő */
@media (min-width: 1400px) {
  .wwoody-colors-grid {
    gap: 50px;
    max-width: 1100px;
  }

  .wwoody-color-item img {
    height: 320px;
  }
}

/* Woody Falburkolat árlista wrapper */
.wwoody-wall-pricing {
  margin-top: 0;
}

/* Fejléc sáv színe – meleg barna, illik a falburkolat témához */
.wwoody-wall-pricing .pricing-header {
  background: linear-gradient(135deg, #5d4037, #8d6e63);
}

.wwoody-wall-pricing .pricing-header:hover {
  background: linear-gradient(135deg, #4e342e, #795548);
}

/* Csoport cím – barna árnyalat */
.wwoody-wall-title {
  color: #ffffff;
  background: linear-gradient(135deg, #6d4c41, #a1887f) !important;
}

/* Highlight sor – első kiemelt termék */
.wwoody-wall-pricing .price-item.highlight {
  border-left: 4px solid #8d6e63;
}

.wwoody-wall-pricing .price-item.highlight .price-amount {
  color: #6d4c41;
}

/* 3D Co-ex WPC Falburkolat szekció */
.coex-main-section {
  padding: 80px 0;
  background: url('/assets/images/wpcfal/coex_bg.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.coex-main-section .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.90) 0%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
}

.coex-main-section .container {
  position: relative;
  z-index: 2;
}

.coex-main-section .main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Fő üveghatású doboz */
.coex-content.content-box {
  background: rgba(255,255,255,0.13);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.22);
  max-width: 1000px;
  margin: 0 auto;
}

/* Szöveg blokk */
.coex-content .text-block {
  margin-bottom: 40px;
}

.coex-content .text-block p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #ffffff;
  margin-bottom: 18px;
}

.coex-content .text-block p strong {
  color: #ffc107;
  font-weight: 700;
}

.coex-content .small-note {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  border-left: 3px solid rgba(255,255,255,0.3);
  padding-left: 12px;
  margin-top: 20px;
}

/* UV + Hőtágulás – egymás mellett */
.coex-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.coex-content .highlight-box {
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.coex-content .highlight-box.info {
  background: rgba(33,150,243,0.2);
  border-left: 5px solid #2196f3;
  backdrop-filter: blur(8px);
}

.coex-content .highlight-box.warning {
  background: rgba(255,152,0,0.2);
  border-left: 5px solid #ff9800;
  backdrop-filter: blur(8px);
}

.coex-content .highlight-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.coex-content .highlight-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 12px;
}

.coex-content .highlight-box p:last-child {
  margin-bottom: 0;
}

.coex-content .highlight-box p strong {
  color: #ffc107;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 992px) {
  .coex-content.content-box {
    padding: 40px 35px;
  }

  .coex-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .coex-main-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .coex-content.content-box {
    padding: 30px 22px;
  }

  .coex-main-section .main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  /* Mobilon egymás alá kerül a két doboz */
  .coex-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coex-content .text-block p {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .coex-content.content-box {
    padding: 25px 16px;
    border-radius: 12px;
  }
}

/* 3D Co-ex Falburkolat – színválaszték szekció */
.wcoex-colors-section {
  padding: 60px 0;
  background: #ffffff;
}

.wcoex-colors-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2b2a2a;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

/* 2 oszlopos grid – középre igazítva */
.wcoex-colors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.wcoex-color-item {
  text-align: center;
  cursor: pointer;
  border-radius: 18px;
  padding: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 
}

/* Egész kártya emelkedik – kép + szöveg együtt */
.wcoex-color-item:hover {
  transform: translateY(-10px);
  
}

.wcoex-color-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcoex-color-item:hover img {
  transform: scale(1.1);
}


.wcoex-color-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #2b2a2a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcoex-color-item:hover .wcoex-color-name {
  color: #6d4c41;
}

/* Tablet */
@media (max-width: 768px) {
  .wcoex-colors-grid {
    max-width: 500px;
    gap: 25px;
  }
}

/* Mobil – egymás alá */
@media (max-width: 480px) {
  .wcoex-colors-section {
    padding: 50px 0;
  }

  .wcoex-colors-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .wcoex-colors-title {
    margin-bottom: 40px;
  }

  .wcoex-color-item img {
    max-width: 320px;
    margin: 0 auto 20px;
    display: block;
  }
}

/* 3D Co-ex árlista */
.wcoex-pricing .pricing-header {
  background: linear-gradient(135deg, #4e342e, #8d6e63);
}

.wcoex-pricing .pricing-header:hover {
  background: linear-gradient(135deg, #3e2723, #795548);
}

.wcoex-title {
  color: #ffffff;
  background: linear-gradient(135deg, #5d4037, #a1887f) !important;
}

.wcoex-pricing .price-item.highlight {
  border-left: 4px solid #8d6e63;
}

.wcoex-pricing .price-item.highlight .price-amount {
  color: #6d4c41;
}

/* ALU HERO BOX */
.alu-hero {
  position: relative;
  height: 100%;
  min-height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* 4 átfedő kép + folyamatos zoom */
.alu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('/assets/images/alu/alu-hero.png'),    /* fekvő 1920x1080 vagy 1600x900 */
    url('../images/wpchero/hero2.jpg'),
    url('../images/wpchero/hero3.jpg'),
    url('../images/wpchero/hero4.jpg');
  background-size: cover;               /* fekvő képekhez tökéletes */
  background-position: center center;    /* középre igazítás */
  background-repeat: repeat;          /* ismétlődés engedélyezése */
  animation: heroSlides 20s infinite linear, heroZoom 4s infinite ease-in-out;
  z-index: 1; 
}


@keyframes heroSlides {
  0%, 25% { background-position: 0% 50%; }
  25%, 50% { background-position: 100% 50%; }
  50%, 75% { background-position: 100% 100%; }
  75%, 100% { background-position: 0% 100%; }
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* Tartalom */
.alu-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease-out;
}

.alu-hero-content h1 {
  font-size: clamp(48px, 8vw, 60px);
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  letter-spacing: -1px;
}

.alu-hero-content h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 400;
  margin: 0 0 48px 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* 3 előny doboz */
.alu-hero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.alu-feature-box {
  background: rgba(54, 54, 54, 0.272);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 220px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.alu-feature-box:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.alu-checkmark-icon {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(237,28,36,0.4);
}

.alu-feature-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.alu-hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 32px 0;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button.large {
  /* meglévő stílusok */
  background: linear-gradient(135deg, var(--color-red), #ff4444);
  color: white;
  padding: 20px 48px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(237,28,36,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth */
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;  /* új: glow effekthez */
}

.cta-button.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.cta-button.large:hover {
  transform: translateY(-8px) scale(1.06); /* nagyobb emelés */
  box-shadow: 0 35px 70px rgba(237,28,36,0.6); /* erősebb glow */
  background: linear-gradient(135deg, #ff3333, #cc0000); /* sötétebb piros */
}

.cta-button.large:hover::before {
  left: 100%; /* swipe fénycsík */
}


/* Animációk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-box {
    min-width: 280px;
    padding: 20px 16px;
  }
}

/* ============================================
   ALUMÍNIUM KERÍTÉSEK ÉS KAPUK – MAIN SZEKCIÓ
   ============================================ */

   .alu-main-section {
    width: 100%;
  }
  
  /* Váltakozó blokkok */
  .alu-block {
    padding: 90px 0;
  }
  
  .alu-block--alt {
    background: #f7f7f7;
  }
  
  .alu-block:not(.alu-block--alt) {
    background: #ffffff;
  }
  
  /* Sor elrendezés */
  .alu-row {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
  }
  
  /* Kép oldal */
  .alu-image {
    flex: 1;
    min-width: 280px;
  }
  
  .alu-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease;
  }
  
  .alu-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  }
  
  /* Tartalom oldal */
  .alu-content {
    flex: 1.2;
    min-width: 300px;
  }
  
  .alu-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  
  .alu-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 28px;
  }
  
  /* Felsorolás */
  .alu-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
  }
  
  .alu-features li {
    font-size: 1.05rem;
    color: #333333;
    padding: 10px 0 10px 36px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
  }
  
  .alu-features li:last-child {
    border-bottom: none;
  }
  
  .alu-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1565c0, #1976d2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px;
    text-align: center;
  }
  
  /* CTA gomb – szekciónként */
  .alu-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1565c0, #1976d2);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(21,101,192,0.35);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
  }
  
  .alu-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(21,101,192,0.45);
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    color: #ffffff;
    text-decoration: none;
  }
  
  /* ============================================
     CTA ZÁRÓ SZEKCIÓ
     ============================================ */
  
  .alu-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
  }
  
  .alu-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
  }
  
  .alu-cta-box {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .alu-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.3;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .alu-cta-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
    margin-bottom: 44px;
  }
  
  /* Nagy CTA gomb */
  .alu-cta-btn--large {
    font-size: 1.2rem;
    padding: 20px 52px;
    background: #ffffff;
    color: #1565c0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
  }
  
  .alu-cta-btn--large:hover {
    background: #f0f7ff;
    color: #0d47a1;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  }
  
  /* ============================================
     RESZPONZÍV
     ============================================ */
  
  /* Tablet */
  @media (max-width: 992px) {
    .alu-block {
      padding: 70px 0;
    }
  
    .alu-row {
      gap: 45px;
    }
  
    .alu-image img {
      height: 400px;
    }
  }
  
  /* Mobilon mindig kép felül, szöveg alul */
  @media (max-width: 768px) {
    .alu-block {
      padding: 55px 0;
    }
  
    .alu-row {
      flex-direction: column !important;
      gap: 35px;
    }
  
    /* Jobb oldali blokkban is kép kerül felülre mobilon */
    .alu-block--right .alu-image {
      order: -1;
    }
  
    .alu-image img {
      height: 400px;
    }
  
    .alu-cta-section {
      padding: 70px 0;
    }
  
    .alu-cta-btn--large {
      font-size: 1.1rem;
      padding: 18px 36px;
    }
  }
  
  @media (max-width: 480px) {
    .alu-image img {
      height: 220px;
      border-radius: 14px;
    }
  
    .alu-cta-btn {
      width: 100%;
      text-align: center;
    }
  }
  
  /* ROZSDAMENTES KORLAT HERO BOX */
.steel-hero {
  position: relative;
  height: 100%;
  min-height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* 4 átfedő kép + folyamatos zoom */
.steel-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('/assets/images/korlat/korlat-hero.png'),    /* fekvő 1920x1080 vagy 1600x900 */
    url('../images/wpchero/hero2.jpg'),
    url('../images/wpchero/hero3.jpg'),
    url('../images/wpchero/hero4.jpg');
  background-size: cover;               /* fekvő képekhez tökéletes */
  background-position: center center;    /* középre igazítás */
  background-repeat: repeat;          /* ismétlődés engedélyezése */
  animation: heroSlides 20s infinite linear, heroZoom 4s infinite ease-in-out;
  z-index: 1; 
}


@keyframes heroSlides {
  0%, 25% { background-position: 0% 50%; }
  25%, 50% { background-position: 100% 50%; }
  50%, 75% { background-position: 100% 100%; }
  75%, 100% { background-position: 0% 100%; }
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* Tartalom */
.steel-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease-out;
}

.steel-hero-content h1 {
  font-size: clamp(48px, 8vw, 60px);
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  letter-spacing: -1px;
}

.steel-hero-content h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 400;
  margin: 0 0 48px 0;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* 3 előny doboz */
.steel-hero-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.steel-feature-box {
  background: rgba(54, 54, 54, 0.272);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 220px;
  text-align: center;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.steel-feature-box:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.steel-checkmark-icon {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(237,28,36,0.4);
}

.steel-feature-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.steel-hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  margin: 32px 0;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button.large {
  /* meglévő stílusok */
  background: linear-gradient(135deg, var(--color-red), #ff4444);
  color: white;
  padding: 20px 48px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(237,28,36,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth */
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;  /* új: glow effekthez */
}

.cta-button.large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.cta-button.large:hover {
  transform: translateY(-8px) scale(1.06); /* nagyobb emelés */
  box-shadow: 0 35px 70px rgba(237,28,36,0.6); /* erősebb glow */
  background: linear-gradient(135deg, #ff3333, #cc0000); /* sötétebb piros */
}

.cta-button.large:hover::before {
  left: 100%; /* swipe fénycsík */
}


/* Animációk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-box {
    min-width: 280px;
    padding: 20px 16px;
  }
}

/* ============================================
   ROZSDAMENTES KORLÁTOK – INOX SZEKCIÓ
   ============================================ */

   .inox-main-section {
    padding: 90px 0;
    background: url('/assets/images/korlat/korlat-bg.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
  }
  
  .inox-main-section .background-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, rgba(15,20,30,0.80) 0%, rgba(10,10,20,0.85) 100%);
    z-index: 1;
  }
  
  .inox-main-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* HERO FEJ */
  .inox-hero {
    text-align: center;
    margin-bottom: 65px;
  }
  
  .inox-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b0bec5, #eceff1);
    color: #1a237e;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(176,190,197,0.3);
  }
  
  .inox-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  
  .inox-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .inox-subtitle strong {
    color: #e0e0e0;
    font-weight: 700;
  }
  
  /* TERMÉKCSOPORTOK KÁRTYÁK */
  .inox-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
  }
  
  .inox-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s ease,
                box-shadow 0.4s ease;
    cursor: default;
  }
  
  .inox-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.14);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.28);
  }
  
  .inox-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
  }
  
  .inox-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
  }
  
  .inox-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0;
  }
  
  /* ELŐNYÖK SÁV */
  .inox-features-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 40px;
    margin-bottom: 55px;
    backdrop-filter: blur(8px);
  }
  
  .inox-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
  }
  
  .inox-feature-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #78909c, #b0bec5);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 26px;
    text-align: center;
  }
  
  /* KÉP SHOWCASE */
  .inox-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }
  
  .inox-showcase-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    cursor: pointer;
  }
  
  .inox-showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .inox-showcase-item:hover img {
    transform: scale(1.05);
  }
  
  .inox-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 24px 22px 18px;
    margin: 0;
    letter-spacing: 0.3px;
  }
  
  /* CTA */
  .inox-cta-wrap {
    text-align: center;
  }
  
  .inox-cta-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
  }
  
  .inox-cta-text strong {
    color: #ffffff;
    font-weight: 700;
  }
  
  .inox-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #78909c, #b0bec5);
    color: #0d0d0d;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(120,144,156,0.4);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
  }
  
  .inox-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(120,144,156,0.55);
    background: linear-gradient(135deg, #90a4ae, #cfd8dc);
    color: #0d0d0d;
    text-decoration: none;
  }
  
  /* ============================================
     RESZPONZÍV
     ============================================ */
  
  @media (max-width: 992px) {
    .inox-cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .inox-features-bar {
      gap: 14px 25px;
      padding: 24px 28px;
    }
  }
  
  @media (max-width: 768px) {
    .inox-main-section {
      padding: 65px 0;
      background-attachment: scroll;
    }
  
    .inox-cards-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
  
    .inox-card {
      padding: 24px 20px;
    }
  
    .inox-showcase {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .inox-showcase-item img {
      height: 260px;
    }
  
    .inox-features-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      padding: 24px 22px;
    }
  }
  
  @media (max-width: 480px) {
    .inox-cards-grid {
      grid-template-columns: 1fr;
    }
  
    .inox-cta-btn {
      width: 100%;
      text-align: center;
      padding: 18px 24px;
    }
  
    .inox-main-section .inox-hero {
      margin-bottom: 45px;
    }
  }
  
  /* ============================================
   ZÁRÓ CTA SZEKCIÓ
   ============================================ */

.main-cta-section {
  padding: 100px 0;
  background: url('/assets/images/index/callus.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.main-cta-section .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.80) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.main-cta-section .container {
  position: relative;
  z-index: 2;
}

/* Wrapper */
.main-cta-wrapper {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Cím */
.main-cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Alcím */
.main-cta-subtitle {
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  margin: 0 0 52px 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Gombok konténer */
.main-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Gomb alap */
.main-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}

.btn-icon {
  font-size: 1.2rem;
}

/* Kapcsolat gomb – fehér */
.main-cta-btn--primary {
  background: #ffffff;
  color: #0d1b2a;
  box-shadow: 0 10px 35px rgba(255,255,255,0.15);
}

.main-cta-btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(255,255,255,0.25);
  background: #f0f4ff;
  color: #0d1b2a;
  text-decoration: none;
}

/* Webshop gomb – áttetsző keret */
.main-cta-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.main-cta-btn--secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 18px 45px rgba(0,0,0,0.3);
  color: #ffffff;
  text-decoration: none;
}

/* Reszponzív */
@media (max-width: 600px) {
  .main-cta-section {
    padding: 75px 0;
    background-attachment: scroll;
  }

  .main-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .main-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
  }
}

/* ============================================
   KAPCSOLAT OLDAL
   ============================================ */

/* 1. HERO */
.contact-hero {
  padding: 120px 0 100px;
  background: url('/assets/images/index/callus.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.contact-hero .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 720px;
}

.contact-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.contact-hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  margin: 0 0 44px 0;
  max-width: 580px;
}

.contact-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* GOMBOK */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.contact-btn--primary {
  background: #ffffff;
  color: #0d1b2a;
  box-shadow: 0 8px 28px rgba(255,255,255,0.15);
}
.contact-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,255,255,0.25);
  background: #f0f6ff;
  color: #0d1b2a;
  text-decoration: none;
}

.contact-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}
.contact-btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.contact-btn--outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #cccccc;
}
.contact-btn--outline:hover {
  transform: translateY(-3px);
  border-color: #1a1a1a;
  background: #f5f5f5;
  color: #1a1a1a;
  text-decoration: none;
}

.contact-btn--facebook {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(24,119,242,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-btn--facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(24,119,242,0.5);
  background: #1465d8;
  color: #ffffff;
  text-decoration: none;
}

/* 2. TÉRKÉP + CÉG ADATOK */
.contact-info-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-map {
  height: 880px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cég adatok */
.contact-details-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 32px 0;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #eeeeee;
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.detail-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1565c0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.detail-link:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* Nyitvatartás */
.contact-opening {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.opening-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.opening-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  font-size: 1rem;
  color: #444444;
}

.opening-grid span:nth-child(odd) {
  font-weight: 600;
}

.opening-grid .closed {
  color: #e53935;
  font-weight: 700;
}

/* 3. FOLYAMAT SZEKCIÓ */
.contact-cprocess-section {
  padding: 90px 0;
  background: #ffffff;
}

.cprocess-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 16px 0;
}

.cprocess-subtitle {
  font-size: 1.15rem;
  color: #666666;
  text-align: center;
  margin: 0 0 60px 0;
}

.cprocess-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cprocess-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 36px 24px;
  background: #f7f8fa;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cprocess-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cstep-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(21,101,192,0.4);
}

.cstep-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.cstep-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.cstep-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.cprocess-arrow {
  font-size: 2rem;
  color: #cccccc;
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.cprocess-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* 4. FACEBOOK */
.contact-facebook-section {
  padding: 70px 0;
  background: #f0f4ff;
}

.facebook-cta-box {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 50px;
  box-shadow: 0 15px 50px rgba(24,119,242,0.1);
  border: 1px solid rgba(24,119,242,0.12);
  flex-wrap: wrap;
}

.facebook-icon {
  color: #1877f2;
  flex-shrink: 0;
}

.facebook-text {
  flex: 1;
  min-width: 260px;
}

.facebook-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.facebook-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555555;
  margin: 0;
}

/* ============================================
   RESZPONZÍV
   ============================================ */

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-map {
    height: 350px;
  }

  .process-steps {
    gap: 20px;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 90px 0 80px;
    background-attachment: scroll;
  }

  .contact-hero-btns {
    flex-direction: column;
    gap: 14px;
  }

  .contact-btn {
    justify-content: center;
    width: 100%;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .facebook-cta-box {
    padding: 32px 28px;
    flex-direction: column;
    text-align: center;
  }

  .facebook-cta-box .contact-btn--facebook {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-map {
    height: 280px;
  }

  .process-cta {
    flex-direction: column;
  }

  .process-cta .contact-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ADATVÉDELMI TÁJÉKOZTATÓ
   ============================================ */

/* HERO */
.privacy-hero {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

.privacy-hero-content {
  text-align: center;
}

.privacy-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.privacy-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px 0;
  letter-spacing: -0.02em;
}

.privacy-hero-meta {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
}

.privacy-hero-meta strong {
  color: rgba(255,255,255,0.9);
}

/* TARTALOM SZEKCIÓ */
.privacy-content-section {
  padding: 70px 0 90px;
  background: #f7f8fa;
}

/* Layout: nav + tartalom */
.privacy-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* BAL NAV */
.privacy-nav {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  border: 1px solid #eeeeee;
}

.privacy-nav-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  margin: 0 0 18px 0;
}

.privacy-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-nav ul li {
  margin-bottom: 6px;
}

.privacy-nav ul li a {
  font-size: 0.95rem;
  color: #444444;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
}

.privacy-nav ul li a:hover {
  background: #f0f4ff;
  color: #1565c0;
}

/* TARTALOM */
.privacy-body {
  flex: 1;
  min-width: 0;
}

/* Szekció */
.privacy-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 44px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #eeeeee;
  scroll-margin-top: 30px;
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.privacy-section-num {
  font-size: 0.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.privacy-section-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.privacy-section p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 16px;
}

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

/* Lista */
.privacy-list {
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.privacy-list li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #444444;
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.privacy-list li:last-child {
  border-bottom: none;
}

.privacy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  color: #1565c0;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Alszekció */
.privacy-subsection {
  margin-bottom: 24px;
}

.privacy-subsection h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 10px 0;
}

/* Táblázat */
.privacy-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  margin: 16px 0;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.privacy-table thead tr {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #ffffff;
}

.privacy-table thead th {
  padding: 14px 20px;
  font-weight: 700;
  text-align: left;
}

.privacy-table tbody tr:nth-child(odd) {
  background: #f7f8fa;
}

.privacy-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.privacy-table td {
  padding: 13px 20px;
  color: #444444;
  border-bottom: 1px solid #eeeeee;
  vertical-align: top;
}

.privacy-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.privacy-table a {
  color: #1565c0;
  text-decoration: none;
}

.privacy-table a:hover {
  text-decoration: underline;
}

/* Kék info doboz */
.privacy-info-box {
  background: #e3f2fd;
  border-left: 5px solid #1565c0;
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: #1a237e;
  margin-top: 20px;
}

.privacy-info-box a {
  color: #1565c0;
  font-weight: 700;
  text-decoration: none;
}

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

/* Jogok rács */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.privacy-right-item {
  background: #f7f8fa;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.right-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.privacy-right-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.privacy-right-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #666666;
  margin: 0 !important;
}

/* ============================================
   RESZPONZÍV
   ============================================ */

@media (max-width: 1024px) {
  .privacy-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .privacy-layout {
    flex-direction: column;
    gap: 30px;
  }

  .privacy-nav {
    width: 100%;
    position: static;
  }

  .privacy-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .privacy-nav ul li {
    margin: 0;
  }

  .privacy-nav ul li a {
    padding: 6px 14px;
    background: #f0f4ff;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .privacy-section-header h2 {
    font-size: 1.25rem;
  }

  .privacy-rights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 60px 0 45px;
  }

  .privacy-section {
    padding: 24px 18px;
  }

  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-table td {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}

/* ============================================
   SÜTI BANNER
   ============================================ */

   .cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(200px);
    width: calc(100% - 40px);
    max-width: 900px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18),
                0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eeeeee;
    z-index: 99999;
    opacity: 0;
    pointer-events: none; /* ← EZ HIÁNYZOTT – láthatatlanul is blokkolta */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease;
    padding: 28px 32px;
  }
  
  /* Belépő animáció */
  .cookie-banner.cookie-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all; /* ← látható állapotban kattintható */
  }
  
  /* Kilépő animáció */
  .cookie-banner.cookie-hide {
    transform: translateX(-50%) translateY(200px);
    opacity: 0;
  }
  
  .cookie-content {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  
  .cookie-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
  }
  
  .cookie-text {
    flex: 1;
    min-width: 260px;
  }
  
  .cookie-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
  }
  
  .cookie-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
  }
  
  .cookie-link {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
  }
  
  .cookie-link:hover {
    text-decoration: underline;
  }
  
  /* Gombok */
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
    white-space: nowrap;
  }
  
  .cookie-btn--accept {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(21,101,192,0.35);
  }
  
  .cookie-btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(21,101,192,0.45);
    background: linear-gradient(135deg, #0d47a1, #1565c0);
  }
  
  .cookie-btn--decline {
    background: #f5f5f5;
    color: #666666;
  }
  
  .cookie-btn--decline:hover {
    background: #eeeeee;
    transform: translateY(-2px);
  }
  
  .cookie-btn--more {
    background: transparent;
    color: #1565c0;
    border: 2px solid #1565c0;
    font-size: 0.92rem;
  }
  
  .cookie-btn--more:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
  }
  
  /* Mobil */
  @media (max-width: 600px) {
    .cookie-banner {
      bottom: 16px;
      padding: 22px 20px;
      border-radius: 16px;
    }
  
    .cookie-content {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  
    .cookie-buttons {
      width: 100%;
      flex-direction: column;
    }
  
    .cookie-btn {
      width: 100%;
      padding: 14px 20px;
    }
  }

  /* ============================================
   RÓLUNK OLDAL
   ============================================ */

/* 1. HERO */
.about-hero {
  background: url('/assets/images/rolunk/rolunk-hero.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.about-hero .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
  
}

.about-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.about-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  max-width: 800px;
}

.about-hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin: 0;
}

/* STATISZTIKÁK SÁV */
.about-stats-bar {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
  padding: 0px 0;
}

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

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.about-stat:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

/* 2. BEMUTATKOZÁS */
.about-intro-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
  display: block;
}

.about-intro-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #ffffff;
  border-radius: 20px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(21,101,192,0.4);
}

.badge-year {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.88;
  margin-top: 4px;
}

/* Szöveg */
.about-section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1565c0;
  margin-bottom: 16px;
}

.about-section-tag.centered {
  display: block;
  text-align: center;
}

.about-section-tag.light {
  color: rgba(255,255,255,0.70);
}

.about-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 28px 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-section-title.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px auto;
}

.about-section-title.light {
  color: #ffffff;
}

.about-intro-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #555555;
  margin-bottom: 18px;
}

.about-intro-content p strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* 3. ÉRTÉKEINK */
.about-values-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  border: 1px solid #eeeeee;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.11);
}

.value-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 18px;
}

.about-value-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.about-value-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #666666;
  margin: 0;
}

/* 4. SZAKTERÜLETEK */
.about-expertise-section {
  padding: 90px 0;
  background: url('/assets/images/rolunk/best.png') center/cover no-repeat fixed;
  position: relative;
}

.about-expertise-section .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.93) 0%, rgba(10,20,50,0.90) 100%);
  z-index: 1;
}

.about-expertise-section .container {
  position: relative;
  z-index: 2;
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expertise-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease,
              background 0.4s ease;
  text-align: center;
  text-decoration: none !important;  /* alap link stílus eltávolítás */
                  /* örökli a szülő színét */
}


.expertise-item:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.14);

}

.expertise-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}

.expertise-item h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.expertise-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.expertise-item {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* feltételezve hogy már van display: block vagy flex */
}

.expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.05); /* enyhe háttér világosítás */
}

/* 5. FOLYAMAT */
.about-process-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 0;
}

.about-process-item {
  flex: 1;
  min-width: 180px;
  max-width: 230px;
  text-align: center;
  padding: 40px 24px 36px;
  background: #f7f8fa;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-process-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.09);
}

.process-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1565c0, #1976d2);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(21,101,192,0.35);
}

.about-process-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.about-process-item p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

.about-process-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #1565c0, #90caf9);
  flex-shrink: 0;
  margin-top: -20px;
}

/* 6. CTA */
.about-cta-section {
  padding: 100px 0;
  background: url('/assets/images/rolunk/partner.png') center/cover no-repeat fixed;
  position: relative;
}

.about-cta-section .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.about-cta-section .container {
  position: relative;
  z-index: 2;
}

.about-cta-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px 0;
  line-height: 1.25;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-cta-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin: 0 0 44px 0;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta-btn--primary {
  background: #ffffff;
  color: #0d1b2a;
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

.about-cta-btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(255,255,255,0.25);
  background: #f0f6ff;
  color: #0d1b2a;
  text-decoration: none;
}

.about-cta-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}

.about-cta-btn--secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

/* ============================================
   RESZPONZÍV
   ============================================ */

@media (max-width: 1024px) {
  .about-values-grid,
  .about-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-intro-image img {
    height: 380px;
  }

  .about-intro-badge {
    right: 20px;
    bottom: -18px;
  }
}

@media (max-width: 768px) {
  .about-hero .container {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .about-values-grid,
  .about-expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .about-process-item {
    max-width: 100%;
    width: 100%;
  }

  .about-process-line {
    width: 2px;
    height: 30px;
    margin: 0;
    background: linear-gradient(180deg, #1565c0, #90caf9);
  }

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

  .about-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .about-expertise-section,
  .about-cta-section,
  .about-hero {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-intro-image img {
    height: 280px;
  }

  .about-intro-badge {
    right: 10px;
    bottom: -14px;
    padding: 16px 20px;
  }

  .badge-year {
    font-size: 1.7rem;
  }
}

/* ============================================
   REFERENCIÁK OLDAL
   ============================================ */

/* 1. HERO */
.refs-hero {
  padding: 140px 0 60px;
  background: url('/assets/images/refs/refhero.jpg') center/cover no-repeat fixed;
  position: relative;
}

.refs-hero .background-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
}

.refs-hero .container {
  position: relative;
  z-index: 2;
}

.refs-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.refs-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.refs-hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  margin: 0;
}

/* 2. FILTER */
.refs-filter-section {
  padding: 36px 0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-bottom: 1px solid #eeeeee;
}

.refs-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.refs-filter-btn {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: transparent;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.refs-filter-btn:hover {
  border-color: #1565c0;
  color: #1565c0;
  background: #e3f2fd;
}

.refs-filter-btn.active {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(21,101,192,0.30);
}

/* 3. GALÉRIA */
.refs-gallery-section {
  padding: 70px 0 90px;
  background: #f7f8fa;
}

/* Csoport */
.refs-group {
  margin-bottom: 70px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.refs-group.hidden {
  display: none;
}

.refs-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8e8e8;
}

.refs-group-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.refs-group-icon {
  font-size: 1.6rem;
}

.refs-group-count {
  font-size: 0.9rem;
  color: #999999;
  font-weight: 600;
  background: #eeeeee;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Grid */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Kép item */
.refs-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.refs-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.refs-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.refs-item:hover .refs-item-inner img {
  transform: scale(1.08);
}

/* Overlay hover */
.refs-item-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
}

.refs-item:hover .refs-item-overlay {
  opacity: 1;
}

.refs-item-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.refs-item-zoom {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
  padding: 0;
  line-height: 1;
}

.refs-item-zoom:hover {
  background: rgba(255,255,255,0.35);
}

/* 4. CTA */
.refs-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.refs-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.refs-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.refs-cta-text {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin: 0 0 36px 0;
}

.refs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1565c0;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.refs-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  color: #1565c0;
  text-decoration: none;
}

/* LIGHTBOX */
.refs-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.refs-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-box {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* ============================================
   RESZPONZÍV
   ============================================ */

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

@media (max-width: 992px) {
  .refs-filter-section {
    position: static;
  }

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

@media (max-width: 600px) {
  .refs-hero {
    padding: 80px 0 70px;
    background-attachment: scroll;
  }

  .refs-filter-bar {
    gap: 8px;
  }

  .refs-filter-btn {
    font-size: 0.88rem;
    padding: 8px 16px;
  }

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

  .refs-group-title {
    font-size: 1.25rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-img {
    max-width: 95vw;
  }
}

/* ============================================
   HERO SLIDER – TELJESEN SAJÁT
   ============================================ */

   .hero-new {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background: #0d1b2a;
  }
  
  /* TRACK */
  .hero-new__track {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  /* SLIDE */
  .hero-new__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 1.2s ease;
  }
  
  .hero-new__slide.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
  }
  
  /* HÁTTÉRKÉP – zoom animáció */
  .hero-new__bg {
    position: absolute;
    inset: -5%;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 0s;
    will-change: transform;
  }
  
  /* Aktív slide-on indul a zoom */
  .hero-new__slide.active .hero-new__bg {
    transform: scale(1);
    transition: transform 7.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* OVERLAY */
  .hero-new__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(5, 15, 30, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
  }
  
  /* TARTALOM */
  .hero-new__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 80px;
    max-width: 1000px;
  }
  
  /* Tag / badge */
  .hero-new__tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 1000;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
    width: fit-content;
  
    /* Belépő animáció */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0s, transform 0s;
  }
  
  .hero-new__slide.active .hero-new__tag {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  }
  
  /* Főcím */
  .hero-new__title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 1000;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 22px 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0s, transform 0s;
  }
  
  .hero-new__slide.active .hero-new__title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  }
  
  /* Alcím */
  .hero-new__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 800px;
  
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0s, transform 0s;
  }
  
  .hero-new__slide.active .hero-new__sub {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
  }
  
  /* Gombok */
  .hero-new__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0s, transform 0s;
  }
  
  .hero-new__slide.active .hero-new__btns {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
  }
  
  .hero-new__btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
  }
  
  .hero-new__btn--primary {
    background: #ffffff;
    color: #0d1b2a;
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
  }
  
  .hero-new__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(255,255,255,0.25);
    background: #f0f6ff;
    color: #0d1b2a;
    text-decoration: none;
  }
  
  .hero-new__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.50);
  }
  
  .hero-new__btn--secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
  }
  
  /* NAVIGÁCIÓS PONTOK */
  .hero-new__dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .hero-new__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
  }
  
  .hero-new__dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
  }
  
  .hero-new__dot:hover:not(.active) {
    border-color: #ffffff;
    background: rgba(255,255,255,0.3);
  }
  
  /* NYÍL NAVIGÁCIÓ */
  .hero-new__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 2.2rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
  }
  
  .hero-new__arrow--prev { left: 30px; }
  .hero-new__arrow--next { right: 30px; }
  
  .hero-new__arrow:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-50%) scale(1.08);
  }
  
  /* PROGRESS BAR */
  .hero-new__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
  }
  
  .hero-new__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.6));
    width: 0%;
    transition: width linear;
  }
  
  /* SCROLL INDICATOR */
  .hero-new__scroll {
    position: absolute;
    bottom: 36px;
    right: 8%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-new__scroll span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    position: relative;
  }
  
  .hero-new__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    animation: scrollBounce 1.8s ease infinite;
  }
  
  @keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50%       { top: 16px; opacity: 0.4; }
  }
  
  /* ============================================
     RESZPONZÍV
     ============================================ */
  
  @media (max-width: 768px) {
    .hero-new {
      height: 100svh;
      min-height: 580px;
    }
  
    .hero-new__content {
      padding: 0 6% 100px;
    }
  
    .hero-new__arrow {
      width: 42px;
      height: 42px;
      font-size: 1.7rem;
    }
  
    .hero-new__arrow--prev { left: 14px; }
    .hero-new__arrow--next { right: 14px; }
  
    .hero-new__scroll {
      display: none;
    }
  
    .hero-new__btns {
      flex-direction: column;
      gap: 12px;
    }
  
    .hero-new__btn {
      justify-content: center;
      padding: 14px 28px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-new__dots {
      left: 50%;
      transform: translateX(-50%);
      bottom: 30px;
    }
  
    .hero-new__arrow {
      display: none;
    }
  }
  
  /* Ha van sticky footer-bar vagy cookie banner */
.cookie-bar,
.sticky-bottom {
  z-index: 999;
}

.copyright-bar {
  position: relative;
  z-index: 10;
  /* Adj hozzá padding-bottom-ot ha kell */
  padding-bottom: 20px;
}

/* ============================================
   SPC / PVC FALPANEL OLDAL
   ============================================ */

/* ---- KÖZÖS ---- */
.panel-section-tag {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ed1c24;
  margin-bottom: 14px;
}

.panel-section-tag.light { color: rgba(255,255,255,0.65); }

.panel-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #2b2a2a;
  text-align: center;
  margin: 0 0 55px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.panel-section-title.light { color: #ffffff; }

.panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.panel-btn--primary {
  background: #ed1c24;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(237,28,36,0.35);
}
.panel-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(237,28,36,0.5);
  color: #ffffff; text-decoration: none;
}

.panel-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}
.panel-btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff; text-decoration: none;
}

.panel-btn--white {
  background: #ffffff;
  color: #2b2a2a;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.panel-btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
  color: #2b2a2a; text-decoration: none;
}

.panel-btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}
.panel-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff; text-decoration: none;
}

/* ---- 1. HERO ---- */
.panel-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.panel-hero__bg {
  position: absolute;
  inset: -6%;
  background: url('/assets/images/falpanel/falpanel-bg.jpg') center/cover no-repeat;
  animation: panelHeroZoom 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes panelHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.panel-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,20,0.88) 0%,
    rgba(43,42,42,0.65) 60%,
    rgba(0,0,0,0.40) 100%
  );
  z-index: 1;
}

.panel-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 120px;
}

.panel-hero__content { max-width: 760px; }

.panel-hero__tag {
  display: inline-block;
  background: rgba(237,28,36,0.85);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 26px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: panelFadeUp 0.7s ease 0.2s both;
}

.panel-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: panelFadeUp 0.8s ease 0.4s both;
}

.panel-hero__sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 0 42px 0;
  animation: panelFadeUp 0.8s ease 0.6s both;
}

.panel-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: panelFadeUp 0.8s ease 0.8s both;
}

/* Lebegő badge-ek */
.panel-hero__badges {
  position: absolute;
  bottom: 50px;
  right: 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
  animation: panelFadeUp 1s ease 1s both;
}

.panel-hero__badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.panel-hero__badge:hover {
  background: rgba(255,255,255,0.22);
  transform: translateX(-6px);
}

@keyframes panelFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- 2. TÍPUSOK ---- */
.panel-types-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.panel-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.panel-type-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
}

.panel-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.panel-type-card--spc::before { background: linear-gradient(90deg, #2b2a2a, #666); }
.panel-type-card--pvc::before { background: linear-gradient(90deg, #ed1c24, #ff6b6b); }
.panel-type-card--alu::before { background: linear-gradient(90deg, #1565c0, #42a5f5); }

.panel-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.panel-type-card--spc:hover { border-color: #2b2a2a22; }
.panel-type-card--pvc:hover { border-color: #ed1c2422; }
.panel-type-card--alu:hover { border-color: #1565c022; }

.panel-type-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ed1c24;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}

.panel-type-card__icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 20px;
}

.panel-type-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2b2a2a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.panel-type-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #666;
  margin: 0 0 24px 0;
}

.panel-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.panel-type-list li {
  font-size: 0.94rem;
  color: #444;
  padding: 7px 0 7px 28px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  line-height: 1.5;
}

.panel-type-list li:last-child { border-bottom: none; }

.panel-type-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: #ed1c24;
  font-weight: 800;
  font-size: 0.9rem;
}

.panel-type-card__btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ed1c24;
  text-decoration: none;
  padding: 0;
  transition: gap 0.2s ease, color 0.2s ease;
  gap: 6px;
}

.panel-type-card__btn:hover {
  gap: 12px;
  color: #c0151c;
  text-decoration: none;
}

/* ---- 3. ELŐNYÖK ---- */
.panel-features-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.panel-features__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2b2a2a 0%, #1a1a1a 100%);
  z-index: 0;
}

.panel-features-section .container {
  position: relative;
  z-index: 1;
}

.panel-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.panel-feature-item {
  padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.panel-feature-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ed1c24, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panel-feature-item:hover {
  background: rgba(255,255,255,0.04);
}

.panel-feature-item:hover::after { opacity: 1; }

.panel-feature-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 18px;
}

.panel-feature-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.panel-feature-item p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---- 4. GALÉRIA ---- */
.panel-gallery-section {
  padding: 90px 0;
  background: #ffffff;
}

.panel-gallery-intro {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  margin: -36px 0 44px 0;
}

.panel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Széles kép – az első */
.panel-gallery-item--wide {
  grid-column: span 2;
}

/* Magas kép */
.panel-gallery-item--tall {
  grid-row: span 2;
}

.panel-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.panel-gallery-item--wide { aspect-ratio: auto; }
.panel-gallery-item--tall { aspect-ratio: auto; }

.panel-gallery-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.panel-gallery-item__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-gallery-item:hover img {
  transform: scale(1.07);
}

.panel-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
}

.panel-gallery-item:hover .panel-gallery-item__overlay { opacity: 1; }

.panel-gallery-item__overlay span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.panel-gallery-zoom {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 0;
  transition: background 0.2s ease;
}

.panel-gallery-zoom:hover { background: rgba(255,255,255,0.32); }

/* ---- 5. ÖSSZEHASONLÍTÁS ---- */
.panel-compare-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.panel-compare-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.panel-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  font-size: 0.98rem;
}

.panel-compare-table thead tr {
  background: #2b2a2a;
  color: #ffffff;
}

.panel-compare-table th {
  padding: 20px 28px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.panel-compare-table th.spc-col { background: #3d3d3d; }
.panel-compare-table th.pvc-col { background: #ed1c24; }

.panel-compare-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.panel-compare-table tbody tr:last-child { border-bottom: none; }
.panel-compare-table tbody tr:hover { background: #fafafa; }

.panel-compare-table td {
  padding: 16px 28px;
  color: #444;
  vertical-align: middle;
}

.panel-compare-table td:first-child {
  font-weight: 700;
  color: #2b2a2a;
  background: #f9f9f9;
}

.panel-compare-table td.spc-col { background: #f9f9f9; }
.panel-compare-table td.pvc-col { background: #fff5f5; }

/* ---- 6. FAQ ---- */
.panel-faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.panel-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-faq-item {
  border: 1px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.panel-faq-item:has(.panel-faq-question[aria-expanded="true"]) {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.panel-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2b2a2a;
  text-align: left;
  transition: color 0.2s ease;
}

.panel-faq-question:hover { color: #ed1c24; }

.panel-faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #ed1c24;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 1;
}

.panel-faq-question[aria-expanded="true"] .panel-faq-icon {
  transform: rotate(45deg);
}

.panel-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
  padding: 0 28px;
}

.panel-faq-answer.open {
  max-height: 400px;
  padding: 0 28px 22px;
}

.panel-faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ---- 7. CTA ---- */
.panel-cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.panel-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(237,28,36,0.95) 0%, rgba(180,10,16,0.98) 100%),
    url('assets/images/falpanel/falpanel-cta-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.panel-cta-section .container {
  position: relative;
  z-index: 1;
}

.panel-cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.panel-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.panel-cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.panel-cta-text {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0 0 42px 0;
}

.panel-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- LIGHTBOX ---- */
.panel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.panel-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.panel-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: pointer;
}

.panel-lightbox__box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 92vw;
}

.panel-lightbox__img {
  max-width: 82vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

.panel-lightbox__close {
  position: fixed;
  top: 22px; right: 26px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.panel-lightbox__close:hover { background: rgba(255,255,255,0.25); }

.panel-lightbox__prev,
.panel-lightbox__next {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s ease;
}

.panel-lightbox__prev:hover,
.panel-lightbox__next:hover { background: rgba(255,255,255,0.25); }

.panel-lightbox__caption {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* ============================================
   RESZPONZÍV
   ============================================ */
@media (max-width: 1024px) {
  .panel-types-grid { grid-template-columns: 1fr 1fr; }
  .panel-features-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-gallery-item--wide { grid-column: span 2; }
  .panel-gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .panel-hero { min-height: 100svh; }
  .panel-hero__badges { display: none; }
  .panel-hero__btns { flex-direction: column; }
  .panel-btn { justify-content: center; }
  .panel-types-grid { grid-template-columns: 1fr; }
  .panel-features-grid { grid-template-columns: 1fr; }
  .panel-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .panel-gallery-item--wide,
  .panel-gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .panel-compare-table th,
  .panel-compare-table td { padding: 12px 16px; font-size: 0.88rem; }
  .panel-cta-btns { flex-direction: column; align-items: center; }
  .panel-lightbox__prev,
  .panel-lightbox__next { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* ============================================
   PALETTE STRIP – TERMÉKPALETTA CTA SÁV
   ============================================ */
   .palette-strip {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
  }
  
  .palette-strip__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      110deg,
      #1a1a1a 0%,
      #2b2a2a 40%,
      #1f1010 70%,
      #2b0a0c 100%
    );
    z-index: 0;
  }
  
  /* Lebegő részecskék – dekoratív piros pontok */
  .palette-strip__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  
  .palette-strip__particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(237, 28, 36, 0.5);
    animation: paletteFloat 6s ease-in-out infinite;
  }
  
  .palette-strip__particles span:nth-child(1) { top: 20%; left: 8%;  animation-delay: 0s;    animation-duration: 5s; }
  .palette-strip__particles span:nth-child(2) { top: 70%; left: 15%; animation-delay: 1s;    animation-duration: 7s; width: 4px; height: 4px; }
  .palette-strip__particles span:nth-child(3) { top: 35%; left: 55%; animation-delay: 2s;    animation-duration: 6s; width: 8px; height: 8px; opacity: 0.3; }
  .palette-strip__particles span:nth-child(4) { top: 60%; left: 72%; animation-delay: 0.5s;  animation-duration: 8s; }
  .palette-strip__particles span:nth-child(5) { top: 15%; left: 85%; animation-delay: 1.5s;  animation-duration: 5.5s; width: 5px; height: 5px; }
  .palette-strip__particles span:nth-child(6) { top: 80%; left: 92%; animation-delay: 3s;    animation-duration: 6.5s; width: 4px; height: 4px; }
  
  @keyframes paletteFloat {
    0%, 100% { transform: translateY(0) scale(1);   opacity: 0.5; }
    50%       { transform: translateY(-18px) scale(1.3); opacity: 1; }
  }
  
  /* Inner layout */
  .palette-strip .container { position: relative; z-index: 2; }
  
  .palette-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Szöveg oldal */
  .palette-strip__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ed1c24;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
  }
  
  .palette-strip__tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background: #ed1c24;
  }
  
  .palette-strip__title {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.02em;
  }
  
  .palette-strip__title em {
    font-style: normal;
    color: #ed1c24;
    position: relative;
  }
  
  /* Halvány aláhúzás effekt az em alá */
  .palette-strip__title em::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ed1c24, transparent);
    border-radius: 2px;
  }
  
  /* Gombok */
  .palette-strip__btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  
  .palette-strip__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
  }
  
  /* Fényes sweep effekt */
  .palette-strip__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );
    transition: left 0.55s ease;
    pointer-events: none;
  }
  
  .palette-strip__btn:hover .palette-strip__btn-shine {
    left: 160%;
  }
  
  /* Elsődleges gomb – piros */
  .palette-strip__btn--primary {
    background: linear-gradient(135deg, #ed1c24, #c0151c);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.35);
  }
  
  .palette-strip__btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(237, 28, 36, 0.55);
    text-decoration: none;
  }
  
  /* Másodlagos gomb – üveg */
  .palette-strip__btn--secondary {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .palette-strip__btn--secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }
  
  /* Ikon */
  .palette-strip__btn-icon {
    font-size: 1.7rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  
  /* Szövegek */
  .palette-strip__btn-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .palette-strip__btn-label {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }
  
  .palette-strip__btn-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1;
  }
  
  /* ---- RESZPONZÍV ---- */
  @media (max-width: 900px) {
    .palette-strip__inner {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
  
    .palette-strip__tag { padding-left: 0; }
    .palette-strip__tag::before { display: none; }
  
    .palette-strip__title br { display: none; }
  
    .palette-strip__btns {
      justify-content: center;
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .palette-strip { padding: 44px 0; }
  
    .palette-strip__btns {
      flex-direction: column;
      align-items: stretch;
    }
  
    .palette-strip__btn {
      justify-content: center;
    }
  }
  