/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Skip link — hidden until focused */
.kg-skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: #C8963E;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  transition: top 0.15s;
}
.kg-skip-link:focus {
  top: 0;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid #C8963E;
  outline-offset: 3px;
  border-radius: 3px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Nav ===== */
.kg-nav {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.kg-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 36px;
}

.kg-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: #111;
  text-decoration: none;
}

.kg-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.kg-logo-plus {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 3px;
  vertical-align: middle;
}

.kg-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.kg-nav-links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.kg-nav-links a:hover {
  color: #111;
}

.kg-nav-cta {
  background: #111;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.15s;
}

.kg-nav-cta:hover {
  background: #333 !important;
}

.kg-nav-divider {
  width: 1px;
  height: 20px;
  background: #ddd;
  display: inline-block;
  vertical-align: middle;
}

.kg-nav-parent {
  display: flex;
  align-items: center;
}

.kg-nav-parent-logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.55;
  transition: opacity 0.15s;
}

.kg-nav-parent-logo:hover {
  opacity: 0.85;
}

.kg-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #111;
  font-size: 22px;
  line-height: 1;
}

/* ===== Hero ===== */
.kg-hero {
  padding: 80px 36px 72px;
  max-width: 960px;
  margin: 0 auto;
}

.kg-hero-fullwidth {
  position: relative;
  width: 100%;
  height: 580px;
  background-image: url('../img/hero.png');
  background-image: -webkit-image-set(url('../img/hero.webp') 1x, url('../img/hero.png') 1x);
  background-image: image-set(url('../img/hero.webp') type('image/webp'), url('../img/hero.png') type('image/png'));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: visible;
}

.kg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.78) 35%,
      rgba(0, 0, 0, 0.22) 60%,
      transparent 75%);
  display: flex;
  align-items: center;
}

.kg-hero-content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 36px 0;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  height: 100%;
}

.kg-hero-text {
  flex: 0 0 44%;
  padding-bottom: 60px;
}

.kg-hero-devices {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  transform: translateY(80px);
  position: relative;
  z-index: 10;
}

.kg-device-frame {
  position: relative;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #111;
}

.kg-device-screen {
  position: absolute;
  top: 1.72%;
  left: 3.81%;
  width: 91.63%;
  height: 96.43%;
  display: block;
  z-index: 1;
}

img.kg-device-screen {
  object-fit: cover;
  object-position: top;
}

picture.kg-device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.kg-device-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.kg-device-frame:nth-child(1) {
  width: 118px;
  aspect-ratio: 657/1456;
  transform: rotate(-6deg) translateY(32px);
  z-index: 1;
}

.kg-device-frame:nth-child(2) {
  width: 126px;
  aspect-ratio: 657/1456;
  transform: rotate(-2deg) translateY(16px);
  z-index: 2;
  margin-left: -22px;
}

.kg-device-frame:nth-child(3) {
  width: 132px;
  aspect-ratio: 657/1456;
  transform: rotate(1deg) translateY(6px);
  z-index: 3;
  margin-left: -22px;
}

.kg-device-frame:nth-child(4) {
  width: 126px;
  aspect-ratio: 657/1456;
  transform: rotate(5deg) translateY(18px);
  z-index: 4;
  margin-left: -22px;
}

.kg-hero-stats-wrap {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 0;
}

.kg-hero-stats-wrap .kg-hero-stats {
  max-width: 960px;
  margin: 0 auto;
  padding: 110px 36px 36px;
}

.kg-hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.kg-hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
  max-width: 540px;
}

.kg-hero-h1 em {
  font-style: normal;
  color: #C8963E;
}

.kg-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 300;
}

.kg-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.kg-btn-primary {
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.kg-btn-primary:hover {
  background: #333;
}

.kg-btn-secondary {
  color: #111;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid #111;
}

.kg-btn-hero-primary {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.kg-btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.kg-btn-hero-secondary {
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: color 0.15s, border-color 0.15s;
}

.kg-btn-hero-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.kg-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.kg-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  color: #0f0f0f;
}

.kg-stat-accent {
  color: #C8963E;
}

.kg-stat {
  display: flex;
  flex-direction: column;
}

.kg-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.kg-stat-icon--games {
  background: #e8f5e9;
  color: #2e7d32;
}

.kg-stat-icon--years {
  background: #e0f7f4;
  color: #00897b;
}

.kg-stat-icon--rating {
  background: #fff8e1;
  color: #f9a825;
}

.kg-stat-icon--team {
  background: #e8eaf6;
  color: #3949ab;
}

.kg-stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* ===== Section shared ===== */
.kg-section-border {
  border-bottom: 1px solid #f0f0f0;
}

.kg-section {
  padding: 72px 36px;
  max-width: 960px;
  margin: 0 auto;
}

.kg-section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kg-section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.8px;
  color: #0f0f0f;
  margin-bottom: 10px;
}

.kg-section-lead {
  font-size: 16px;
  color: #666;
  margin-bottom: 44px;
  max-width: 480px;
  font-weight: 300;
}

/* ===== Apps grid ===== */
.kg-apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kg-app-card {
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.kg-card-pt {
  background: linear-gradient(145deg, #e8f4e8 0%, #d4eaf0 100%);
  border: 1px solid #c8dfc8;
}

.kg-card-tw {
  background: linear-gradient(145deg, #1a0a2e 0%, #2d1060 100%);
  border: 1px solid #3d1a70;
}

.kg-app-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.kg-badge-pt {
  background: rgba(255, 255, 255, 0.6);
  color: #2a6b2a;
}

.kg-badge-tw {
  background: rgba(255, 255, 255, 0.1);
  color: #c4a0ff;
}

.kg-app-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.kg-app-row picture { flex-shrink: 0; }

.kg-app-icon-img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kg-app-name-pt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: #1a4a1a;
  margin-bottom: 4px;
}

.kg-app-name-tw {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 4px;
}

.kg-app-tagline-pt {
  font-size: 12px;
  color: #4a8a4a;
  font-weight: 500;
}

.kg-app-tagline-tw {
  font-size: 12px;
  color: #a070e0;
  font-weight: 500;
}

.kg-app-desc-pt {
  font-size: 14px;
  color: #3a6a3a;
  line-height: 1.65;
  margin-bottom: 20px;
}

.kg-app-desc-tw {
  font-size: 14px;
  color: #b090d0;
  line-height: 1.65;
  margin-bottom: 20px;
}

.kg-app-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.kg-rating-pt {
  font-size: 13px;
  font-weight: 600;
  color: #C8963E;
}

.kg-rating-tw {
  font-size: 13px;
  font-weight: 600;
  color: #f0c060;
}

.kg-reviews-pt {
  font-size: 12px;
  color: #6a9a6a;
}

.kg-reviews-tw {
  font-size: 12px;
  color: #9070c0;
}

.kg-game-types {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.kg-tag-pt {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.5);
  color: #2a6a2a;
  padding: 4px 10px;
  border-radius: 20px;
}

.kg-tag-tw {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #c0a0ff;
  padding: 4px 10px;
  border-radius: 20px;
}

.kg-store-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kg-store-btn-pt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1a4a1a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.kg-store-btn-pt:hover {
  background: #0d2e0d;
}

.kg-store-btn-tw {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #1a0a2e;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}

.kg-store-btn-tw:hover {
  opacity: 0.88;
}

/* ===== Logo wall ===== */
.kg-logos-wrap {
  border-bottom: 1px solid #f0f0f0;
  padding: 52px 36px;
}

.kg-logos-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.kg-logos-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.kg-logos-img {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .kg-logos-wrap { padding: 40px 20px; }
  .kg-logos-img { opacity: 0.9; }
}

/* ===== Platform (dark) ===== */
.kg-platform {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 36px;
}

.kg-platform-inner {
  max-width: 960px;
  margin: 0 auto;
}

.kg-platform-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kg-platform-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 12px;
}

.kg-platform-h2 em {
  font-style: normal;
  color: #C8963E;
}

.kg-platform-lead {
  font-size: 16px;
  color: #888;
  margin-bottom: 52px;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.65;
}

.kg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 52px;
}

.kg-pillar {
  background: #1a1a1a;
  padding: 28px 24px;
}

.kg-pillar:first-child {
  border-radius: 10px 0 0 10px;
}

.kg-pillar:last-child {
  border-radius: 0 10px 10px 0;
}

.kg-pillar-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #C8963E;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.kg-pillar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.kg-pillar-body {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  font-weight: 300;
}

.kg-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kg-b2b-card {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 28px;
}

.kg-b2b-card-hl {
  border-color: #C8963E;
}

.kg-b2b-icon {
  font-size: 24px;
  color: #C8963E;
  margin-bottom: 14px;
}

.kg-b2b-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.kg-b2b-body {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== CTA ===== */
.kg-cta-wrap {
  padding: 72px 36px;
  max-width: 960px;
  margin: 0 auto;
}

.kg-cta {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.kg-cta-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.kg-cta-sub {
  font-size: 15px;
  color: #888;
  font-weight: 300;
}

.kg-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.kg-cta-btn {
  background: #C8963E;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.kg-cta-btn:hover {
  background: #b07830;
}

.kg-cta-btn-ghost {
  border: 1px solid #444;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s;
}

.kg-cta-btn-ghost:hover {
  border-color: #888;
}

/* ===== Contact modal ===== */
.kg-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.kg-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.kg-modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.2s;
}
.kg-modal-backdrop.open .kg-modal {
  transform: translateY(0);
}
.kg-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 20px;
  padding: 6px;
  line-height: 1;
  border-radius: 6px;
  transition: color 0.15s;
}
.kg-modal-close:hover { color: #111; }
.kg-modal-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C8963E;
  margin-bottom: 10px;
}
.kg-modal-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.4px;
  color: #0f0f0f;
  margin-bottom: 8px;
}
.kg-modal-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
}
.kg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kg-field label {
  font-size: 12px;
  font-weight: 500;
  color: #333;
}
.kg-field-optional {
  font-weight: 400;
  color: #bbb;
}
.kg-field input,
.kg-field textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
  background: #fff;
}
.kg-field input:focus,
.kg-field textarea:focus { border-color: #C8963E; }
.kg-field input.invalid,
.kg-field textarea.invalid { border-color: #e03e3e; }
.kg-modal-submit {
  background: #C8963E;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}
.kg-modal-submit:hover { background: #b07830; }
.kg-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.kg-modal-privacy {
  font-size: 12px;
  color: #bbb;
  text-align: center;
}
.kg-modal-privacy a { color: #999; }
.kg-form-success {
  text-align: center;
  padding: 24px 0;
}
.kg-form-success-icon {
  width: 52px;
  height: 52px;
  background: #e8f4e8;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}
.kg-form-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0f0f0f;
  margin-bottom: 8px;
}
.kg-form-success p { font-size: 14px; color: #666; line-height: 1.6; }

@media (max-width: 768px) {
  .kg-modal { padding: 28px 22px; }
}

/* ===== Footer ===== */
.kg-footer {
  border-top: 1px solid #eee;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.kg-footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.kg-footer-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.kg-footer-meta {
  font-size: 12px;
  color: #bbb;
}

.kg-footer-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.kg-footer-parent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kg-footer-parent-label {
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
}

.kg-footer-parent-logo {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0);
  opacity: 0.35;
}

.kg-footer-links {
  display: flex;
  gap: 20px;
}

.kg-footer-links a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.kg-footer-links a:hover {
  color: #111;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 768px) {
  .kg-nav-inner {
    padding: 16px 20px;
  }

  .kg-nav-toggle {
    display: block;
  }

  .kg-nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .kg-nav-links.open {
    display: flex;
  }

  .kg-nav-links a {
    padding: 10px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .kg-hero-fullwidth {
    height: 480px;
    background-attachment: scroll;
  }

  .kg-hero-content {
    padding: 40px 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .kg-hero-text {
    flex: none;
    padding-bottom: 40px;
  }

  .kg-hero-devices {
    display: none;
  }

  .kg-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 60%, rgba(0, 0, 0, 0.30) 100%);
  }

  .kg-hero-h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .kg-hero-sub {
    font-size: 15px;
  }

  .kg-hero-stats-wrap .kg-hero-stats {
    padding: 28px 20px;
    gap: 24px;
  }

  .kg-stat-num {
    font-size: 28px;
  }

  .kg-section {
    padding: 52px 20px;
  }

  .kg-section-h2 {
    font-size: 28px;
  }

  .kg-apps-grid {
    grid-template-columns: 1fr;
  }

  .kg-platform {
    padding: 52px 20px;
  }

  .kg-platform-h2 {
    font-size: 28px;
  }

  .kg-pillars {
    grid-template-columns: 1fr;
  }

  .kg-pillar:first-child {
    border-radius: 10px 10px 0 0;
  }

  .kg-pillar:last-child {
    border-radius: 0 0 10px 10px;
  }

  .kg-b2b-grid {
    grid-template-columns: 1fr;
  }

  .kg-store-btn-pt,
  .kg-store-btn-tw {
    padding: 13px 18px;
    min-height: 44px;
  }

  .kg-cta-wrap {
    padding: 40px 20px;
  }

  .kg-cta {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .kg-cta-h {
    font-size: 22px;
  }

  .kg-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 480px) {
  .kg-hero-h1 {
    font-size: 30px;
  }

  .kg-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .kg-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .kg-cta-btn,
  .kg-cta-btn-ghost {
    text-align: center;
  }
}