/* =========================================================
   COMBINED STYLESHEET
   Contains: public.css + kognits_legal_colors.css + kognits_landing.css
   Source order preserved.
========================================================= */

/* =========================
   public.css
========================= */

:root {
  --gh-dark-navy: #08162B;
  --gh-primary-navy: #0B1F3A;
  --gh-soft-navy: #12305A;
  --gh-medical-blue: #005B99;
  --gh-dark-gray: #374151;
  --gh-medium-gray: #9CA3AF;
  --gh-soft-gray: #E5E7EB;
  --gh-light-gray: #F4F6F8;
  --gh-success: #1F8A70;
  --gh-warning: #F59E0B;
  --gh-error: #DC2626;
  --gh-whatsapp: #25D366;
}

html,
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gh-dark-gray);
  background: var(--gh-light-gray);
}

.gh-public-header {
  background: #fff;
  border-bottom: 1px solid var(--gh-soft-gray);
}

.gh-public-header .navbar-brand,
.gh-public-header .nav-link,
.gh-public-header .navbar-toggler {
  color: var(--gh-primary-navy);
}

.gh-public-header .nav-link {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gh-primary-navy);
  font-size: 0.96rem;
}

.gh-public-header .nav-link:hover,
.gh-public-header .nav-link:focus {
  color: var(--kg-accent);
}

.gh-public-header .navbar-brand {
  letter-spacing: -0.01em;
}

.gh-public-header .navbar-toggler {
  border-color: var(--gh-soft-navy);
}

.gh-public-header .navbar-toggler:focus {
  box-shadow: none;
}

.gh-public-header .navbar {
  min-height: 90px;
  padding: 1rem 0;
}

.kg-floating-actions {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 1045;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.kg-floating-action {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(8, 22, 43, .18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.kg-floating-action:hover,
.kg-floating-action:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8, 22, 43, .22);
  text-decoration: none;
}

.kg-floating-action i {
  font-size: 1rem;
  line-height: 1;
}

.kg-floating-action--primary {
  background: linear-gradient(135deg, var(--gh-medical-blue), var(--gh-soft-navy));
  color: #fff;
}

.kg-floating-action--primary:hover,
.kg-floating-action--primary:focus {
  color: #fff;
}

.kg-floating-action--secondary {
  background: #25D366;
  color: #fff;
}

.kg-floating-action--secondary:hover,
.kg-floating-action--secondary:focus {
  color: #fff;
}

@media (max-width: 575.98px) {
  .gh-public-header .navbar-collapse {
    width: 100%;
  }

  .gh-public-header .navbar-nav {
    align-items: center;
    text-align: center;
  }

  .gh-public-header .nav-item {
    width: 100%;
  }

  .gh-public-header .nav-link {
    width: 100%;
    display: block;
  }

  .kg-floating-actions {
    display: flex;
    right: 12px;
    left: auto;
    bottom: 76px;
    align-items: flex-end;
    width: auto;
  }

  .kg-floating-action {
    width: auto;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .gh-public-header .navbar-collapse {
    display: flex !important;
    flex-grow: 1;
  }

  .gh-public-header .navbar-nav {
    width: 100%;
  }
}

.gh-hero {
  background: linear-gradient(135deg, var(--gh-medical-blue), var(--gh-soft-navy));
  color: var(--gh-light-gray);
  padding: 2.75rem 0 2.25rem;
}

.gh-hero h1 {
  color: var(--gh-light-gray);
  letter-spacing: -0.01em;
}

.gh-hero .gh-subtitle {
  color: var(--gh-soft-gray);
  margin: 0.5rem 0 0;
}

.gh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gh-soft-navy);
  background: var(--gh-soft-navy);
  color: var(--gh-light-gray);
  font-size: 0.9rem;
}

.gh-legal {
  padding: 1.5rem 0 3rem;
}

.gh-card {
  background: var(--gh-light-gray);
  border: 1px solid var(--gh-soft-gray);
  border-radius: 14px;
  padding: 1.25rem;
}

@media (min-width: 992px) {
  .gh-card {
    padding: 1.75rem;
  }
}

.gh-card h2,
.gh-card h3,
.gh-card h4 {
  color: var(--gh-primary-navy);
}

.gh-card h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.55rem;
}

.gh-card h2:first-child {
  margin-top: 0;
}

.gh-card h3 {
  font-size: 1.05rem;
  margin: 1.1rem 0 0.45rem;
}

.gh-card p,
.gh-card li {
  color: var(--gh-dark-gray);
}

.gh-card a {
  color: var(--gh-medical-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gh-card a:hover,
.gh-card a:focus {
  color: var(--gh-soft-navy);
}

.gh-card section {
  scroll-margin-top: 88px;
}

.gh-card ul {
  padding-left: 1.25rem;
}

.gh-divider {
  height: 1px;
  background: var(--gh-soft-gray);
  width: 100%;
  margin: 1.5rem 0;
}

.gh-callout {
  border: 1px solid var(--gh-soft-gray);
  border-left: 6px solid var(--gh-medical-blue);
  border-radius: 12px;
  background: var(--gh-light-gray);
  padding: 0.9rem 1rem;
  margin: 1rem 0;
}

.gh-callout--warning {
  border-left-color: var(--gh-warning);
}

.gh-callout--danger {
  border-left-color: var(--gh-error);
}

.gh-callout--success {
  border-left-color: var(--gh-success);
}

.gh-toc {
  background: var(--gh-light-gray);
  border: 1px solid var(--gh-soft-gray);
  border-radius: 14px;
  padding: 1rem;
}

@media (min-width: 992px) {
  .gh-toc {
    position: sticky;
    top: 1.25rem;
  }
}

.gh-toc .gh-toc-title {
  color: var(--gh-primary-navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.gh-toc a {
  display: block;
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  color: var(--gh-dark-gray);
  border: 1px solid transparent;
}

.gh-toc a:hover,
.gh-toc a:focus {
  background: var(--gh-soft-gray);
  color: var(--gh-primary-navy);
  border-color: var(--gh-soft-gray);
}

.gh-muted {
  color: var(--gh-medium-gray);
}

.gh-footer-note {
  border-top: 1px solid var(--gh-soft-gray);
  margin-top: 1.25rem;
  padding-top: 1rem;
  color: var(--gh-medium-gray);
  font-size: 0.95rem;
}

.gh-toc-mobile summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--gh-primary-navy);
}

.gh-toc-mobile summary::-webkit-details-marker {
  display: none;
}

.gh-toc-mobile[open] summary {
  margin-bottom: 0.75rem;
}

/* =========================
   Kognits Footer
========================= */
.kg-footer {
  margin-top: auto;
  padding: 3.5rem 0 2rem;
  background: linear-gradient(135deg, var(--gh-primary-navy), var(--gh-soft-navy));
  color: rgba(255, 255, 255, 0.85);
}

.kg-footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.kg-footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.kg-footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.kg-footer-text a {
  color: rgba(255, 255, 255, 0.78);
}

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

.kg-footer-links li+li {
  margin-top: 0.4rem;
}

.kg-footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.kg-footer-links a:hover,
.kg-footer-links a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kg-footer-line {
  margin: 1.75rem 0 1.25rem;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.kg-footer-bottom {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  text-align: center;
}

.kg-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 22, 43, 0.72);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1050;
}

.kg-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kg-back-to-top:hover,
.kg-back-to-top:focus {
  background: rgba(8, 22, 43, 0.9);
}

/* =========================
   kognits_legal_colors.css
========================= */

/* Landing-page color palette for legal pages only.
   Keeps existing layout/typography from `public.css` and only remaps colors. */

:root {
  /* Map "gh" design tokens to Kognits landing tokens */
  --gh-dark-navy: #1A2B4C;
  /* --kg-primary */
  --gh-primary-navy: #1A2B4C;
  /* --kg-primary */
  --gh-soft-navy: #004B50;
  /* --kg-primary-2 */
  --gh-medical-blue: #1A2B4C;
  /* heading/link base */
  --gh-success: #40E0D0;
  /* --kg-accent */
  --gh-whatsapp: #40E0D0;
  /* accent */
}

/* Hero + badges */
.gh-hero {
  background: linear-gradient(135deg, var(--gh-dark-navy), var(--gh-soft-navy));
}

.gh-badge {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

/* Links */
.gh-card a {
  color: var(--gh-soft-navy);
}

.gh-card a:hover,
.gh-card a:focus {
  color: var(--gh-dark-navy);
}

/* Callouts */
.gh-callout {
  border-left-color: var(--gh-soft-navy);
}

.gh-callout--success {
  border-left-color: var(--gh-success);
}

/* =========================
   Landing Page Styles
========================= */

.kg-gdpr-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  color: var(--kg-primary);
}

.kg-lang-select {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  font-weight: 500;
  cursor: pointer;
}

.kg-lang-select--mobile {
  width: 96px;
}

.kg-lang-select--desktop {
  width: 120px;
}

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --kg-primary: #1A2B4C;
  --kg-primary-2: #004B50;
  --kg-accent: #40E0D0;
  --kg-accent-2: #00F5FF;

  --kg-bg: #F8FAFC;
  --kg-surface: #ffffff;
  --kg-text: #374151;
  --kg-muted: #6B7280;
  --kg-line: #E5E7EB;

  --kg-radius: 22px;
  --kg-radius-sm: 14px;

  --kg-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  --kg-shadow-hover: 0 24px 60px rgba(15, 23, 42, .14);
}

/* =========================
   GLOBAL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--kg-bg);
  color: var(--kg-text);
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all .3s ease;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

/* =========================
   BUTTONS
========================= */
.btn,
.kg-btn {
  border-radius: 14px;
  padding: 8px 18px;
  font-weight: 700;
  transition: all .25s ease;
  font-size: 16px
}

.btn-success {
  background: var(--kg-accent);
  border: none;
  color: var(--kg-primary);
}

.btn-success:hover {
  background: var(--kg-accent-2);
  color: var(--kg-primary);
  transform: translateY(-2px);
}

.btn:first-child:active {
  background: var(--kg-accent-2);

}

/* =========================
   COMMON SECTION
========================= */
.kg-section {
  padding: 110px 0;
}

.kg-section--light {
  background: #fff;
}

#features.kg-section--light {
  position: relative;
  overflow: hidden;
}

#features.kg-section--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/image.png") center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

#features.kg-section--light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

#features.kg-section--light>.container {
  position: relative;
  z-index: 1;
}

#features.kg-section--light .kg-section-head {
  padding: 22px 20px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, rgba(26, 43, 76, 0.72), rgba(0, 75, 80, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18); */
  backdrop-filter: blur(6px);
}

#features.kg-section--light .kg-h2 {
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

#features.kg-section--light .kg-sub {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

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

.kg-h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--kg-primary);
  margin-bottom: 18px;
}

.kg-h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--kg-primary);
  margin-bottom: 14px;
}

.kg-sub {
  color: var(--kg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.kg-p {
  color: var(--kg-text);
  line-height: 1.8;
}

.kg-p-lg {
  font-size: 1.08rem;
  color: var(--kg-text);
}

/* =========================
   CARDS
========================= */
.kg-card,
.kg-step,
.kg-form-card,
.kg-cta-card {
  background: #fff;
  border: 1px solid var(--kg-line);
  border-radius: var(--kg-radius);
  padding: 36px;
  box-shadow: var(--kg-shadow);
  height: 100%;
  transition: all .3s ease;
}

.kg-card:hover,
.kg-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--kg-shadow-hover);
}

.kg-icon,
.kg-step-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
  color: #fff;
  margin-bottom: 20px;
}

.kg-step-title {
  font-weight: 800;
  color: var(--kg-primary);
  margin-bottom: 10px;
}

.kg-step-text {
  color: var(--kg-text);
}

.kg-step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.kg-step-head .kg-step-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.kg-step-head .kg-step-title {
  margin-bottom: 0;
  line-height: 1.3;
}

/* =========================
   WHATSAPP BAND
========================= */
.kg-wa-band {
  padding: 0;
  background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
  color: #fff;
}

.kg-wa-band-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
  /* border-radius: var(--kg-radius); */
  padding: 50px 130px;
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  /* box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18); */
}

.kg-wa-band-title {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}

.kg-wa-band-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.kg-wa-band-btn.btn-success {
  background: linear-gradient(90deg, var(--kg-accent), var(--kg-accent-2));
  color: var(--kg-primary);
}

.kg-wa-band-btn.btn-success:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.kg-wa-band-qr {
  justify-self: end;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.kg-wa-band-qr-img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  display: block;
}

/* =========================
   IMAGE / VIDEO
========================= */
.kg-shot {
  border-radius: 26px;
  /* padding: 14px; */
}

.kg-shot-img {
  width: 100%;
  border-radius: 18px;
}

video.kg-shot-img {
  height: 600px;
  object-fit: contain;
}

img.kg-shot-img {
  height: auto;
}

.kg-video-frame {
  overflow: hidden;
  border-radius: 18px;
}

/* =========================
   TRUST
========================= */
.kg-trust {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
}

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

.kg-trust-head h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.kg-trust-head p {
  color: rgba(255, 255, 255, .82);
}

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

.kg-trust-item {
  padding: 32px 24px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.kg-trust-ic {
  color: var(--kg-accent);
  margin-bottom: 16px;
}

.kg-trust-txt {
  color: #fff;
  font-weight: 700;
}

.kg-trust-inner>.kg-trust-item:nth-child(7) {
  grid-column: 2;
}

/* =========================
   HIGHLIGHT BOX
========================= */
.kg-highlight {
  padding: 22px;
  border-radius: 18px;
  margin-top: 18px;
  background: linear-gradient(135deg,
      rgba(64, 224, 208, .10),
      rgba(0, 245, 255, .08));
  border: 1px solid rgba(64, 224, 208, .16);
}

.kg-highlight-title {
  font-weight: 800;
  color: var(--kg-primary);
  margin-bottom: 8px;
}

.kg-highlight-text {
  color: var(--kg-text);
}

/* =========================
   CTA
========================= */
.kg-cta {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(64, 224, 208, .08), transparent 35%),
    linear-gradient(135deg, rgba(26, 43, 76, .42), rgba(0, 75, 80, .42)),
    url("../images/image2.png");
  background-size: auto, auto, cover;
  background-position: 0 0, 0 0, center;
  background-repeat: no-repeat;
}

.kg-cta-card {
  background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.kg-cta-card .kg-h2 {
  color: #fff;
}

.kg-cta-bullets {
  margin-top: 28px;
}

.kg-cta-bullet {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.kg-cta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kg-accent);
  margin-top: 8px;
}

/* =========================
   FORM
========================= */
.kg-form input,
.kg-form textarea,
.kg-form select {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid var(--kg-line);
  padding: 14px 16px;
}

.kg-form textarea {
  min-height: 130px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px) {

  .kg-h2,
  .kg-trust-head h2 {
    font-size: 1.8rem;
  }

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

  .kg-trust-inner>.kg-trust-item:nth-child(7) {
    grid-column: auto;
    justify-self: center;
  }

  .kg-section,
  .kg-trust,
  .kg-cta {
    padding: 75px 0;
  }

  video.kg-shot-img {
    height: auto;
  }
}

@media(max-width:768px) {
  .kg-wa-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }

  .kg-wa-band-qr {
    justify-self: center;
  }
}

@media(max-width:576px) {

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .kg-wa-band {
    padding: 50px 0;
  }

  .kg-wa-band-qr-img {
    width: 190px;
    height: 190px;
  }

  .kg-h2 {
    font-size: 1.6rem;
  }

  #dashboard .col-lg-6.order-lg-1 {
    text-align: center;
  }

  #dashboard .kg-h2,
  #dashboard .kg-p-lg {
    text-align: center;
  }

  #dashboard .kg-highlight {
    text-align: left;
  }

  .kg-cta {
    padding: 52px 0;
    background-position: center, center, center;
  }

  .kg-cta-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .kg-cta-card .kg-h2 {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .kg-cta-card .kg-sub {
    font-size: .98rem;
    line-height: 1.55;
    margin-top: .55rem;
  }

  .kg-cta-bullets {
    margin-top: 20px;
  }

  .kg-cta-bullet {
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

  .kg-cta-dot {
    width: 8px;
    height: 8px;
    margin-top: .48rem;
    flex: 0 0 auto;
  }

  .kg-cta-bullet span:last-child {
    font-size: .95rem;
    line-height: 1.5;
  }

  .kg-cta .kg-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .kg-cta .d-flex.flex-wrap.gap-2.mt-3 {
    flex-direction: column;
    align-items: stretch;
  }

  .kg-demo-note {
    font-size: .95rem;
    line-height: 1.45;
  }
}


/* ===================== HERO BANNER ===================== */
.kg-hero-banner {
  position: relative;
  width: 100%;
  overflow: visible;
  /* allow overlap */
  z-index: 1;
}

.kg-hero-banner-img {
  width: 100%;
  height: auto;
  /* keeps natural image height */
  display: block;
}

/* button overlay */
.kg-hero-overlay {
  position: absolute;
  bottom: 23%;
  left: 50%;
  right: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: 2%;
  padding-right: 6%;
}

.kg-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.kg-hero-buttons .btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
}

/* mobile */
@media(max-width:576px) {
  .kg-hero-overlay {
    bottom: 6%;
  }

  .kg-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .kg-hero-buttons .btn {
    width: 220px;
  }
}




/* api */

.kg-gdpr {
  position: relative;
  margin-top: 0;
  /* padding: 52px 0 70px; */
  z-index: 5;
  background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
}

.kg-gdpr-grid {
  position: relative;
  z-index: 6;
  transform: translateY(-85px);
  margin-bottom: -85px;
}

/* mobile */
@media (max-width: 768px) {
  .kg-gdpr {
    margin-top: 0;
    padding: 36px 0 50px;
  }

  .kg-gdpr-grid {
    transform: translateY(-35px);
    margin-bottom: -35px;
  }
}

/* layout */
.kg-gdpr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.kg-gdpr-item .mb-3[aria-hidden="true"] {
  width: 40px !important;
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kg-gdpr-item .mb-3[aria-hidden="true"] svg {
  width: 100%;
  height: 100%;
}

/* premium card */
.kg-gdpr-item {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* soft gradient glow */
.kg-gdpr-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #40E0D0, #00F5FF, #1A2B4C);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
  filter: blur(20px);
}

.kg-gdpr-item:hover::before {
  opacity: 0.25;
}

.kg-gdpr-item:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 224, 208, 0.4);
}

/* text styling */
.kg-gdpr-title {
  font-size: 20px;
  font-weight: 800;
  color: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.kg-gdpr-text {
  font-size: 15px;
  color: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2))#ffffff;
}

.kg-gdpr-sub {
  font-size: 13px;
  color: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.kg-gdpr-note {
  max-width: 980px;
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2));
}

.kg-gdpr-note-card {
  padding: 22px 26px;
  text-align: center;
}

.kg-gdpr-note-card:hover {
  transform: none;
  border-color: rgba(26, 43, 76, 0.08);
}

/* subtle divider line */
.kg-gdpr-item::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #40E0D0, #00F5FF);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.7;
}

/* responsive */
@media(max-width:768px) {
  .kg-gdpr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

:root {
  /* Map "gh" design tokens to Kognits landing tokens */
  --gh-dark-navy: #1A2B4C;
  /* --kg-primary */
  --gh-primary-navy: #1A2B4C;
  /* --kg-primary */
  --gh-soft-navy: #004B50;
  /* --kg-primary-2 */
  --gh-medical-blue: #1A2B4C;
  /* heading/link base */
  --gh-success: #40E0D0;
  /* --kg-accent */
  --gh-whatsapp: #40E0D0;
  /* accent */

  --kg-primary: var(--gh-dark-navy);
  --kg-primary-2: var(--gh-soft-navy);
  --kg-accent: var(--gh-success);
  --kg-accent-2: #00F5FF;

  --kg-bg: #F8FAFC;
  --kg-surface: #ffffff;
  --kg-text: #374151;
  --kg-muted: #6B7280;
  --kg-line: #E5E7EB;

  --kg-radius: 22px;
  --kg-radius-sm: 14px;

  --kg-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  --kg-shadow-hover: 0 24px 60px rgba(15, 23, 42, .14);
}

.kg-pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(64, 224, 208, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 245, 255, 0.14), transparent 22%),
    radial-gradient(circle at bottom center, rgba(26, 43, 76, 0.06), transparent 34%),
    linear-gradient(180deg, var(--kg-bg) 0%, #eef5f3 100%);
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.kg-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.84), transparent 34%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), transparent 56%),
    linear-gradient(90deg, transparent 0, rgba(26, 43, 76, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.kg-pricing-section::after {
  content: '';
  position: absolute;
  inset: auto -12% -16% -12%;
  height: 22rem;
  pointer-events: none;
}

.kg-pricing-section>.container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}

.kg-pricing-section .kg-section-head {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
}

.kg-pricing-section .kg-sub {
  max-width: 46rem;
  margin-inline: auto;
}

.kg-pricing-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--kg-primary);
  text-wrap: balance;
}

.kg-pricing-title .accent {
  display: inline-block;
  background: linear-gradient(135deg, #08a7b3 0%, #28b8d8 55%, #4a8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kg-pricing-title-copy {
  max-width: 42rem;
  margin: .9rem auto 0;
  color: var(--kg-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.kg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.kg-pricing-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--kg-radius);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98));
  border: 1px solid rgba(229, 231, 235, 0.88);
  box-shadow: var(--kg-shadow);
  min-height: 100%;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.kg-pricing-card::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 43, 76, 0.10) 0%, rgba(26, 43, 76, 0.03) 58%, transparent 70%);
  pointer-events: none;
}

.kg-pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--kg-shadow-hover);
  border-color: rgba(64, 224, 208, 0.35);
}

.kg-pricing-top {
  height: 12px;
  background: linear-gradient(90deg, var(--gh-dark-navy), var(--gh-soft-navy));
}

.kg-pricing-card:nth-child(1),
.kg-pricing-card:nth-child(2),
.kg-pricing-card:nth-child(3) {
  grid-column: span 3;
}

.kg-pricing-card:nth-child(4) {
  grid-column: span 3;
}

.kg-pricing-card--common {
  grid-column: span 6;
  background:
    radial-gradient(circle at top left, rgba(64, 224, 208, 0.24), transparent 22%),
    radial-gradient(circle at top right, rgba(0, 245, 255, 0.14), transparent 18%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(12, 31, 54, 0.98), rgba(8, 58, 70, 0.98));
  border-color: rgba(64, 224, 208, 0.28);
  box-shadow: 0 32px 90px rgba(6, 18, 32, 0.28);
  border: 1px solid rgba(64, 224, 208, 0.18);
}

.kg-pricing-card--common::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(64, 224, 208, 0.24) 0%, rgba(64, 224, 208, 0.06) 32%, transparent 60%),
    radial-gradient(circle at 82% 12%, rgba(0, 245, 255, 0.18) 0%, rgba(0, 245, 255, 0.05) 28%, transparent 58%);
}

.kg-pricing-card--common::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: .34rem;
  background: linear-gradient(90deg, var(--gh-success), var(--gh-whatsapp));
  opacity: .96;
  pointer-events: none;
}

.kg-pricing-card--common .kg-pricing-top {
  background: linear-gradient(90deg, var(--gh-success), var(--gh-whatsapp));
}

.kg-pricing-card--common .kg-pricing-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kg-pricing-card--common .kg-pricing-headline {
  margin-bottom: .75rem;
}

.kg-pricing-card--common .kg-pricing-name,
.kg-pricing-card--common .kg-pricing-months,
.kg-pricing-card--common .kg-pricing-desc {
  color: #ffffff;
}

.kg-pricing-card--common .kg-pricing-desc {
  max-width: 48rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.kg-pricing-common-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.kg-pricing-common-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.kg-pricing-common-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .45rem;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(64, 224, 208, 0.16);
  color: #d9fffb;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kg-pricing-common-title {
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #ffffff;
}

.kg-pricing-common-text {
  margin-top: .4rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 34rem;
}

.kg-pricing-common-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: .7rem;
  flex: 0 0 auto;
}

.kg-pricing-common-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-width: 0;
  padding: .85rem .95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffffff;
  white-space: nowrap;
}

.kg-pricing-common-stat strong {
  font-size: 1.15rem;
  line-height: 1;
}

.kg-pricing-common-stat small {
  color: rgba(255, 255, 255, 0.74);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.kg-pricing-card--common .kg-pricing-list {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .75rem;
}

.kg-pricing-card--common .kg-pricing-list li {
  align-items: center;
  gap: .7rem;
  min-height: 62px;
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 30px rgba(6, 18, 32, 0.12);
  color: #ffffff;
  line-height: 1.45;
}

.kg-pricing-card--common .kg-pricing-list li strong {
  color: #ffffff;
}

.kg-pricing-card--common .kg-pricing-dot {
  width: .95rem;
  height: .95rem;
  margin-top: .18rem;
  box-shadow: 0 0 0 6px rgba(64, 224, 208, 0.09), 0 10px 18px rgba(64, 224, 208, 0.20);
}

.kg-pricing-card--custom {
  grid-column: span 6;
  background:
    radial-gradient(circle at top right, rgba(64, 224, 208, 0.26), transparent 24%),
    radial-gradient(circle at bottom left, rgba(0, 245, 255, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(26, 43, 76, 0.98), rgba(0, 75, 80, 0.98));
  border-color: rgba(64, 224, 208, 0.24);
  box-shadow: 0 30px 80px rgba(26, 43, 76, 0.26);
  border: 1px solid rgba(64, 224, 208, 0.20);
}

.kg-pricing-card--custom::after {
  background: radial-gradient(circle, rgba(64, 224, 208, 0.18) 0%, rgba(64, 224, 208, 0.04) 58%, transparent 70%);
}

.kg-pricing-card--custom .kg-pricing-top {
  background: linear-gradient(90deg, var(--gh-success), var(--gh-whatsapp));
}

.kg-pricing-card--custom .kg-pricing-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.05fr);
  gap: .95rem;
  align-items: stretch;
}

.kg-pricing-card--custom .kg-pricing-headline,
.kg-pricing-card--custom .kg-pricing-desc {
  grid-column: 1 / -1;
}

.kg-pricing-card--custom .kg-pricing-list {
  margin-top: .2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
}

.kg-pricing-card--custom .kg-pricing-price {
  margin-top: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  min-height: 100%;
  padding: 1.05rem 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.14);
}

.kg-contact-price-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #5eead4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(94, 234, 212, 0.16);
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.05);
  flex: 0 0 auto;
}

.kg-contact-price-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.kg-contact-price-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.kg-contact-price-copy .label {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: .2rem;
  letter-spacing: .06em;
}

.kg-contact-price-copy .amount {
  color: #ffffff;
  display: block;
  width: 100%;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.kg-contact-price-copy .note {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
  max-width: 100%;
}

.kg-pricing-card--custom .kg-pricing-name,
.kg-pricing-card--custom .kg-pricing-months,
.kg-pricing-card--custom .kg-pricing-desc,
.kg-pricing-card--custom .kg-pricing-list li,
.kg-pricing-card--custom .kg-pricing-price .label,
.kg-pricing-card--custom .kg-pricing-price .amount {
  color: #ffffff;
}

.kg-pricing-card--custom .kg-pricing-chip {
  background: rgba(64, 224, 208, 0.18);
  color: #ffffff;
  max-width: 46%;
}

.kg-pricing-card--custom .kg-pricing-price {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.kg-pricing-card--custom .kg-pricing-price::after {
  background: radial-gradient(circle, rgba(0, 245, 255, 0.16) 0%, transparent 70%);
}

.kg-pricing-card--custom::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: .34rem;
  background: linear-gradient(90deg, var(--gh-success), var(--gh-whatsapp));
  opacity: .92;
  pointer-events: none;
}

.kg-pricing-card--custom .kg-pricing-name {
  font-size: 1.5rem;
}

.kg-pricing-card--setup {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gh-dark-navy), var(--gh-soft-navy));
  color: #fff;
}

.kg-pricing-card--setup::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: .34rem;
  background: linear-gradient(90deg, var(--gh-success), var(--gh-whatsapp));
  opacity: .96;
  pointer-events: none;
}

.kg-pricing-card--setup .kg-pricing-name,
.kg-pricing-card--setup .kg-pricing-desc {
  color: #fff;
}

.kg-pricing-card--setup .kg-pricing-months,
.kg-pricing-card--setup .kg-pricing-price .label,
.kg-pricing-card--setup .kg-pricing-price .note {
  color: rgba(255, 255, 255, 0.78);
}

.kg-pricing-card--setup .kg-pricing-price {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.kg-pricing-card--setup .kg-pricing-price .amount {
  color: #fff;
}

.kg-pricing-card--setup .kg-pricing-chip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.kg-pricing-card--setup .setup-charge {
  color: #b8fff7;
}

.kg-pricing-body {
  padding: 1.65rem 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kg-pricing-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.kg-pricing-name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--kg-primary);
}

.kg-pricing-months {
  margin-top: .35rem;
  font-size: .84rem;
  color: var(--kg-muted);
  letter-spacing: .01em;
}

.kg-pricing-chip {
  flex: 0 0 auto;
  align-self: flex-start;
  max-width: 52%;
  padding: .45rem .72rem;
  border-radius: 999px;
  background: rgba(64, 224, 208, 0.16);
  color: var(--kg-primary-2);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(64, 224, 208, 0.18);
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.kg-pricing-price {
  margin-top: auto;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: var(--kg-radius-sm);
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(238, 250, 249, 0.96));
  border: 1px solid var(--kg-line);
  color: var(--kg-primary);
  position: relative;
  overflow: hidden;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kg-pricing-price::after {
  content: '';
  position: absolute;
  right: -18px;
  top: -18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.16) 0%, transparent 70%);
}

.kg-pricing-price .label {
  display: block;
  margin-bottom: .25rem;
  font-size: .68rem;
  color: var(--kg-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.kg-pricing-price .amount {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--kg-primary);
  white-space: nowrap;
}

.kg-pricing-price .tax-suffix {
  display: inline-block;
  margin-left: .08rem;
  font-size: .6em;
  font-weight: 800;
  line-height: 1;
  vertical-align: baseline;
  transform: translateY(-0.02em);
  white-space: nowrap;
}


.kg-pricing-price .setup-charge {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: #0f766e;
  letter-spacing: .01em;
}

.kg-pricing-price .note {
  display: block;
  margin-top: .22rem;
  font-size: .8rem;
  color: var(--kg-muted);
  letter-spacing: .01em;
}

.kg-pricing-faq-link {
  display: inline-flex;
  margin-top: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--kg-primary-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kg-pricing-price .kg-pricing-faq-link.setup-charge {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: .01em;
}

.kg-pricing-card--custom .kg-pricing-faq-link.setup-charge {
  color: #d9fffb;
}

.kg-pricing-desc {
  color: var(--kg-text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.05rem;
}

.kg-pricing-list {
  margin: .45rem 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}

.kg-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--kg-text);
  font-weight: 500;
  font-size: 16px;
}

.kg-pricing-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: .16rem;
  background: linear-gradient(135deg, var(--kg-accent), var(--kg-accent-2));
  box-shadow: 0 7px 14px rgba(64, 224, 208, 0.22);
}

.kg-pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.14), rgba(0, 245, 255, 0.12));
  color: var(--kg-primary-2);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.kg-pricing-card--custom .kg-pricing-price .amount {
  font-size: 1.75rem;
}

.kg-pricing-card--custom .kg-pricing-price .setup-charge {
  color: rgba(255, 255, 255, 0.9);
}

.kg-pricing-card--custom .kg-pricing-price .note {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 575.98px) {
  .kg-pricing-title {
    font-size: 1.6rem;
    line-height: 1.12;
  }
}

@media (max-width: 991.98px) {
  .kg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .kg-pricing-body {
    padding: 1.35rem 1.25rem 1.2rem;
  }

  .kg-pricing-card--custom .kg-pricing-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .kg-pricing-card--custom .kg-pricing-price {
    width: 100%;
    min-height: auto;
    padding: 1rem .95rem .95rem;
  }

  .kg-pricing-card--custom .kg-pricing-price .amount {
    font-size: 1.45rem;
  }

  .kg-contact-price-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .kg-contact-price-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .kg-pricing-card--common,
  .kg-pricing-card--custom,
  .kg-pricing-card--setup,
  .kg-pricing-card:nth-child(1),
  .kg-pricing-card:nth-child(2),
  .kg-pricing-card:nth-child(3),
  .kg-pricing-card:nth-child(4),
  .kg-pricing-card:nth-child(5),
  .kg-pricing-card--custom {
    grid-column: 1 / -1 !important;
  }

  .kg-pricing-card--common .kg-pricing-common-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .kg-pricing-card--common .kg-pricing-common-stats {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .kg-pricing-card--common .kg-pricing-common-stat {
    flex: 1 1 0;
  }

  .kg-pricing-card--custom .kg-pricing-name {
    font-size: 1.25rem;
  }

  .kg-pricing-chip {
    max-width: 56%;
    font-size: .66rem;
    padding: .4rem .62rem;
  }

  .kg-pricing-faq-link {
    font-size: .75rem;
  }

  .kg-pricing-card--custom .kg-pricing-desc {
    max-width: none;
  }

  .kg-pricing-card:nth-child(1),
  .kg-pricing-card:nth-child(2),
  .kg-pricing-card:nth-child(3),
  .kg-pricing-card:nth-child(4),
  .kg-pricing-card:nth-child(5),
  .kg-pricing-card--custom {
    grid-column: auto;
  }
}

/* =========================
   About Page Styles
========================= */
.kg-about-shell {
  overflow: hidden;
}

.kg-about-hero {
  position: relative;
  padding: 70px 0 42px;
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(64, 224, 208, .22), transparent 60%),
    radial-gradient(820px 520px at 90% 8%, rgba(0, 245, 255, .16), transparent 58%),
    linear-gradient(180deg, #F8FAFC, #ffffff);
  border-bottom: 1px solid var(--kg-line);
}

.kg-about-hero::before,
.kg-about-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .35;
  pointer-events: none;
}

.kg-about-hero::before {
  left: -180px;
  top: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(64, 224, 208, .85), rgba(64, 224, 208, 0) 62%);
}

.kg-about-hero::after {
  right: -220px;
  top: -140px;
  background: radial-gradient(circle at 40% 40%, rgba(0, 245, 255, .8), rgba(0, 245, 255, 0) 60%);
}

.kg-about-kicker { display: inline-flex; align-items: center; gap: .55rem; padding: .4rem .75rem; border-radius: 999px; background: rgba(255, 255, 255, .82); border: 1px solid var(--kg-line); backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(26, 43, 76, .06); letter-spacing: .09em; text-transform: uppercase; font-weight: 800; font-size: .75rem; color: #374151; }
.kg-about-title { color: var(--kg-ink); line-height: 1.05; letter-spacing: -0.02em; font-size: 2.2rem; }
.kg-about-brand { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.kg-about-brand-logo { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 14px; background: rgba(255, 255, 255, .9); border: 1px solid var(--kg-line); box-shadow: 0 10px 28px rgba(26, 43, 76, .08); display: inline-flex; align-items: center; justify-content: center; padding: 8px; }
.kg-about-brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.kg-about-lead { font-size: 16px; color: var(--kg-muted); }
.kg-about-glass { background: var(--kg-surface); border: 1px solid var(--kg-line); border-radius: var(--kg-radius); box-shadow: var(--kg-shadow); backdrop-filter: blur(14px); }
.kg-about-card { background: var(--kg-surface); border: 1px solid var(--kg-line); border-radius: var(--kg-radius); box-shadow: var(--kg-shadow-soft); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.kg-about-card:hover { transform: translateY(-3px); border-color: rgba(26, 43, 76, .18); box-shadow: 0 22px 60px rgba(26, 43, 76, .12); }
.kg-about-muted { color: var(--kg-muted); }
.kg-about-metric { padding: 1rem; border-radius: 16px; border: 1px solid var(--kg-line); background: rgba(255, 255, 255, .88); }
.kg-about-metric .value { font-weight: 900; letter-spacing: -0.02em; font-size: 20px; color: var(--kg-ink); line-height: 1; }
.kg-about-metric .value i { font-size: 1.6rem; line-height: 1; }
.kg-about-metric .label { font-size: .88rem; color: var(--kg-muted); }
.kg-about-icon { width: 44px; height: 44px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; color: #ffffff; background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2)); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 12px 30px rgba(26, 43, 76, .08); flex: 0 0 auto; }
.kg-about-icon i { font-size: 1.1rem; line-height: 1; }
.kg-about-icon img { width: 26px; height: 26px; object-fit: contain; display: block; }
.kg-about-flagship-logo img { width: 44px; height: 44px; object-fit: contain; display: block; }
.kg-about-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .48rem .75rem; border-radius: 999px; border: 1px solid var(--kg-line); background: rgba(255, 255, 255, .88); color: #374151; font-weight: 700; backdrop-filter: blur(10px); }
.kg-about-check { width: 22px; height: 22px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; background: rgba(64, 224, 208, .18); border: 1px solid rgba(64, 224, 208, .35); color: #004B50; flex: 0 0 auto; }
.kg-about-section { padding: 64px 0; }
.kg-about-section--alt { background: linear-gradient(180deg, #F8FAFC, #ffffff); border-top: 1px solid var(--kg-line); border-bottom: 1px solid var(--kg-line); }
.kg-about-subhead { color: var(--kg-ink); letter-spacing: -0.02em; font-size: 2.2rem; }
.kg-about-divider { height: 1px; background: var(--kg-line); }
.kg-about-grid { display: grid; gap: 14px; grid-template-columns: repeat(12, 1fr); }
.kg-about-grid>.col { grid-column: span 12; }
@media (min-width: 992px) {
  .kg-about-grid>.col.span-7 { grid-column: span 7; }
  .kg-about-grid>.col.span-5 { grid-column: span 5; }
  .kg-about-grid>.col.span-6 { grid-column: span 6; }
  .kg-about-grid>.col.span-4 { grid-column: span 4; }
  .kg-about-grid>.col.span-3 { grid-column: span 3; }
}
.kg-about-industry { padding: .85rem .9rem; border-radius: 16px; border: 1px solid var(--kg-line); background: linear-gradient(135deg, var(--kg-primary), var(--kg-primary-2)); box-shadow: 0 12px 34px rgba(26, 43, 76, .06); transition: transform .18s ease, box-shadow .18s ease; }
.kg-about-industry-icon { width: 36px; height: 36px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .18); color: #fff; flex: 0 0 auto; }
.kg-about-industry-icon i { font-size: 1rem; line-height: 1; }
.kg-about-industry:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(26, 43, 76, .10); }
.kg-about-industry .t { font-weight: 800; color: white; }
.kg-about-industry .d { font-size: .9rem; color: white; }
.kg-about-faq .accordion-item { border: 1px solid var(--kg-line); border-radius: 16px; overflow: hidden; background: rgba(255, 255, 255, .94); box-shadow: 0 10px 30px rgba(26, 43, 76, .06); }
.kg-about-faq .accordion-item+.accordion-item { margin-top: 12px; }
.kg-about-faq .accordion-button { font-weight: 800; color: var(--kg-ink); background: #ffffff; }
.kg-about-faq .accordion-button:not(.collapsed) { color: var(--kg-ink); box-shadow: none; }
.kg-about-faq .accordion-body { color: var(--kg-muted); }
.d-grid .btn { background-color: #00F5FF !important; color: #1A2B4C !important; }
