/* ============================================================
   KLÍMAGURU - Szekciók stílusa
   (hero, intro/USP, szolgáltatások, miért válasszon, márkák)
   ============================================================ */

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.kg-hero {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden;
}

.kg-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  aspect-ratio: 2037 / 772;
  overflow: hidden;
}

.kg-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease-in-out;
  z-index: 1;
}

.kg-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.kg-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.kg-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.kg-hero__arrow:hover {
  background: #0094F5;
  border-color: #0094F5;
  transform: translateY(-50%) scale(1.07);
}

.kg-hero__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-hero__arrow--prev { left: 22px; }
.kg-hero__arrow--next { right: 22px; }

.kg-hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.kg-hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.kg-hero__dot:hover {
  transform: scale(1.15);
}

.kg-hero__dot.is-active {
  background: #0094F5;
  border-color: #0094F5;
}

@media (max-width: 768px) {
  .kg-hero__inner {
    aspect-ratio: 2037 / 772;
  }
  .kg-hero__slide img {
    object-fit: contain;
  }
  .kg-hero__arrow {
    width: 40px;
    height: 40px;
  }
  .kg-hero__arrow svg {
    width: 15px;
    height: 15px;
  }
  .kg-hero__arrow--prev { left: 8px; }
  .kg-hero__arrow--next { right: 8px; }
  .kg-hero__dots {
    bottom: 10px;
    gap: 7px;
  }
  .kg-hero__dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .kg-hero__inner {
    aspect-ratio: 16 / 11;
  }
  .kg-hero__slide img {
    object-fit: cover;
    object-position: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kg-hero__slide {
    transition: opacity 0.2s linear;
  }
}

/* ============================================================
   INTRO / USP SZEKCIÓ
   ============================================================ */
.kg-intro {
  background: #000000;
  width: 100%;
  padding: 80px 24px 88px;
  position: relative;
  overflow: hidden;
}

.kg-intro::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(0, 148, 245, 0.16) 0%, rgba(0, 148, 245, 0) 70%);
  pointer-events: none;
}

.kg-intro__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.kg-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.kg-intro__eyebrow::before,
.kg-intro__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-intro__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}

.kg-intro__title span {
  color: #0094F5;
}

.kg-intro__lead {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 10px;
}

.kg-intro__text {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 44px;
}

.kg-intro__usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.kg-intro__usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 22px 14px 20px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kg-intro__usp:hover {
  border-color: rgba(0, 148, 245, 0.55);
  background: rgba(0, 148, 245, 0.07);
  transform: translateY(-3px);
}

.kg-intro__usp-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(0, 148, 245, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kg-intro__usp-icon svg {
  width: 19px;
  height: 19px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-intro__usp-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.4;
}

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

@media (max-width: 640px) {
  .kg-intro {
    padding: 56px 18px 60px;
  }
  .kg-intro__title {
    font-size: 26px;
  }
  .kg-intro__lead {
    font-size: 16px;
  }
  .kg-intro__text {
    font-size: 14.5px;
    margin-bottom: 36px;
  }
  .kg-intro__usps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 38px;
  }
  .kg-intro__usp {
    padding: 18px 10px 16px;
  }
  .kg-intro__usp-text {
    font-size: 13.5px;
  }
}

/* ============================================================
   SZOLGÁLTATÁSAINK
   ============================================================ */
.kg-services {
  background: #000000;
  width: 100%;
  padding: 90px 24px 100px;
}

.kg-services__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kg-services__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.kg-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.kg-services__eyebrow::before,
.kg-services__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-services__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  margin: 0 0 16px;
}

.kg-services__title span {
  color: #0094F5;
}

.kg-services__subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

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

.kg-service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.kg-service-card:hover {
  border-color: rgba(0, 148, 245, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.kg-service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.kg-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kg-service-card:hover .kg-service-card__media img {
  transform: scale(1.06);
}

.kg-service-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 148, 245, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0094F5;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.kg-service-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kg-service-card__title {
  color: #ffffff;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.kg-service-card__desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.kg-service-card__label {
  color: #0094F5;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.kg-service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.kg-service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
}

.kg-service-card__list svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 2px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-service-card__sublabel {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 18px 0 10px;
}

.kg-services__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.kg-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0094F5;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 148, 245, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.kg-services__cta:hover {
  background: #007fd1;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 148, 245, 0.42);
}

.kg-services__cta svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.kg-services__cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .kg-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .kg-services {
    padding: 60px 18px 70px;
  }
  .kg-services__head {
    margin-bottom: 40px;
  }
  .kg-services__title {
    font-size: 26px;
  }
  .kg-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kg-service-card__body {
    padding: 22px 20px 24px;
  }
  .kg-services__cta {
    width: 100%;
    justify-content: center;
  }
  .kg-services__cta-wrap {
    margin-top: 44px;
  }
}

/* ============================================================
   MIÉRT VÁLASSZON MINKET / BEMUTATKOZÁS / FOLYAMAT
   ============================================================ */
.kg-why {
  background: #000000;
  width: 100%;
  padding: 90px 24px 0;
}

.kg-why__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kg-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.kg-section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.kg-section-head__eyebrow::before,
.kg-section-head__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-section-head__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  margin: 0;
}

.kg-section-head__title span {
  color: #0094F5;
}

.kg-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.kg-why__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 22px 22px 22px 20px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kg-why__item:hover {
  border-color: rgba(0, 148, 245, 0.5);
  background: rgba(0, 148, 245, 0.07);
  transform: translateY(-3px);
}

.kg-why__item--last {
  grid-column: 2;
}

.kg-why__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(0, 148, 245, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kg-why__icon svg {
  width: 21px;
  height: 21px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-why__text {
  color: #ffffff;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.45;
  padding-top: 8px;
}

.kg-process {
  margin-top: 96px;
  padding-bottom: 96px;
}

.kg-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.kg-process__track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(10% + 4px);
  right: calc(10% + 4px);
  height: 1.5px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 6px, transparent 6px, transparent 12px);
}

.kg-process__segments {
  position: absolute;
  top: 26px;
  left: calc(10% + 4px);
  right: calc(10% + 4px);
  height: 1.5px;
  z-index: 1;
}

.kg-process__segment {
  position: absolute;
  top: 0;
  height: 1.5px;
  width: 25%;
  background: repeating-linear-gradient(to right, #0094F5 0, #0094F5 6px, transparent 6px, transparent 12px);
  opacity: 0;
  animation: kg-segment-fade 10s linear infinite;
}

.kg-process__segment--1 { left: 0%; animation-delay: 0s; }
.kg-process__segment--2 { left: 25%; animation-delay: 2s; }
.kg-process__segment--3 { left: 50%; animation-delay: 4s; }
.kg-process__segment--4 { left: 75%; animation-delay: 6s; }

@keyframes kg-segment-fade {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  18%  { opacity: 1; }
  22%  { opacity: 0; }
  100% { opacity: 0; }
}

.kg-process__arrow {
  position: absolute;
  top: -5px;
  left: 0;
  width: 22px;
  height: 12px;
  opacity: 0;
  animation: kg-arrow-travel 10s linear infinite;
}

.kg-process__segment--1 .kg-process__arrow { animation-delay: 0s; }
.kg-process__segment--2 .kg-process__arrow { animation-delay: 2s; }
.kg-process__segment--3 .kg-process__arrow { animation-delay: 4s; }
.kg-process__segment--4 .kg-process__arrow { animation-delay: 6s; }

.kg-process__arrow svg {
  width: 100%;
  height: 100%;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes kg-arrow-travel {
  0%   { opacity: 0; left: 0%; }
  2%   { opacity: 1; left: 0%; }
  18%  { opacity: 1; left: calc(100% - 22px); }
  22%  { opacity: 0; left: calc(100% - 22px); }
  100% { opacity: 0; }
}

.kg-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kg-process__num {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  border: 1.5px solid #0094F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0094F5;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.kg-process__step:hover .kg-process__num {
  background: #0094F5;
  color: #ffffff;
}

.kg-process__num--pulse {
  animation: kg-num-pulse 10s ease-in-out infinite;
}

.kg-process__step--1 .kg-process__num--pulse { animation-delay: 0s; }
.kg-process__step--2 .kg-process__num--pulse { animation-delay: 2s; }
.kg-process__step--3 .kg-process__num--pulse { animation-delay: 4s; }
.kg-process__step--4 .kg-process__num--pulse { animation-delay: 6s; }
.kg-process__step--5 .kg-process__num--pulse { animation-delay: 8s; }

@keyframes kg-num-pulse {
  0%   { background: #000000; color: #0094F5; box-shadow: 0 0 0 0 rgba(0, 148, 245, 0); transform: scale(1); }
  4%   { background: #0094F5; color: #ffffff; box-shadow: 0 0 0 8px rgba(0, 148, 245, 0.18); transform: scale(1.1); }
  18%  { background: #0094F5; color: #ffffff; box-shadow: 0 0 0 8px rgba(0, 148, 245, 0.18); transform: scale(1.1); }
  24%  { background: #000000; color: #0094F5; box-shadow: 0 0 0 0 rgba(0, 148, 245, 0); transform: scale(1); }
  100% { background: #000000; color: #0094F5; box-shadow: 0 0 0 0 rgba(0, 148, 245, 0); transform: scale(1); }
}

.kg-process__title {
  color: #ffffff;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.4;
  margin: 0;
  padding: 0 6px;
}

@media (max-width: 1024px) {
  .kg-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kg-why__item--last {
    grid-column: span 2;
  }
  .kg-process__track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }
  .kg-process__track::before {
    display: none;
  }
  .kg-process__segments {
    display: none;
  }
}

@media (max-width: 640px) {
  .kg-why {
    padding: 60px 18px 0;
  }
  .kg-section-head {
    margin-bottom: 36px;
  }
  .kg-section-head__title {
    font-size: 25px;
  }
  .kg-why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kg-why__item--last {
    grid-column: span 1;
  }
  .kg-process {
    margin-top: 60px;
    padding-bottom: 64px;
  }
  .kg-process__track {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kg-process__num--pulse,
  .kg-process__segment,
  .kg-process__arrow {
    animation: none !important;
  }
  .kg-process__segment {
    opacity: 0 !important;
  }
}

/* ============================================================
   FORGALMAZOTT MÁRKÁK
   ============================================================ */
.kg-brands {
  background: #000000;
  width: 100%;
  padding: 70px 24px 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kg-brands__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kg-brands__head {
  text-align: center;
  margin: 0 0 44px;
}

.kg-brands__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.kg-brands__eyebrow::before,
.kg-brands__eyebrow::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-brands__title {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
}

.kg-brands__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.kg-brands__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: max-content;
  animation: kg-brands-scroll 28s linear infinite;
}

.kg-brands__marquee:hover .kg-brands__track {
  animation-play-state: paused;
}

@keyframes kg-brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kg-brands__item {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  width: 200px;
  height: 110px;
  padding: 22px;
  margin: 0 9px;
  box-sizing: border-box;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kg-brands__item:hover {
  border-color: rgba(0, 148, 245, 0.5);
  background: rgba(0, 148, 245, 0.06);
  transform: translateY(-3px);
}

.kg-brands__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.kg-brands__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .kg-brands__item {
    width: 168px;
    height: 96px;
    padding: 18px;
    margin: 0 7px;
  }
  .kg-brands__marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 50px, #000 calc(100% - 50px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 50px, #000 calc(100% - 50px), transparent 100%);
  }
}

@media (max-width: 640px) {
  .kg-brands {
    padding: 50px 0 64px;
  }
  .kg-brands__head {
    margin-bottom: 32px;
    padding: 0 18px;
  }
  .kg-brands__item {
    width: 138px;
    height: 84px;
    padding: 14px;
    margin: 0 6px;
  }
  .kg-brands__track {
    animation-duration: 20s;
  }
  .kg-brands__marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kg-brands__track {
    animation: none;
  }
  .kg-brands__marquee {
    overflow-x: auto;
  }
}

/* ============================================================
   KAPCSOLAT / ÉRDEKLŐDÉS SZEKCIÓ
   ============================================================ */
.kg-contact {
  background: #000000;
  width: 100%;
  padding: 90px 24px 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kg-contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

/* ---- Bal: elérhetőségek ---- */
.kg-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 12px;
}

.kg-contact__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: #0094F5;
}

.kg-contact__company {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 34px;
}

.kg-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kg-contact__row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.kg-contact__row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.kg-contact__row-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: rgba(0, 148, 245, 0.12);
  border: 1px solid rgba(0, 148, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kg-contact__row-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-contact__row-label {
  color: #0094F5;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.kg-contact__row-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.kg-contact__row-value a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease;
}

.kg-contact__row-value a:hover {
  color: #0094F5;
}

.kg-contact__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 56px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.kg-contact__legal-item--full {
  flex: 0 0 100%;
}

.kg-contact__legal-item--full .kg-contact__legal-value {
  max-width: 520px;
}

.kg-contact__legal-label {
  color: #0094F5;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.kg-contact__legal-value {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 15px;
  margin: 0;
}

/* ---- Jobb: űrlap ---- */
.kg-form-wrap {
  position: relative;
}

.kg-form__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 28px;
}

.kg-form__field {
  margin-bottom: 20px;
}

.kg-form__label {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 9px;
}

.kg-form__label .req {
  color: #0094F5;
}

.kg-form__input,
.kg-form__textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 15px 16px;
  color: #111;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 15px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.kg-form__input:focus,
.kg-form__textarea:focus {
  outline: none;
  border-color: #0094F5;
  box-shadow: 0 0 0 3px rgba(0, 148, 245, 0.25);
}

.kg-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.kg-form__counter {
  text-align: left;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  margin: 6px 0 0;
}

/* Captcha sor */
.kg-form__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.kg-form__captcha-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  display: block;
  background: #f5f0e8;
}

.kg-form__captcha-reload {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: rgba(0, 148, 245, 0.1);
  border: 1px solid rgba(0, 148, 245, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.4s ease;
}

.kg-form__captcha-reload:hover {
  background: rgba(0, 148, 245, 0.2);
}

.kg-form__captcha-reload:active svg {
  transform: rotate(-180deg);
}

.kg-form__captcha-reload svg {
  width: 20px;
  height: 20px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}

.kg-form__captcha-input {
  flex: 1;
  min-width: 150px;
}

/* Honeypot – rejtett */
.kg-form__hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.kg-form__submit {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0094F5;
  color: #ffffff;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 15px 42px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 148, 245, 0.3);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.kg-form__submit:hover:not(:disabled) {
  background: #007fd1;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 148, 245, 0.4);
}

.kg-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kg-form__submit .kg-form__spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: kg-spin 0.7s linear infinite;
  display: none;
}

.kg-form__submit.is-loading .kg-form__spinner {
  display: inline-block;
}

@keyframes kg-spin {
  to { transform: rotate(360deg); }
}

/* Visszajelző üzenet */
.kg-form__message {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}

.kg-form__message.is-visible {
  display: block;
}

.kg-form__message--success {
  background: rgba(35, 170, 90, 0.12);
  border: 1px solid rgba(35, 170, 90, 0.4);
  color: #7fe0a6;
}

.kg-form__message--error {
  background: rgba(230, 70, 70, 0.1);
  border: 1px solid rgba(230, 70, 70, 0.4);
  color: #ff9b9b;
}

/* ---- Reszponzív ---- */
@media (max-width: 900px) {
  .kg-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .kg-contact {
    padding: 60px 18px 70px;
  }
  .kg-contact__legal {
    gap: 36px;
  }
  .kg-form__submit {
    width: 100%;
  }
}

/* ============================================================
   KÍNÁLATUNK (klímatípusok) SZEKCIÓ
   ============================================================ */
.kg-offer {
  background: #000000;
  width: 100%;
  padding: 90px 24px 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kg-offer__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kg-offer__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.kg-offer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.kg-offer__eyebrow::before,
.kg-offer__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-offer__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  margin: 0 0 16px;
}

.kg-offer__title span {
  color: #0094F5;
}

.kg-offer__subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.kg-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kg-offer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 32px 20px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kg-offer__item:hover {
  border-color: rgba(0, 148, 245, 0.5);
  background: rgba(0, 148, 245, 0.06);
  transform: translateY(-4px);
}

.kg-offer__icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: rgba(0, 148, 245, 0.12);
  border: 1px solid rgba(0, 148, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kg-offer__icon svg {
  width: 28px;
  height: 28px;
  stroke: #0094F5;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kg-offer__item-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.45;
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .kg-offer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Mobil ===== */
@media (max-width: 640px) {
  .kg-offer {
    padding: 60px 18px 70px;
  }
  .kg-offer__head {
    margin-bottom: 40px;
  }
  .kg-offer__title {
    font-size: 26px;
  }
  .kg-offer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .kg-offer__item {
    padding: 26px 14px;
  }
}

/* ============================================================
   TÉRKÉP SZEKCIÓ (kapcsolat oldal)
   ============================================================ */
.kg-map {
  background: #000000;
  width: 100%;
  padding: 20px 24px 100px;
}

.kg-map__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.kg-map__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.kg-map__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0094F5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.kg-map__eyebrow::before,
.kg-map__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: #0094F5;
  opacity: 0.6;
}

.kg-map__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  margin: 0 0 14px;
}

.kg-map__title span {
  color: #0094F5;
}

.kg-map__subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.kg-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.kg-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* A sötét oldalhoz enyhén tompítjuk a Google térkép világos alapját */
  filter: grayscale(0.15) contrast(1.05);
}

@media (max-width: 640px) {
  .kg-map {
    padding: 10px 18px 70px;
  }
  .kg-map__frame {
    aspect-ratio: 4 / 5;
  }
}
