/* Krispy Kool homepage — layout + type inspired by Unique Decor (XCM home-7 patterns) */

[data-page="home"] {
  --kk-theme: var(--kk-red);
  --kk-header: var(--kk-navy);
  --kk-body-font: "Barlow", "Segoe UI", sans-serif;
  --kk-title-font: "Unbounded", "Barlow", sans-serif;
}

[data-page="home"] body,
[data-page="home"].kk-body {
  font-family: var(--kk-body-font);
}

[data-page="home"] h1,
[data-page="home"] h2,
[data-page="home"] h3,
[data-page="home"] .kk-display {
  font-family: var(--kk-title-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Section titles (UDI .section-title / .sub-title) */
[data-page="home"] .kk-sub-title {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin: 0 0 14px;
  font-family: var(--kk-body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kk-header);
}
[data-page="home"] .kk-sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background: var(--kk-theme);
}
[data-page="home"] .kk-sub-title--light { color: rgba(255, 255, 255, 0.88); }
[data-page="home"] .kk-sub-title--light::before { background: var(--kk-cyan); }

[data-page="home"] .kk-section-title h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  line-height: 1.12;
  max-width: 18ch;
}
[data-page="home"] .kk-section-title--center {
  text-align: center;
}
[data-page="home"] .kk-section-title--center h2,
[data-page="home"] .kk-section-title--center .kk-lead {
  margin-left: auto;
  margin-right: auto;
}
[data-page="home"] .kk-section-title--light h2 { color: #fff; }
[data-page="home"] .kk-section-title--light .kk-lead { color: rgba(255, 255, 255, 0.72); }

[data-page="home"] .kk-section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Theme button — clean inline arrow, no white highlight box */
[data-page="home"] .kk-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--kk-theme);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--kk-body-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
[data-page="home"] .kk-theme-btn:hover {
  color: #fff;
  padding: 13px 22px;
  background: var(--kk-navy);
}
[data-page="home"] .kk-theme-btn__label {
  padding: 0;
  transition: none;
}
[data-page="home"] .kk-theme-btn:hover .kk-theme-btn__label { transform: none; }
[data-page="home"] .kk-theme-btn > i {
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}
[data-page="home"] .kk-theme-btn:hover > i { transform: translate(2px, -2px); }
[data-page="home"] .kk-theme-btn__arrow { display: none !important; }
[data-page="home"] .kk-theme-btn:focus { outline: none; }
[data-page="home"] .kk-theme-btn:focus-visible {
  outline: 2px solid var(--kk-cyan);
  outline-offset: 3px;
}
[data-page="home"] .kk-theme-btn--navy { background: var(--kk-navy); }
[data-page="home"] .kk-theme-btn--navy:hover { background: var(--kk-theme); }
[data-page="home"] .kk-theme-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 13px 22px;
}
[data-page="home"] .kk-theme-btn--ghost .kk-theme-btn__arrow { display: none; }
[data-page="home"] .kk-theme-btn--ghost > i { display: none; }
[data-page="home"] .kk-theme-btn--ghost .kk-theme-btn__label { transform: none !important; padding: 0; }
[data-page="home"] .kk-theme-btn--ghost:hover { background: #fff; color: var(--kk-navy); border-color: #fff; }

[data-page="home"] .kk-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--kk-body-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--kk-theme);
  text-decoration: underline;
  text-underline-offset: 3px;
}
[data-page="home"] .kk-link-btn:hover,
[data-page="home"] a.kk-svc-card:hover .kk-link-btn { color: var(--kk-navy); }
[data-page="home"] .kk-svc-card .kk-link-btn i {
  font-size: 12px;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
[data-page="home"] .kk-svc-card .kk-link-btn:hover i,
[data-page="home"] a.kk-svc-card:hover .kk-link-btn i {
  transform: rotate(45deg) translate(2px, -2px);
}

/* Trust strip */
[data-page="home"] .kk-trust {
  background: #fff;
  border-bottom: 1px solid var(--kk-line);
  padding: 0;
}
[data-page="home"] .kk-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
[data-page="home"] .kk-trust__item {
  padding: 28px 22px;
  text-align: left;
  border-right: 1px solid var(--kk-line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
[data-page="home"] .kk-trust__item:last-child { border-right: 0; }
[data-page="home"] .kk-trust__item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--kk-ice);
  color: var(--kk-theme);
  font-size: 18px;
  margin-bottom: 14px;
  border-radius: 0;
}
[data-page="home"] .kk-trust__item strong {
  display: block;
  font-family: var(--kk-title-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--kk-navy);
  margin-bottom: 4px;
}
[data-page="home"] .kk-trust__item span {
  font-size: 14px;
  color: var(--kk-muted);
  line-height: 1.45;
}

/* Services band */
[data-page="home"] .kk-home-services-band {
  background: var(--kk-navy);
  padding: 96px 0 104px !important;
}
[data-page="home"] .kk-home-services-band > .kk-container {
  width: min(1320px, calc(100% - 32px));
}
[data-page="home"] .kk-home-services-band .kk-section-title {
  margin-bottom: 36px;
}
[data-page="home"] .kk-home-services-band .kk-section-title h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  margin-bottom: 0.35em;
}
[data-page="home"] .kk-home-services-band .kk-lead {
  font-size: 0.95rem;
  max-width: 50ch;
}
[data-page="home"] .kk-home-services-band .kk-kicker { display: none; }
[data-page="home"] .kk-home-services-grid.kk-services {
  grid-template-columns: 1fr;
  gap: 20px;
}
[data-page="home"] .kk-svc-card {
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.1);
  box-shadow: 10px 16px 80px rgba(4, 7, 56, 0.14);
  border-radius: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
[data-page="home"] a.kk-svc-card:hover,
[data-page="home"] a.kk-svc-card:focus-visible {
  color: inherit;
}
[data-page="home"] .kk-svc-card:hover {
  border-bottom: 3px solid var(--kk-theme);
  transform: translateY(-4px);
}
[data-page="home"] .kk-svc-card .kk-card__img {
  position: relative;
  border-radius: 0;
  flex: 1 1 auto;
  width: 100%;
  min-height: 320px;
  aspect-ratio: auto;
  height: auto;
  background: #0a1624;
}
[data-page="home"] .kk-svc-card .kk-card__img::before {
  opacity: 0.25;
}
[data-page="home"] .kk-svc-card .kk-card__img video,
[data-page="home"] .kk-svc-card .kk-card__img img,
[data-page="home"] .kk-svc-card .kk-card__icon {
  pointer-events: none;
}
[data-page="home"] .kk-svc-card .kk-card__img video {
  z-index: 1;
  object-fit: contain;
}
[data-page="home"] .kk-svc-card:hover .kk-card__img video,
[data-page="home"] .kk-svc-card:hover .kk-card__img img {
  transform: none;
}
[data-page="home"] .kk-svc-card .kk-card__img.is-video-ready > img {
  display: none;
}
[data-page="home"] .kk-svc-card .kk-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--kk-theme);
  font-size: 14px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0;
  top: auto;
  right: auto;
}
[data-page="home"] .kk-svc-card:hover .kk-card__icon {
  transform: translateX(-50%);
}
[data-page="home"] .kk-svc-card .kk-card__num { display: none; }
[data-page="home"] .kk-svc-card .kk-card__body {
  text-align: center;
  padding: 18px 18px 22px;
  flex: 0 0 auto;
}
[data-page="home"] .kk-svc-card .kk-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
[data-page="home"] .kk-svc-card .kk-card__body p {
  max-width: 34ch;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.55;
}
[data-page="home"] .kk-svc-card .kk-link { justify-content: center; }
[data-page="home"] .kk-home-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
[data-page="home"] .kk-home-extras .kk-mini {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #fff;
  padding: 14px 12px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
[data-page="home"] a.kk-mini:hover,
[data-page="home"] a.kk-mini:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
[data-page="home"] .kk-home-extras .kk-mini i { color: var(--kk-cyan); }
[data-page="home"] .kk-home-extras .kk-mini strong { color: #fff; }
[data-page="home"] .kk-home-extras .kk-mini span { color: rgba(255, 255, 255, 0.65); }
[data-page="home"] .kk-home-services-cta {
  text-align: center;
  margin-top: 22px;
}

@media (min-width: 992px) {
  [data-page="home"] .kk-home-services-grid.kk-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
  }
  [data-page="home"] .kk-home-services-grid .kk-svc-card .kk-card__img {
    min-height: 340px;
  }
  [data-page="home"] .kk-home-services-grid .kk-svc-card .kk-card__body {
    padding: 24px 16px 20px;
  }
}

@media (min-width: 1200px) {
  [data-page="home"] .kk-home-services-grid .kk-svc-card .kk-card__img {
    min-height: 400px;
  }
  [data-page="home"] .kk-home-services-grid .kk-svc-card .kk-card__body h3 {
    font-size: 1.15rem;
  }
}

@media (min-width: 1400px) {
  [data-page="home"] .kk-home-services-band > .kk-container {
    width: min(1440px, calc(100% - 40px));
  }
  [data-page="home"] .kk-home-services-grid .kk-svc-card .kk-card__img {
    min-height: 440px;
  }
}

[data-page="home"] .kk-section-title--center h2 {
  max-width: 22ch;
}

/* About section 7 (UDI collage + counters) */
[data-page="home"] .kk-about-7 {
  padding: 72px 0 96px;
  background: #fff;
  overflow: hidden;
}
[data-page="home"] .kk-about-7__wrap {
  margin-top: 0;
  padding-top: 12px;
}
[data-page="home"] .kk-about-7__left {
  position: relative;
  max-width: 100%;
  padding-bottom: 36px;
}
@media (min-width: 1200px) {
  [data-page="home"] .kk-about-7__left {
    padding-right: 12px;
  }
}
@media (max-width: 1199px) {
  [data-page="home"] .kk-about-7__left {
    margin: 0 auto;
    max-width: 420px;
  }
}
[data-page="home"] .kk-about-7__left > img {
  width: 100%;
  height: auto;
  max-height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}
[data-page="home"] .kk-about-7__sm {
  position: absolute;
  right: 12px;
  bottom: -28px;
  width: 42%;
  max-width: 168px;
  z-index: 2;
}
@media (max-width: 1199px) {
  [data-page="home"] .kk-about-7__sm {
    right: 8px;
    bottom: -20px;
    max-width: 140px;
  }
}
[data-page="home"] .kk-about-7__sm img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 14px 32px rgba(11, 31, 51, 0.16);
}
[data-page="home"] .kk-about-7__center {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
  max-width: 620px;
  padding: 8px 12px 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  [data-page="home"] .kk-about-7__center {
    padding-bottom: 40px;
  }
}
[data-page="home"] .kk-about-7__logo {
  margin-bottom: 18px;
}
[data-page="home"] .kk-about-7__logo img {
  width: 108px;
  height: auto;
  margin: 0 auto;
  display: block;
}
[data-page="home"] .kk-about-7__center .kk-section-title h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
}
[data-page="home"] .kk-about-7__center .kk-lead {
  max-width: 46ch;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.55;
}
[data-page="home"] .kk-about-7__right {
  margin-left: auto;
}
@media (max-width: 1199px) {
  [data-page="home"] .kk-about-7__right {
    margin: 0 auto;
    max-width: 420px;
  }
}
[data-page="home"] .kk-about-7__right img {
  width: 100%;
  height: auto;
  max-height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
[data-page="home"] .kk-about-7__bottom {
  margin-top: 48px;
}
@media (min-width: 1200px) {
  [data-page="home"] .kk-about-7__bottom {
    margin-top: 56px;
  }
}
[data-page="home"] .kk-about-7__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}
[data-page="home"] .kk-about-7__stats {
  text-align: center;
  padding: 0 12px;
}
[data-page="home"] .kk-about-7__counters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 12px;
}
@media (max-width: 575px) {
  [data-page="home"] .kk-about-7__counters {
    justify-content: center;
  }
}
[data-page="home"] .kk-about-7__btn-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
[data-page="home"] .kk-about-7__btn-wrap .kk-theme-btn {
  width: auto;
  max-width: none;
}
[data-page="home"] .kk-about-7__counter {
  flex: 1 1 100px;
  min-width: 100px;
  max-width: 140px;
  text-align: center;
}
[data-page="home"] .kk-about-7__counter h3 {
  font-family: var(--kk-title-font);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--kk-theme);
  margin: 0 0 4px;
  line-height: 1;
}
[data-page="home"] .kk-about-7__counter p {
  margin: 0;
  font-size: 14px;
  color: var(--kk-muted);
  text-transform: capitalize;
}
[data-page="home"] .kk-about-7__ig {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
[data-page="home"] .kk-about-7__ig:hover {
  color: var(--kk-theme);
}
[data-page="home"] .kk-about-7__ig:hover h3,
[data-page="home"] .kk-about-7__ig:hover p {
  color: var(--kk-theme);
}
[data-page="home"] .kk-about-7__ig h3 {
  margin: 0 0 4px;
}
[data-page="home"] .kk-about-7__ig p {
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Why us accordion (UDI xcm-why) */
[data-page="home"] .kk-why {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0;
  background: #f7f9fb;
  border-top: 1px solid rgba(11, 31, 51, 0.06);
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
  color: var(--kk-navy);
}
[data-page="home"] .kk-why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}
[data-page="home"] .kk-why__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.85);
}
[data-page="home"] .kk-why__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(247, 249, 251, 0.97) 0%, rgba(247, 249, 251, 0.88) 42%, rgba(247, 249, 251, 0.72) 100%),
    radial-gradient(ellipse 50% 60% at 88% 30%, rgba(196, 30, 58, 0.08), transparent 60%);
}
[data-page="home"] .kk-why > .kk-container {
  position: relative;
  z-index: 1;
}
[data-page="home"] .kk-why__intro h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  line-height: 1.2;
  margin: 8px 0 16px;
  max-width: 16ch;
}
[data-page="home"] .kk-why__support {
  color: var(--kk-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 0 24px;
}
[data-page="home"] .kk-why__cta { margin-bottom: 18px; }
[data-page="home"] .kk-why__trust {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--kk-muted);
}
[data-page="home"] .kk-why__trust a {
  color: var(--kk-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
[data-page="home"] .kk-why__trust a:hover { color: var(--kk-theme); }
[data-page="home"] .kk-why__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
[data-page="home"] .kk-why__item {
  background: #fff;
  border: 1px solid rgba(11, 31, 51, 0.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
[data-page="home"] .kk-why__item.is-open {
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 14px 32px rgba(11, 31, 51, 0.08);
}
[data-page="home"] .kk-why__header {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--kk-navy);
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: var(--kk-body-font);
  transition: background-color 0.25s ease;
}
[data-page="home"] .kk-why__header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: transparent;
  transition: background-color 0.25s ease;
}
[data-page="home"] .kk-why__item.is-open .kk-why__header::before {
  background: var(--kk-theme);
}
[data-page="home"] .kk-why__item:not(.is-open) .kk-why__header:hover {
  background: rgba(196, 30, 58, 0.04);
}
[data-page="home"] .kk-why__header:focus-visible {
  outline: 2px solid var(--kk-cyan);
  outline-offset: -2px;
}
[data-page="home"] .kk-why__num {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--kk-theme);
  min-width: 1.8em;
}
[data-page="home"] .kk-why__icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(196, 30, 58, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--kk-theme);
  font-size: 16px;
}
[data-page="home"] .kk-why__title {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}
[data-page="home"] .kk-why__item.is-open .kk-why__title { font-weight: 800; }
[data-page="home"] .kk-why__chev {
  color: var(--kk-theme);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}
[data-page="home"] .kk-why__item.is-open .kk-why__chev { transform: rotate(180deg); }
[data-page="home"] .kk-why__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
[data-page="home"] .kk-why__item.is-open .kk-why__panel { grid-template-rows: 1fr; }
[data-page="home"] .kk-why__panel[hidden] { display: grid !important; }
[data-page="home"] .kk-why__panel-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  padding: 0 20px;
}
[data-page="home"] .kk-why__item.is-open .kk-why__panel-inner {
  opacity: 1;
  transform: none;
  padding-bottom: 22px;
  padding-left: calc(20px + 1.8em + 14px + 40px + 14px);
}
[data-page="home"] .kk-why__lead {
  margin: 0 0 12px;
  color: var(--kk-muted);
  line-height: 1.5;
  font-size: 0.98rem;
}
[data-page="home"] .kk-why__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}
[data-page="home"] .kk-why__list li {
  position: relative;
  padding-left: 18px;
  color: var(--kk-navy);
  font-size: 0.95rem;
  line-height: 1.4;
}
[data-page="home"] .kk-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--kk-theme);
}
[data-page="home"] .kk-why__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kk-theme);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
[data-page="home"] .kk-why__more:hover { color: var(--kk-navy); }
[data-page="home"] .kk-why__more i { font-size: 0.75rem; }

/* Real work / showcase */
[data-page="home"] .kk-home-work {
  background: #f7f9fb;
  padding: 88px 0;
}
[data-page="home"] .kk-showcase {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 18px;
  min-height: 540px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
[data-page="home"] .kk-showcase .kk-tile {
  display: block;
  min-height: 260px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
[data-page="home"] .kk-showcase .kk-tile--feature {
  grid-row: 1 / span 2;
  grid-column: 1;
  min-height: 540px;
}
[data-page="home"] .kk-showcase .kk-tile img,
[data-page="home"] .kk-showcase .kk-tile video {
  opacity: 1;
  transform: none;
}
[data-page="home"] .kk-showcase .kk-tile:not(.is-video-ready) > video {
  opacity: 0;
}
[data-page="home"] .kk-showcase .kk-tile.is-video-ready > img {
  display: none;
}

@media (max-width: 991px) {
  [data-page="home"] .kk-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  [data-page="home"] .kk-showcase .kk-tile--feature {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  [data-page="home"] .kk-showcase {
    grid-template-columns: 1fr;
  }
  [data-page="home"] .kk-showcase .kk-tile--feature {
    min-height: 320px;
  }
  [data-page="home"] .kk-showcase .kk-tile {
    min-height: 240px;
  }
}
[data-page="home"] .kk-tile {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: none;
}
[data-page="home"] .kk-tile__meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 0;
  background: transparent;
}
[data-page="home"] .kk-tile__meta strong {
  font-family: var(--kk-title-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
[data-page="home"] .kk-tile__cat {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--kk-body-font);
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 31, 51, 0.55);
  padding: 5px 10px;
  border-radius: 0;
  backdrop-filter: none;
}
[data-page="home"] .kk-tile__shade {
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.05) 0%, rgba(11, 31, 51, 0.2) 45%, rgba(11, 31, 51, 0.82) 100%);
}
[data-page="home"] .kk-tile:hover .kk-tile__shade {
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.12) 0%, rgba(11, 31, 51, 0.35) 40%, rgba(196, 30, 58, 0.55) 100%);
}
[data-page="home"] .kk-tile__play {
  background: rgba(11, 31, 51, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: none;
}
[data-page="home"] .kk-tile:hover .kk-tile__play {
  background: var(--kk-theme);
  border-color: var(--kk-theme);
}

/* Brands */
[data-page="home"] .kk-brands-section { background: var(--kk-ice); padding: 88px 0; }
[data-page="home"] .kk-brand {
  display: block;
  border-radius: 0;
  border: 1px solid rgba(11, 31, 51, 0.1);
  box-shadow: none;
  background: var(--kk-navy);
  min-height: 320px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
[data-page="home"] .kk-brand img {
  transition: transform 0.6s ease;
}
[data-page="home"] .kk-brand:hover img { transform: scale(1.06); }
[data-page="home"] .kk-brand__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.05) 0%, rgba(11, 31, 51, 0.35) 45%, rgba(11, 31, 51, 0.9) 100%);
}
[data-page="home"] .kk-brand .kk-tile__cat {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--kk-body-font);
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 31, 51, 0.55);
  padding: 5px 10px;
  border-radius: 0;
}
[data-page="home"] .kk-brand__body strong {
  display: block;
  font-family: var(--kk-title-font);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 8px 0 6px;
}
[data-page="home"] .kk-brand__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

/* Social proof */
[data-page="home"] .kk-social {
  padding: 96px 0;
  background: #fff;
}
[data-page="home"] .kk-social__frame { border-radius: 0; }

/* Process */
[data-page="home"] .kk-process {
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0.96) 0%, rgba(11, 31, 51, 0.92) 100%),
    url("../img/install-wall.jpg") center/cover;
  padding: 88px 0;
}
[data-page="home"] .kk-process .kk-particles { display: none !important; }
[data-page="home"] .kk-process__label {
  font-family: var(--kk-body-font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kk-cyan);
  font-size: 13px;
  font-weight: 600;
}
[data-page="home"] .kk-process__head h2 { color: #fff; }
[data-page="home"] .kk-process__head .kk-sub-title { color: rgba(255, 255, 255, 0.88); }
[data-page="home"] .kk-process__head .kk-sub-title::before { background: var(--kk-cyan); }

[data-page="home"] .kk-faq-layout__intro h2 { max-width: none; }
[data-page="home"] .kk-process__grid {
  gap: 18px;
}
[data-page="home"] .kk-process__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 26px 22px 24px;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease;
}
[data-page="home"] .kk-process__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(143, 227, 247, 0.28);
}
[data-page="home"] .kk-process__step {
  display: block;
  font-family: var(--kk-title-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--kk-cyan);
  margin-bottom: 18px;
}
[data-page="home"] .kk-process__thumb,
[data-page="home"] .kk-process__num {
  display: none !important;
}
[data-page="home"] .kk-process__thumb::before {
  display: none !important;
}
[data-page="home"] .kk-process__icon {
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(143, 227, 247, 0.32);
  color: var(--kk-cyan);
  font-size: 17px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
[data-page="home"] .kk-process__item:hover .kk-process__icon {
  background: rgba(143, 227, 247, 0.08);
  border-color: rgba(143, 227, 247, 0.55);
  color: #fff;
  transform: none;
}
[data-page="home"] .kk-process__item h3 {
  color: #fff;
  font-family: var(--kk-title-font);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 10px;
}
[data-page="home"] .kk-process__item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* FAQ */
[data-page="home"] .kk-faq-section {
  padding: 96px 0;
  background: #f7f9fb;
}
[data-page="home"] .kk-faq details {
  border-radius: 0;
  border: 1px solid var(--kk-line);
  background: #fff;
}
[data-page="home"] .kk-faq summary {
  font-family: var(--kk-body-font);
  font-weight: 600;
}

@media (max-width: 991px) {
  [data-page="home"] .kk-trust__grid { grid-template-columns: repeat(2, 1fr); }
  [data-page="home"] .kk-trust__item:nth-child(2) { border-right: 0; }
  [data-page="home"] .kk-trust__item { border-bottom: 1px solid var(--kk-line); }
  [data-page="home"] .kk-home-services-grid.kk-services { grid-template-columns: 1fr; }
  [data-page="home"] .kk-home-extras { grid-template-columns: repeat(2, 1fr); }
  [data-page="home"] .kk-why__item.is-open .kk-why__panel-inner { padding-left: 20px; }
  [data-page="home"] .kk-why__header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  [data-page="home"] .kk-why__icon { display: none; }
}

@media (max-width: 575px) {
  [data-page="home"] .kk-trust__grid { grid-template-columns: 1fr; }
  [data-page="home"] .kk-trust__item { border-right: 0; }
  [data-page="home"] .kk-home-extras { grid-template-columns: 1fr; }
  [data-page="home"] .kk-section-title-row { flex-direction: column; align-items: flex-start; }
}
