:root {
  --gkh-yellow: #41b883;
  --gkh-green: #41b883;
  --gkh-black: #161616;
  --gkh-black-3: #2f2f2f;
  --gkh-grey-6: #6b6b6b;
  --gkh-grey-7: #9a9a9a;
  --gkh-light: #e0e0e0;
  --gkh-bg: #fafaf7;
  --gkh-white: #ffffff;
  --gkh-font: "Avenir", "Avenir Next", system-ui, sans-serif;
  --gkh-maxw: 1920px;
  --gkh-gutter: clamp(16px, 4.32vw, 83px);
}

.gkh,
.gkh * {
  box-sizing: border-box;
}

.gkh {
  font-family: var(--gkh-font);
  color: var(--gkh-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.gkh img {
  max-width: 100%;
  display: block;
}

.gkh h1,
.gkh h2,
.gkh h3,
.gkh p {
  margin: 0;
}

.gkh__container {
  width: 100%;
  max-width: var(--gkh-maxw);
  margin-inline: auto;
  padding-inline: var(--gkh-gutter);
}

.gkh-avis {
  padding-block: clamp(56px, 6vw, 120px);
}

.gkh-avis__title {
  font-weight: 900;
  font-size: clamp(30px, 2.7vw, 52px);
  line-height: 1.08;
  color: #0a0a0a;
  margin-bottom: clamp(28px, 3.4vw, 52px) !important;
}

.gkh-avis__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 1.8vw, 32px);
  margin-bottom: clamp(28px, 3vw, 56px) !important;
}

.gkh-stat-card {
  position: relative;
  background: var(--gkh-bg);
  border-radius: 16px;
  padding: clamp(28px, 2.4vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  align-items: flex-start;
}

.gkh-stat-card--label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gkh-green);
  border-radius: 16px 0 0 16px;
}

.gkh-stat-card__eyebrow {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--gkh-yellow);
}

.gkh-stat-card--label .gkh-stat-card__eyebrow {
  color: var(--gkh-green);
}

.gkh-stat-card__num {
  font-weight: 900;
  font-size: clamp(48px, 3.6vw, 70px);
  line-height: 1;
  color: #000;
  letter-spacing: -0.7px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.gkh-stat-card__num small {
  font-size: clamp(22px, 1.9vw, 36px);
  font-weight: 900;
}

.gkh-stat-card__star {
  height: clamp(40px, 3.4vw, 56px);
  width: auto;
}

.gkh-stat-card__sub {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--gkh-grey-7);
  margin-top: 18px;
}

.gkh-stat-card__excellent {
  font-weight: 900;
  font-size: clamp(22px, 1.7vw, 26px);
  color: #191919;
  margin-top: auto;
}

.gkh-tp-stars-img {
  height: clamp(28px, 2.3vw, 34px);
  width: auto;
  display: block;
  margin-top: 14px;
}

.gkh-tp-logo-img {
  height: clamp(24px, 2.7vw, 35px);
  width: auto;
  display: block;
  margin-top: 14px;
}

.gkh-avis__exp {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(24px, 2.4vw, 40px);
  align-items: stretch;
}

.gkh-exp-panel {
  background: rgba(65, 184, 131, 0.14);
  border-radius: 16px;
  padding: clamp(32px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 48px);
}

.gkh-exp__title {
  font-weight: 900;
  font-size: clamp(26px, 2.5vw, 52px);
  line-height: 1.08;
  color: #0a0a0a;
}

.gkh-exp__mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
}

.gkh-bar + .gkh-bar {
  margin-top: 18px;
}

.gkh-bar__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.gkh-bar__head img {
  width: 25px;
  height: 25px;
}

.gkh-bar__head span {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gkh-grey-6);
}

.gkh-bar__track {
  height: 12px;
  background: #fff;
  border: 1px solid var(--gkh-yellow);
  border-radius: 40px;
  overflow: hidden;
}

.gkh-bar__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gkh-yellow);
  border-radius: 40px;
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .gkh-bar__fill {
    transition: none;
  }
}

.gkh-exp__callout {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: clamp(24px, 2vw, 30px);
  box-shadow: 0 4px 36px 0 rgba(65, 184, 131, 0.12);
}

.gkh-exp__callout-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gkh-yellow);
  border-radius: 0 2px 2px 0;
}

.gkh-exp__slide {
  display: none;
  flex-direction: column;
  gap: 6px;
  animation: gkhFadeSlide 0.5s ease;
}

.gkh-exp__slide.is-active {
  display: flex;
}

@keyframes gkhFadeSlide {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gkh-exp__callout-num {
  font-weight: 900;
  font-size: clamp(34px, 3.2vw, 46px);
  color: var(--gkh-yellow);
  letter-spacing: -0.46px;
  line-height: 1;
  margin-bottom: 6px;
}

.gkh-exp__callout-text {
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.3;
  color: #222;
  min-height: clamp(48px, 5vw, 70px);
}

.gkh-exp__dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.gkh-exp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f7f7f7;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.gkh-exp__dot.is-active {
  background: var(--gkh-yellow);
}

.gkh-exp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gkh-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gkh-yellow);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 1px 2px rgba(50, 50, 50, 0.1);
}

.gkh-chip span {
  font-weight: 400;
  font-size: 18px;
  color: #2fa876;
}

.gkh-chip b {
  color: var(--gkh-yellow);
  font-weight: 900;
  letter-spacing: 1px;
}

.gkh-testi {
  background: var(--gkh-yellow);
  border-radius: 16px;
  overflow: hidden;
  padding: clamp(16px, 1.4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.2vw, 20px);
}

.gkh-testi__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.gkh-testi__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gkh-testi__card {
  background: #fff;
  border-radius: 12px;
  padding: clamp(20px, 1.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gkh-testi__slide {
  display: none;
  flex-direction: column;
  gap: 12px;
  height: clamp(300px, 30vw, 340px);
  animation: gkhFadeSlide 0.5s ease;
}

.gkh-testi__slide.is-active {
  display: flex;
}

.gkh-testi__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.gkh-testi__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gkh-white);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.gkh-testi__dot.is-active {
  background: var(--gkh-black);
}

.gkh-testi__quote {
  font-weight: 900;
  font-size: 48px;
  line-height: 0.6;
  color: var(--gkh-yellow);
}

.gkh-testi__lead {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.45;
  color: #1c1c1c;
}

.gkh-testi__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #1c1c1c;
}

.gkh-testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.gkh-testi__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gkh-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  color: #161616;
  flex: none;
}

.gkh-testi__name {
  font-weight: 800;
  font-size: 15px;
  color: #161616;
}

.gkh-testi__meta {
  font-weight: 400;
  font-size: 15px;
  color: var(--gkh-grey-7);
}

.gkh-testi__stars-img {
  height: clamp(20px, 1.6vw, 24px);
  width: auto;
  margin-left: auto;
}

.gkh-avis__sources {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 2vw, 32px) !important;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.5;
  color: var(--gkh-grey-7);
}

.gkh-avis__sources b {
  color: var(--gkh-yellow);
  font-weight: 800;
  flex: none;
}

#gkh-hub-studio,
#gkh-hub-studio * {
  font-family: var(--gkh-font) !important;
}

#gkh-hub-studio .gkh-exp__dot,
#gkh-hub-studio .gkh-testi__dot {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #f7f7f7 !important;
  border: 0 !important;
  box-shadow: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
}

#gkh-hub-studio .gkh-exp__dot.is-active {
  background: var(--gkh-yellow) !important;
}

#gkh-hub-studio .gkh-testi__dot.is-active {
  background: #161616 !important;
}

#gkh-hub-studio .gkh-stat-card__star {
  height: clamp(40px, 3.4vw, 56px) !important;
  width: auto !important;
}

#gkh-hub-studio .gkh-tp-stars-img {
  height: clamp(28px, 2.3vw, 34px) !important;
  width: auto !important;
  max-width: 100% !important;
}

#gkh-hub-studio .gkh-tp-logo-img {
  height: clamp(24px, 2.7vw, 35px) !important;
  width: auto !important;
  max-width: 100% !important;
}

#gkh-hub-studio .gkh-testi__stars-img {
  height: clamp(20px, 1.6vw, 24px) !important;
  width: auto !important;
  max-width: 100% !important;
}

#gkh-hub-studio .gkh-testi__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#gkh-hub-studio {
  overflow-x: clip;
}

@media (max-width: 900px) {
  .gkh-avis__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gkh-avis__exp {
    grid-template-columns: 1fr;
  }

  .gkh-exp__mid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gkh-testi__slide {
    height: clamp(360px, 100vw, 440px);
  }
}

@media (max-width: 560px) {
  .gkh-avis__stats {
    grid-template-columns: 1fr;
  }

  .gkh-stat-card {
    min-height: 0;
  }
}
