:root {
  --k3-primary: rgb(47, 5, 255);
  --k3-primary-hover: rgb(29, 74, 209);
  --k3-primary-active: rgb(89, 126, 240);
  --k3-bg: rgb(250, 250, 250);
  --k3-bg-white: rgb(255, 255, 255);
  --k3-bg-dark: rgb(0, 0, 0);
  --k3-text-primary: rgb(10, 13, 17);
  --k3-text-secondary: rgb(115, 115, 115);
  --k3-text-muted: rgb(107, 118, 126);
  --k3-text-white: rgb(255, 255, 255);
  --k3-border: rgb(205, 215, 223);
  --k3-border-light: rgb(229, 236, 242);
  --k3-font-serif: LTSuperiorSerif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --k3-font-sans: LTSuperior, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --k3-radius-sm: 8px;
  --k3-radius-md: 12px;
  --k3-radius-lg: 16px;
  --k3-radius-xl: 24px;
}

/* ===================== FAQ SECTION ON INDEX.HTML ===================== */

.k3-faq-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 80px;
  margin-bottom: 0;
  padding: 64px 24px 48px;
  background-color: var(--k3-bg-white);
  border-top: 1px solid var(--k3-border-light);
  box-sizing: border-box;
}

.k3-faq-section__inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.k3-faq-section__seo-heading {
  font-family: var(--k3-font-serif);
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--k3-text-primary);
  margin: 0 0 12px 0;
  text-align: center;
}

.k3-faq-section__seo-sub {
  font-family: var(--k3-font-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--k3-text-muted);
  text-align: center;
  margin: 0 0 48px 0;
}

.k3-faq-section__title {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--k3-text-secondary);
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
  text-align: center;
}

.k3-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  overflow: hidden;
  background-color: var(--k3-bg-white);
}

.k3-accordion__item {
  border-bottom: 1px solid var(--k3-border-light);
  background-color: var(--k3-bg-white);
  transition: background-color 0.2s;
}

.k3-accordion__item:last-child {
  border-bottom: none;
}

.k3-accordion__question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  box-sizing: border-box;
  transition: background-color 0.2s;
}

.k3-accordion__question:hover {
  background-color: rgba(245, 243, 240, 0.5);
}

.k3-accordion__question h2 {
  font-family: var(--k3-font-sans);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--k3-text-primary);
  margin: 0;
  flex: 1 1 0%;
}

.k3-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--k3-text-secondary);
}

.k3-accordion__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  display: block;
}

.k3-accordion__item.is-open .k3-accordion__icon {
  transform: rotate(180deg);
}

.k3-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  box-sizing: border-box;
}

.k3-accordion__item.is-open .k3-accordion__answer {
  max-height: 600px;
  padding: 0 24px 20px;
}

.k3-accordion__answer h3 {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0;
}

.k3-faq-section__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.k3-faq-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: var(--k3-primary);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.k3-faq-section__link:hover {
  color: var(--k3-primary-hover);
  opacity: 0.85;
}

/* ===================== SUBPAGE SHARED LAYOUT ===================== */

.k3-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--k3-bg);
  font-family: var(--k3-font-sans);
  color: var(--k3-text-primary);
  -webkit-font-smoothing: antialiased;
}

/* ===================== SUBPAGE HEADER / NAV ===================== */

.k3-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: var(--k3-bg-dark);
  border-bottom: 1px solid rgb(39, 39, 42);
  box-sizing: border-box;
  transition: background-color 0.2s;
}

.k3-nav__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
}

.k3-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.k3-nav__logo img {
  height: 40px;
  width: 128px;
  display: block;
}

.k3-nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.k3-nav__link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--k3-radius-sm);
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: var(--k3-text-white);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.k3-nav__link:hover {
  background-color: rgb(44, 51, 58);
}

.k3-nav__link.is-active {
  background-color: rgb(44, 51, 58);
}

.k3-nav__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.k3-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 32px;
  border-radius: var(--k3-radius-sm);
  background-color: var(--k3-primary);
  color: var(--k3-text-white);
  font-family: var(--k3-font-sans);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.k3-nav__btn:hover {
  background-color: var(--k3-primary-hover);
}

/* ===================== SUBPAGE HERO ===================== */

.k3-hero {
  width: 100%;
  background-color: var(--k3-bg-dark);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.k3-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: radial-gradient(ellipse at 60% 40%, rgba(47, 5, 255, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.k3-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  box-sizing: border-box;
}

.k3-hero__label {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(107, 118, 126);
  margin: 0 0 16px 0;
}

.k3-hero__title {
  font-family: var(--k3-font-serif);
  font-size: 64px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--k3-text-white);
  margin: 0 0 16px 0;
  max-width: 700px;
}

.k3-hero__sub {
  font-family: var(--k3-font-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgb(107, 118, 126);
  margin: 0;
  max-width: 560px;
}

/* ===================== SUBPAGE MAIN CONTENT ===================== */

.k3-main {
  flex: 1 1 0%;
  width: 100%;
  box-sizing: border-box;
}

.k3-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px;
  box-sizing: border-box;
}

.k3-content--wide {
  max-width: 1100px;
}

/* ===================== CARD ===================== */

.k3-card {
  width: 100%;
  background-color: var(--k3-bg-white);
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  box-sizing: border-box;
  overflow: hidden;
}

.k3-card__body {
  padding: 32px;
}

.k3-card__section {
  padding: 24px 32px;
  border-bottom: 1px solid var(--k3-border-light);
}

.k3-card__section:last-child {
  border-bottom: none;
}

/* ===================== SECTION HEADINGS ===================== */

.k3-section-label {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--k3-text-secondary);
  margin: 0 0 12px 0;
}

.k3-section-title {
  font-family: var(--k3-font-serif);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--k3-text-primary);
  margin: 0 0 12px 0;
}

.k3-section-sub {
  font-family: var(--k3-font-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--k3-text-muted);
  margin: 0 0 32px 0;
}

/* ===================== BODY TEXT ===================== */

.k3-text {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0 0 16px 0;
}

.k3-text:last-child {
  margin-bottom: 0;
}

.k3-text--strong {
  font-weight: 500;
  color: var(--k3-text-primary);
}

.k3-text--lg {
  font-size: 16px;
  line-height: 26px;
}

/* ===================== ABOUT PAGE GRID ===================== */

.k3-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  width: 100%;
  box-sizing: border-box;
}

.k3-about-card {
  background-color: var(--k3-bg-white);
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.k3-about-card__label {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--k3-text-secondary);
  margin: 0;
}

.k3-about-card__value {
  font-family: var(--k3-font-serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--k3-text-primary);
  margin: 0;
}

.k3-about-card__desc {
  font-family: var(--k3-font-sans);
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0;
}

/* ===================== ABOUT FEATURES ===================== */

.k3-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  overflow: hidden;
  margin: 32px 0;
  background-color: var(--k3-bg-white);
}

.k3-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--k3-border-light);
  box-sizing: border-box;
}

.k3-feature:last-child {
  border-bottom: none;
}

.k3-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--k3-radius-sm);
  background-color: rgb(246, 248, 253);
  border: 1px solid rgb(205, 215, 223);
  flex-shrink: 0;
  color: var(--k3-primary);
}

.k3-feature__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.k3-feature__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0%;
}

.k3-feature__title {
  font-family: var(--k3-font-sans);
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: var(--k3-text-primary);
  margin: 0;
}

.k3-feature__desc {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0;
}

/* ===================== FAQ FULL PAGE ===================== */

.k3-faq-full {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.k3-faq-full__group-title {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--k3-text-secondary);
  margin: 0 0 12px 0;
  padding: 0 4px;
}

.k3-faq-full__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  overflow: hidden;
  background-color: var(--k3-bg-white);
}

.k3-faq-full__item {
  border-bottom: 1px solid var(--k3-border-light);
  background-color: var(--k3-bg-white);
  transition: background-color 0.2s;
}

.k3-faq-full__item:last-child {
  border-bottom: none;
}

.k3-faq-full__question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  box-sizing: border-box;
  transition: background-color 0.2s;
}

.k3-faq-full__question:hover {
  background-color: rgba(245, 243, 240, 0.5);
}

.k3-faq-full__question h2 {
  font-family: var(--k3-font-sans);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--k3-text-primary);
  margin: 0;
  flex: 1 1 0%;
}

.k3-faq-full__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--k3-text-secondary);
  transition: transform 0.3s ease;
}

.k3-faq-full__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.k3-faq-full__item.is-open .k3-faq-full__icon {
  transform: rotate(180deg);
}

.k3-faq-full__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  box-sizing: border-box;
}

.k3-faq-full__item.is-open .k3-faq-full__answer {
  max-height: 800px;
  padding: 0 24px 20px;
}

.k3-faq-full__answer p {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0 0 12px 0;
}

.k3-faq-full__answer p:last-child {
  margin-bottom: 0;
}

.k3-faq-full__answer ul {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  padding-left: 20px;
  margin: 0 0 12px 0;
}

.k3-faq-full__answer ul li {
  margin-bottom: 4px;
}

/* ===================== CTA / LINK BLOCKS ===================== */

.k3-cta-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background-color: rgb(246, 248, 253);
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  margin-top: 40px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.k3-cta-block__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0%;
}

.k3-cta-block__title {
  font-family: var(--k3-font-sans);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--k3-text-primary);
  margin: 0;
}

.k3-cta-block__sub {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0;
}

.k3-cta-block__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.k3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 40px;
  border-radius: 6px;
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

.k3-btn--primary {
  background-color: var(--k3-primary);
  color: var(--k3-text-white);
}

.k3-btn--primary:hover {
  background-color: var(--k3-primary-hover);
}

.k3-btn--secondary {
  background-color: rgb(246, 248, 253);
  color: var(--k3-text-primary);
  border: 1px solid var(--k3-border);
}

.k3-btn--secondary:hover {
  background-color: rgb(223, 229, 248);
}

.k3-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: var(--k3-primary);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.k3-link:hover {
  color: var(--k3-primary-hover);
}

/* ===================== SUBPAGE FOOTER ===================== */

.k3-footer {
  width: 100%;
  border-top: 1px solid var(--k3-border-light);
  background-color: var(--k3-bg-white);
  box-sizing: border-box;
}

.k3-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.k3-footer__link {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: var(--k3-text-secondary);
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}

.k3-footer__link:hover {
  color: var(--k3-text-primary);
}

.k3-footer__sep {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--k3-text-secondary);
}

/* ===================== BREADCRUMB ===================== */

.k3-breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.k3-breadcrumb__item {
  font-family: var(--k3-font-sans);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.k3-breadcrumb__item:hover {
  color: var(--k3-text-primary);
}

.k3-breadcrumb__item.is-current {
  color: var(--k3-text-primary);
  font-weight: 500;
  pointer-events: none;
}

.k3-breadcrumb__sep {
  font-family: var(--k3-font-sans);
  font-size: 13px;
  color: var(--k3-text-secondary);
  user-select: none;
}

/* ===================== DIVIDER ===================== */

.k3-divider {
  width: 100%;
  height: 1px;
  background-color: var(--k3-border-light);
  border: none;
  margin: 32px 0;
  box-sizing: border-box;
}

/* ===================== TEAM / PERSON CARDS ===================== */

.k3-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.k3-person-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--k3-bg-white);
  border: 1px solid var(--k3-border);
  border-radius: var(--k3-radius-lg);
  box-sizing: border-box;
}

.k3-person-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgb(246, 248, 253);
  border: 1px solid var(--k3-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--k3-font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--k3-primary);
}

.k3-person-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.k3-person-card__name {
  font-family: var(--k3-font-sans);
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: var(--k3-text-primary);
  margin: 0;
}

.k3-person-card__role {
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--k3-text-secondary);
  margin: 0;
}

/* ===================== BADGE / PILL ===================== */

.k3-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 9999px;
  font-family: var(--k3-font-sans);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background-color: rgb(246, 248, 253);
  color: var(--k3-primary);
  border: 1px solid rgb(205, 215, 223);
  box-sizing: border-box;
}

.k3-badge--green {
  background-color: rgb(240, 249, 240);
  color: rgb(0, 154, 153);
  border-color: rgb(198, 235, 198);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 767px) {
  .k3-faq-section {
    padding: 48px 16px 40px;
    margin-top: 48px;
  }

  .k3-faq-section__seo-heading {
    font-size: 32px;
  }

  .k3-accordion__question {
    padding: 16px;
  }

  .k3-accordion__answer {
    padding: 0 16px;
  }

  .k3-accordion__item.is-open .k3-accordion__answer {
    padding: 0 16px 16px;
  }

  .k3-hero__inner {
    padding: 48px 16px 40px;
  }

  .k3-hero__title {
    font-size: 40px;
  }

  .k3-content {
    padding: 40px 16px;
  }

  .k3-card__body {
    padding: 20px 16px;
  }

  .k3-card__section {
    padding: 20px 16px;
  }

  .k3-about-grid {
    grid-template-columns: 1fr;
  }

  .k3-team-grid {
    grid-template-columns: 1fr;
  }

  .k3-cta-block {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .k3-cta-block__actions {
    width: 100%;
  }

  .k3-btn {
    width: 100%;
    justify-content: center;
  }

  .k3-nav__links {
    display: none;
  }

  .k3-faq-full__question {
    padding: 16px;
  }

  .k3-faq-full__answer {
    padding: 0 16px;
  }

  .k3-faq-full__item.is-open .k3-faq-full__answer {
    padding: 0 16px 16px;
  }

  .k3-section-title {
    font-size: 28px;
  }

  .k3-faq-section__links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .k3-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .k3-hero__title {
    font-size: 52px;
  }

  .k3-faq-section__seo-heading {
    font-size: 40px;
  }
}