/* Karzone — shared mobile layout + hamburger nav */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
iframe { max-width: 100%; }

.lion-sketch {
  max-width: 280px;
  width: 80%;
}

.manager-sketch {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.manager-sketch-img {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  width: 240px !important;
  max-width: 80%;
  height: auto !important;
  display: block;
  margin: 0 auto;
  z-index: 1;
}

.team-photo {
  width: 184px;
  height: 184px;
  padding: 6px;
  border-radius: 50%;
  background: #3D5FE0;
  margin: 0 auto 24px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 20px 40px -24px rgba(43, 38, 32, 0.35);
}

.team-photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  background: #F6F0E4;
}

.team-photo-wala {
  object-position: center 18%;
}

.team-photo-vince {
  object-position: center 20%;
  transform: scale(1.22);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
}

.logo-row img,
.logo-row image-slot {
  height: 32px !important;
  width: auto !important;
  max-width: 110px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.visual-center {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto;
  margin-right: auto;
}

.visual-center svg,
.visual-center img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.quote-card {
  min-width: 0;
  overflow: hidden;
}

.quote-body,
.quote-actions,
.quote-ctas,
.quote-arrows {
  min-width: 0;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #F6F0E4;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2B2620 !important;
  text-decoration: none;
  z-index: 2;
  flex-shrink: 0;
}

.site-logo img {
  width: 28px;
  height: 28px;
  max-width: none;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-burger {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #D6CAAC;
  border-radius: 8px;
  background: #FFFDF8;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #2B2620;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:checked + .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked + .nav-burger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-link {
  position: relative;
  color: #655C4E !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link.is-active {
  color: #2B2620 !important;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #3D5FE0;
  border-radius: 1px;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
}

.nav-cta-ghost {
  border: 1px solid #D6CAAC;
  color: oklch(0.62 0.15 45) !important;
}

.nav-cta-primary {
  background: #3D5FE0;
  color: #FFFDF8 !important;
}

@media (max-width: 960px) {
  .site-nav {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .nav-burger {
    display: flex;
  }

  .nav-panel {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0 12px;
  }

  .nav-toggle:checked ~ .nav-panel {
    display: flex;
  }

  .nav-links,
  .nav-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid #E6DDC9;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .nav-link.is-active {
    color: #3D5FE0 !important;
  }

  .nav-ctas {
    padding-top: 8px;
  }

  .nav-cta {
    display: block;
    width: 100%;
    white-space: normal;
  }

  .site-logo {
    font-size: 20px !important;
  }

  .site-logo img {
    width: 24px !important;
    height: 24px !important;
  }

  .quote-card {
    padding: 28px 20px !important;
  }

  .quote-actions {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .quote-ctas {
    flex-wrap: wrap !important;
    justify-content: center;
    width: 100%;
  }

  .quote-ctas a {
    white-space: normal !important;
    text-align: center;
  }

  .visual-center {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  [style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
  }

  h1.hero-title,
  .hero-title { font-size: 36px !important; line-height: 1.2 !important; }
  [style*="font-size:68px"] { font-size: 36px !important; line-height: 1.2 !important; }

  .lion-sketch {
    max-width: 210px;
    width: 65%;
  }

  .manager-sketch {
    min-height: 260px;
    margin-bottom: 8px;
  }

  .team-photo {
    width: 148px;
    height: 148px;
    padding: 5px;
  }
  [style*="font-size:42px"] { font-size: 26px !important; }
  [style*="font-size:36px"] { font-size: 24px !important; line-height: 1.25 !important; }
  [style*="font-size:34px"] { font-size: 22px !important; line-height: 1.3 !important; }
  [style*="font-size:32px"] { font-size: 22px !important; }
  [style*="font-size:30px"] { font-size: 22px !important; }
  [style*="font-size:28px"] { font-size: 22px !important; }
  [style*="font-size:20px"] { font-size: 18px !important; }
  [style*="font-size:18px"] { font-size: 16px !important; }
  [style*="font-size:17px"] { font-size: 16px !important; }

  .site-logo {
    font-size: 20px !important;
  }

  [style*="padding:130px"] { padding: 48px 20px !important; }
  [style*="padding:110px"] { padding: 44px 20px !important; }
  [style*="padding:64px 24px"] { padding: 40px 20px !important; }
  [style*="padding:60px 24px"] { padding: 36px 20px !important; }
  [style*="padding:48px 24px"] { padding: 32px 20px !important; }
  [style*="padding:44px 56px"] { padding: 28px 20px !important; }
  [style*="padding:48px 40px"] { padding: 28px 20px !important; }
  [style*="padding:56px 40px"] { padding: 24px 0 !important; }
  [style*="padding:44px"] { padding: 28px 20px !important; }
  [style*="padding:48px"] { padding: 28px 20px !important; }
  [style*="padding:30px 40px"] { padding: 20px !important; }
  [style*="padding:36px 34px"] { padding: 24px 18px !important; }

  [style*="width:130%"],
  .visual-center {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .quote-card {
    padding: 24px 16px !important;
  }

  .quote-body {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .quote-photo {
    margin: 0 auto;
  }

  .quote-actions {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    width: 100%;
  }

  .quote-arrows {
    justify-content: center;
  }

  .quote-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    gap: 10px !important;
  }

  .quote-ctas a {
    display: block;
    width: 100%;
    white-space: normal !important;
    text-align: center;
    box-sizing: border-box;
  }

  [style*="gap:36px"][style*="align-items:center"],
  [style*="gap:24px"][style*="align-items:center"][style*="justify-content:center"] {
    flex-wrap: wrap;
  }

  [style*="gap:36px"] {
    flex-direction: column !important;
    text-align: center;
  }

  [style*="justify-content:center"][style*="gap:14px"],
  [style*="justify-content:center"][style*="gap:12px"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  [style*="padding-top:24px"][style*="border-top:1px solid #E6DDC9"] {
    flex-direction: column !important;
    gap: 16px !important;
  }

  [style*="padding-top:24px"][style*="border-top:1px solid #E6DDC9"] > div[style*="gap:12px"] {
    flex-direction: column !important;
    width: 100%;
    align-items: stretch;
  }

  [style*="height:380px"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    height: auto !important;
    min-height: 0;
    margin-bottom: 16px;
    text-align: center;
  }

  [style*="height:380px"] > div[style*="position:absolute"] {
    display: none !important;
  }

  [style*="height:380px"] img,
  [style*="position:absolute"][style*="left:0"][style*="top:0"][style*="width:280px"] {
    position: relative !important;
    width: min(280px, 100%) !important;
    left: auto !important;
    top: auto !important;
  }

  [style*="height:380px"] p {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    max-width: 100% !important;
    margin-top: 12px !important;
  }

  a[style*="white-space:nowrap"] {
    white-space: normal !important;
    text-align: center;
  }

  [style*="justify-content:center"][style*="gap:14px"] > a,
  [style*="justify-content:center"][style*="gap:12px"] > a {
    width: 100%;
    text-align: center;
  }

  iframe[title*="Slack"],
  iframe[src*="slack-thread"] {
    height: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  img[src*="karzone-dashboard"] {
    transform: none !important;
  }

  [style*="padding:56px 40px"] {
    padding: 24px 0 !important;
  }

  iframe[src*="calendly"] {
    height: 720px !important;
  }

  h1, h2, h3 { overflow-wrap: break-word; }
}

@media (max-width: 480px) {
  h1.hero-title,
  .hero-title { font-size: 32px !important; line-height: 1.2 !important; }
  [style*="font-size:68px"] { font-size: 32px !important; line-height: 1.2 !important; }
  [style*="font-size:42px"] { font-size: 24px !important; }
  [style*="font-size:36px"] { font-size: 22px !important; }
  [style*="font-size:34px"] { font-size: 22px !important; }
  [style*="font-size:20px"] { font-size: 18px !important; }
  [style*="font-size:18px"] { font-size: 16px !important; }
  [style*="font-size:17px"] { font-size: 16px !important; }
  [style*="font-size:22px"][style*="line-height:1.6"] { font-size: 18px !important; }
  [style*="font-size:20px"][style*="line-height:1.5"] { font-size: 18px !important; }
  [style*="padding:130px"] { padding: 40px 16px !important; }
  [style*="padding:110px"] { padding: 36px 16px !important; }
  [style*="padding:22px 30px"] { padding: 16px 18px !important; }
  [style*="padding:16px 30px"] { padding: 12px 18px !important; }
}

/* Cookiebot: compact card, bottom-right instead of centered overlay */
#CybotCookiebotDialogBodyUnderlay {
  display: none !important;
}

#CybotCookiebotDialog {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 380px !important;
  max-width: calc(100vw - 32px) !important;
  max-height: calc(100vh - 40px) !important;
  margin: 0 !important;
  transform: none !important;
  inset: auto 20px 20px auto !important;
  overflow: auto !important;
  box-shadow: 0 18px 48px rgba(43, 38, 32, 0.22) !important;
}

@media (max-width: 480px) {
  #CybotCookiebotDialog {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: none !important;
    inset: auto 12px 12px 12px !important;
  }
}
