/* =============================================
   styles.css — Medikal Kad
   MUHAZU Global  |  Prefix: mk-
   ============================================= */

html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

/* ---- Keyframes ---- */
@keyframes mk-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mk-bg-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
@keyframes mk-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mk-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Scroll reveal ---- */
.mk-reveal-left,
.mk-reveal-right,
.mk-reveal-up {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--mk-delay, 0ms);
}
.mk-reveal-left  { transform: translateX(-28px); }
.mk-reveal-right { transform: translateX(28px); }
.mk-reveal-up    { transform: translateY(14px); }

.mk-reveal-left.is-visible,
.mk-reveal-right.is-visible,
.mk-reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Load anims ---- */
.mk-anim-1, .mk-anim-2, .mk-anim-3, .mk-anim-4 { opacity: 0; }
body.is-loaded .mk-anim-1 { animation: mk-fade-up 400ms ease forwards; animation-delay: 0ms; }
body.is-loaded .mk-anim-2 { animation: mk-fade-up 650ms ease forwards; animation-delay: 120ms; }
body.is-loaded .mk-anim-3 { animation: mk-fade-up 500ms ease forwards; animation-delay: 260ms; }
body.is-loaded .mk-anim-4 { animation: mk-fade-up 400ms ease forwards; animation-delay: 380ms; }

/* ============================================= */
/* SECTION 01 — HERO                             */
/* ============================================= */

.mk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.mk-hero picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mk-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: mk-bg-zoom 1200ms ease-out forwards;
}

.mk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.88) 40%, rgba(13,13,13,0.40) 100%);
  z-index: 1;
}

.mk-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mk-hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #CCF045;
  border-bottom: 2px solid #CCF045;
  padding-bottom: 6px;
}

.mk-h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  max-width: 640px;
  margin: 0;
}

.mk-hero-para {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.75;
  margin: 0;
}

.mk-hero-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 24px;
  margin-top: 8px;
  gap: 3px;
}

.mk-hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
}

.mk-hero-stat-label {
  font-size: 0.72rem;
  color: #888888;
  font-weight: 500;
}

/* Hero — force anim classes to run without body.is-loaded */
.mk-hero-content .mk-anim-1 {
  animation: mk-fade-up 500ms ease forwards;
  animation-delay: 0ms;
}
.mk-hero-content .mk-anim-2 {
  animation: mk-fade-up 650ms ease forwards;
  animation-delay: 140ms;
}
.mk-hero-content .mk-anim-3 {
  animation: mk-fade-up 500ms ease forwards;
  animation-delay: 280ms;
}
.mk-hero-content .mk-anim-4 {
  animation: mk-fade-up 500ms ease forwards;
  animation-delay: 380ms;
}

/* Hero CTA button */
.mk-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease, box-shadow 200ms ease;
  animation: mk-fade-up 500ms ease forwards;
  animation-delay: 460ms;
  opacity: 0;
}

body.is-loaded .mk-hero-cta {
  animation: mk-fade-up 500ms ease forwards;
  animation-delay: 460ms;
}

.mk-hero-cta:hover {
  background: #d4f55e;
  box-shadow: 0 8px 24px rgba(204,240,69,0.35);
}

/* Embedded hero marquee */
@keyframes mk-hero-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mk-hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
  z-index: 2;
  animation: mk-fade-up 400ms ease forwards;
  animation-delay: 600ms;
  opacity: 0;
}

body.is-loaded .mk-hero-marquee {
  animation: mk-fade-up 400ms ease forwards;
  animation-delay: 600ms;
}

.mk-hero-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: mk-hero-marquee-scroll 28s linear infinite;
  will-change: transform;
}

.mk-hero-marquee-item {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  padding: 0 24px;
}

.mk-hero-marquee-sep {
  color: rgba(255,255,255,0.28);
  margin: 0 6px;
}

@media (prefers-reduced-motion: reduce) {
  .mk-hero-marquee-track { animation-play-state: paused; }
}

@media (max-width: 768px) {
  .mk-hero           { min-height: 100dvh; height: 100dvh; }
  .mk-hero-content   { padding: 80px 5% 60px; gap: 8px; }
  .mk-hero-eyebrow   { font-size: 8px; }
  .mk-h1             { font-size: 22px; line-height: 1.2; }
  .mk-h1 br          { display: block; }
  .mk-hero-para      { font-size: 11px; max-width: 85%; line-height: 1.6; }
  .mk-hero-para      { flex: 1; }
  .mk-hero-stats     { margin-top: 0; }
  .mk-hero-stat-num  { font-size: 18px; }
  .mk-hero-stat-label { font-size: 9px; }
  .mk-hero-stat      { padding: 8px 14px; border-radius: 10px; }
  .mk-hero-trust-item { font-size: 9px; }
  .mk-hero-trust-sep  { font-size: 6px; }
  .mk-hero-cta       { font-size: 11px; padding: 10px 18px; }
  .mk-hero-marquee-item { font-size: 10px; letter-spacing: 0.8px; }
}

/* ============================================= */
/* SECTION 02 — FEATURE SPLIT                    */
/* ============================================= */

.mk-split {
  background: #ffffff;
  padding: 100px 5%;
}

.mk-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mk-split-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 460px;
  margin: 0 0 14px;
}

.mk-split-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555555;
  max-width: 460px;
  margin: 0 0 36px;
}

.mk-features { display: flex; flex-direction: column; gap: 0; }

.mk-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.mk-feature:first-child { border-top: none; padding-top: 0; }

.mk-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
  margin-top: 2px;
}

.mk-feature-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 6px;
}

.mk-feature-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

/* ---- 3-image stack ---- */
.mk-image-stack {
  position: relative;
  height: 480px;
  flex-shrink: 0;
}

.mk-stack-1 {
  position: absolute;
  top: 0; right: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}

.mk-stack-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 60%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 2;
  border: 4px solid #ffffff;
}

.mk-stack-3 {
  position: absolute;
  top: 38%; right: -16px;
  width: 34%;
  height: 34%;
  object-fit: cover;
  border-radius: 12px;
  z-index: 3;
  border: 3px solid #ffffff;
}

@media (max-width: 1024px) {
  .mk-split-inner { grid-template-columns: 1fr; gap: 56px; }
  .mk-image-stack { height: 360px; width: 100%; max-width: 560px; margin: 0 auto; }
  .mk-stack-3     { right: 0; }
}

@media (max-width: 768px) {
  .mk-split       { padding: 64px 5%; }
  .mk-image-stack { height: 260px; }
  .mk-stack-2, .mk-stack-3 { display: none; }
  .mk-stack-1     { width: 100%; height: 100%; position: relative; top: auto; right: auto; }
}

/* ============================================= */
/* SECTION 03 — MARQUEE BANNER                   */
/* ============================================= */

.mk-marquee {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.mk-marquee::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 2;
}

.mk-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: mk-marquee-scroll 100s linear infinite;
  will-change: transform;
}

.mk-marquee-item {
  font-size: 9vw;
  font-weight: 800;
  color: #0D0D0D;
  opacity: 0.08;
  padding: 0 2vw;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
}

.mk-sep {
  font-weight: 400;
  margin: 0 0.5vw;
}

@media (max-width: 768px) {
  .mk-marquee-item { font-size: 14vw; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-marquee-track { animation-play-state: paused; }
}

/* ============================================= */
/* SECTION 04 — STATS + HEADING                  */
/* ============================================= */

.mk-stats {
  background: #ffffff;
  padding: 90px 5%;
}

.mk-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-stats-head {
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-stats-h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 580px;
  margin: 0 0 14px;
}

.mk-stats-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #666666;
  max-width: 540px;
  margin: 0;
}

.mk-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mk-stat {
  padding: 32px 36px;
  border-left: 1px solid rgba(0,0,0,0.08);
}

.mk-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.mk-stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 3.2rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
  margin-bottom: 8px;
}

.mk-stat-suffix {
  font-size: 1.8rem;
  font-weight: 700;
}

.mk-stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 6px;
}

.mk-stat-body {
  font-size: 0.82rem;
  color: #888888;
  line-height: 1.6;
  max-width: 240px;
  margin: 0;
}

@media (max-width: 768px) {
  .mk-stats-grid { grid-template-columns: 1fr; }
  .mk-stat       { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); padding: 24px 0; }
  .mk-stat:first-child { border-top: none; padding-top: 0; }
  .mk-stats      { padding: 64px 5%; }
}

/* ============================================= */
/* SECTION 05 — DUAL SERVICE CARDS               */
/* ============================================= */

.mk-dual {
  background: #F9F9F7;
  padding: 90px 5%;
}

.mk-dual-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mk-dual-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.mk-dual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

.mk-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 14px;
}

.mk-card-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0D0D0D;
  flex-shrink: 0;
}

.mk-card-h2 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.25;
  margin-bottom: 14px;
}

.mk-card-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 24px;
  flex: 1;
}

.mk-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D0D0D;
  text-decoration: none;
  margin-top: auto;
}

.mk-link-arrow {
  transition: transform 200ms ease;
  display: inline-block;
}

.mk-card-link:hover .mk-link-arrow {
  transform: translateX(4px);
}

/* Card 2 extras */
.mk-card-stats {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.mk-inline-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
}

.mk-inline-label {
  font-size: 0.78rem;
  color: #888888;
  margin-top: 4px;
  display: block;
}

.mk-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .mk-dual-grid { grid-template-columns: 1fr; }
  .mk-dual      { padding: 64px 5%; }
}

/* ============================================= */
/* SECTION 06 — GROW FASTER BLOCK                */
/* ============================================= */

.mk-grow {
  background: #ffffff;
  padding: 100px 5%;
}

.mk-grow-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: start;
}

.mk-grow-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
}

.mk-grow-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
}

.mk-grow-h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0;
  max-width: 360px;
}

.mk-arrow-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.mk-arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  border: 1px solid transparent;
  border-bottom-color: rgba(0,0,0,0.10);
  border-radius: 10px;
  color: #0D0D0D;
  text-decoration: none;
  transition: padding-left 200ms ease, border-color 200ms ease, background 200ms ease;
}

.mk-arrow-links .mk-arrow-link:first-child {
  border-top-color: rgba(0,0,0,0.10);
}

.mk-arrow-link:hover {
  padding-left: 24px;
  border-color: #CCF045;
  background: rgba(204,240,69,0.06);
}

.mk-arrow-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 200ms ease;
}

.mk-arrow-icon {
  font-size: 1.1rem;
  color: #CCF045;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 200ms ease;
  display: inline-block;
}

.mk-arrow-link:hover .mk-arrow-icon {
  transform: translate(3px, -3px);
}

.mk-grow-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

@media (max-width: 900px) {
  .mk-grow-inner { grid-template-columns: 1fr; gap: 48px; }
  .mk-grow-h2    { max-width: none; }
  .mk-grow       { padding: 64px 5%; }
}

/* ============================================= */
/* SECTION 07 — PRICING (light, premium)         */
/* ============================================= */

.mk-pricing {
  background: #F4F4F2;
  padding: 110px 5%;
}

.mk-pricing-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.mk-pricing-head {
  text-align: center;
  margin-bottom: 48px;
}

.mk-pricing-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-pricing-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 14px;
}

.mk-pricing-para {
  font-size: 0.95rem;
  color: #777777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Billing toggle */
.mk-billing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.mk-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.mk-toggle-btn {
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
  background: transparent;
  color: rgba(0,0,0,0.4);
}

.mk-toggle-btn.is-active {
  background: #0D0D0D;
  color: #CCF045;
  font-weight: 600;
}

.mk-toggle-btn:hover:not(.is-active) {
  color: #0D0D0D;
}

.mk-save-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.07);
  color: #0D0D0D;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 4px 14px;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.mk-save-badge.is-visible { opacity: 1; }

/* Pricing grid */
.mk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 32px;
}

/* Base card */
.mk-pc {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: transform 280ms ease, box-shadow 280ms ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.mk-pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Featured card — dark premium */
.mk-pc--featured {
  background: #0D0D0D;
  border-color: #0D0D0D;
  transform: translateY(-8px);
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.mk-pc--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.22);
}

.mk-pc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Card head */
.mk-pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.mk-pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F4F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
}

.mk-pc--featured .mk-pc-icon {
  background: rgba(255,255,255,0.1);
  color: #CCF045;
}

.mk-pc-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
}

.mk-pc--featured .mk-pc-name { color: rgba(255,255,255,0.4); }

/* Price */
.mk-pc-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}

.mk-pc-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1;
}

.mk-pc--featured .mk-pc-currency { color: #CCF045; }

.mk-pc-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mk-pc--featured .mk-pc-amount { color: #ffffff; }

.mk-pc-amount.is-switching {
  opacity: 0;
  transform: translateY(-6px);
}

.mk-pc-period {
  display: block;
  font-size: 0.75rem;
  color: #aaaaaa;
  margin-bottom: 28px;
  transition: opacity 180ms ease;
}

.mk-pc--featured .mk-pc-period { color: rgba(255,255,255,0.35); }

/* CTA */
.mk-pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: transparent;
  color: #0D0D0D;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  margin-bottom: 28px;
}

.mk-pc-cta:hover {
  background: #0D0D0D;
  border-color: #0D0D0D;
  color: #CCF045;
}

.mk-pc--featured .mk-pc-cta {
  background: #CCF045;
  border-color: #CCF045;
  color: #0D0D0D;
}

.mk-pc--featured .mk-pc-cta:hover {
  background: #d4f55e;
  border-color: #d4f55e;
}

/* Divider */
.mk-pc-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 24px;
}

.mk-pc--featured .mk-pc-divider { background: rgba(255,255,255,0.08); }

/* Feature list */
.mk-pc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mk-pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.mk-feat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.mk-pc-features li.included .mk-feat-icon {
  background: rgba(0,0,0,0.07);
  color: #0D0D0D;
}

.mk-pc-features li.included { color: #333333; }

.mk-pc-features li.excluded .mk-feat-icon {
  background: rgba(0,0,0,0.04);
  color: #cccccc;
}

.mk-pc-features li.excluded {
  color: #cccccc;
  text-decoration: line-through;
  text-decoration-color: #dddddd;
}

/* Featured overrides */
.mk-pc--featured .mk-pc-features li.included .mk-feat-icon {
  background: rgba(204,240,69,0.15);
  color: #CCF045;
}

.mk-pc--featured .mk-pc-features li.included { color: rgba(255,255,255,0.85); }

.mk-pc--featured .mk-pc-features li.excluded .mk-feat-icon {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.2);
}

.mk-pc--featured .mk-pc-features li.excluded {
  color: rgba(255,255,255,0.2);
  text-decoration-color: rgba(255,255,255,0.1);
}

/* Pricing note */
.mk-pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.6;
}

.mk-pricing-note a {
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mk-pricing-note a:hover { color: #0D0D0D; }

@media (max-width: 960px) {
  .mk-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .mk-pc--featured { transform: none; }
  .mk-pc--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .mk-pricing { padding: 72px 5%; }
  .mk-pc { padding: 28px 24px; }
  .mk-pc-amount { font-size: 2.6rem; }
}

/* ============================================= */
/* SECTION 08 — SUPPORT                          */
/* ============================================= */

.mk-support {
  background: #F4F4F2;
  padding: 100px 5%;
}

.mk-support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mk-support-img {
  border-radius: 16px;
  aspect-ratio: 6 / 5;
}

.mk-support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.mk-support-img:hover img {
  transform: scale(1.5);
}

.mk-support-h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 460px;
  margin: 0 0 14px;
}

.mk-support-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555555;
  max-width: 460px;
  margin: 0 0 36px;
}

.mk-support-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mk-support-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mk-support-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
  margin-top: 2px;
}

.mk-support-feat-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0 0 6px;
}

.mk-support-feat-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
}

@media (max-width: 900px) {
  .mk-support-inner { grid-template-columns: 1fr; gap: 48px; }
  .mk-support       { padding: 64px 5%; }
}

/* ============================================= */
/* SECTION 09 — TESTIMONIALS CAROUSEL            */
/* ============================================= */

.mk-testi {
  background: #F9F9F7;
  padding: 100px 0 0;
  overflow: hidden;
}

.mk-testi-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-testi-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0D0D0D;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-testi-h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 14px;
}

.mk-testi-para {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 0 28px;
}

.mk-proof-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mk-proof-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.mk-proof-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mk-stars {
  font-size: 0.875rem;
  color: #F5A623;
  letter-spacing: 2px;
}

.mk-rating-score {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D0D0D;
}

/* Carousel */
.mk-carousel-outer {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  padding-bottom: 72px;
}

.mk-carousel-outer:active { cursor: grabbing; }

.mk-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Testimonial card */
.mk-testi-card {
  width: 360px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 28px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mk-card-stars {
  font-size: 0.8rem;
  color: #F5A623;
  letter-spacing: 2px;
}

.mk-card-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.72);
  flex: 1;
  margin: 0;
}

.mk-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.mk-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mk-author-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D0D0D;
}

.mk-author-role {
  display: block;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .mk-testi       { padding-top: 72px; }
  .mk-testi-card  { width: 300px; }
  .mk-testi-head  { padding-bottom: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-carousel-track { overflow-x: auto; transform: none !important; }
}

/* ============================================= */
/* SECTION 10 — CTA BANNER                       */
/* ============================================= */

.mk-cta {
  background: #0D0D0D;
  padding: 110px 5%;
  position: relative;
  overflow: hidden;
}

.mk-cta::before {
  content: 'SIHAT';
  position: absolute;
  bottom: -0.1em;
  right: 5%;
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 800;
  color: #ffffff;
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mk-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.mk-cta-h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.mk-cta-h2 br { display: block; }

.mk-cta-para {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0;
  line-height: 1.7;
}

.mk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.mk-cta-btn:hover {
  background: #d4f55e;
  box-shadow: 0 8px 28px rgba(204,240,69,0.3);
}

@media (max-width: 768px) {
  .mk-cta     { padding: 72px 5%; }
  .mk-cta-h2  { font-size: 1.6rem; }
  .mk-cta-h2 br { display: none; }
  .mk-cta-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-reveal-left, .mk-reveal-right, .mk-reveal-up { transition: none; opacity: 1; transform: none; }
  .mk-anim-1, .mk-anim-2, .mk-anim-3, .mk-anim-4  { opacity: 1; animation: none; }
  .mk-hero-bg { animation: none; }
}

/* ============================================= */
/* HERO — multi-stat row + trust badges          */
/* ============================================= */

.mk-hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mk-hero-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 24px;
  gap: 3px;
}

.mk-hero-stat--lime {
  background: #CCF045;
}

.mk-hero-stat--lime .mk-hero-stat-num,
.mk-hero-stat--lime .mk-hero-stat-label {
  color: #0D0D0D;
}

.mk-hero-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
}

.mk-hero-stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
}

.mk-hero-stat-label {
  font-size: 0.72rem;
  color: #888888;
  font-weight: 500;
}

.mk-hero-stat--lime .mk-hero-stat-label {
  color: rgba(0,0,0,0.55);
}

.mk-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mk-hero-trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

.mk-hero-trust-sep {
  color: rgba(255,255,255,0.22);
  font-size: 0.45rem;
}

/* ============================================= */
/* SECTION 04 — COVERAGE PILLARS                 */
/* ============================================= */

.mk-pillars {
  background: #0D0D0D;
  padding: 90px 5%;
}

.mk-pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-pillars-head {
  margin-bottom: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-pillars-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #CCF045;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-pillars-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 520px;
}

.mk-pillars-para {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.mk-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mk-pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 250ms ease, background 250ms ease;
}

.mk-pillar-card:hover {
  border-color: rgba(204,240,69,0.3);
  background: rgba(255,255,255,0.06);
}

.mk-pillar-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.2);
}

.mk-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(204,240,69,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mk-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.mk-pillar-body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0;
  flex: 1;
}

.mk-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mk-pillar-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 999px;
}

.mk-pillar-tag--lime {
  background: rgba(204,240,69,0.12);
  color: #CCF045;
}

@media (max-width: 900px) {
  .mk-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-pillars { padding: 64px 5%; }
}

@media (max-width: 480px) {
  .mk-pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* SECTION 05 — STATS 4-col variant              */
/* ============================================= */

.mk-stats-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.mk-stat-num--rm {
  font-size: 2.8rem;
}

@media (max-width: 900px) {
  .mk-stats-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mk-stats-grid--4 .mk-stat {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 24px 20px;
  }
  .mk-stats-grid--4 .mk-stat:nth-child(1),
  .mk-stats-grid--4 .mk-stat:nth-child(2) {
    border-top: none;
  }
  .mk-stats-grid--4 .mk-stat:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .mk-stats-grid--4 { grid-template-columns: 1fr; }
  .mk-stats-grid--4 .mk-stat:nth-child(2) { border-top: 1px solid rgba(0,0,0,0.08); }
  .mk-stats-grid--4 .mk-stat:nth-child(odd) { border-left: none; }
}

@media (max-width: 768px) {
  .mk-stats-grid--4 .mk-stat { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .mk-stat-num { justify-content: center; }
}

/* ============================================= */
/* SECTION 06 — TRUST SIGNALS                    */
/* ============================================= */

.mk-trust-row {
  background: #F4F4F2;
  padding: 90px 5%;
}

.mk-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-trust-head {
  margin-bottom: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-trust-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1rem;
}

.mk-trust-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0;
  max-width: 500px;
}

.mk-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.mk-trust-badge {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.mk-trust-badge:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.mk-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #CCF045;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0D0D;
  flex-shrink: 0;
}

.mk-trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.mk-trust-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #777777;
  margin: 0;
}

.mk-trust-badge--wide {
  grid-column: span 3;
}

/* Rider list inside the wide badge */
.mk-trust-riders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 4px;
  width: 100%;
}

.mk-rider-group {
  background: #F9F9F7;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}

.mk-rider-cat {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0D0D0D;
  background: #CCF045;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}

.mk-rider-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.35;
}

.mk-rider-item em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  color: #999999;
  font-weight: 400;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .mk-trust-riders { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mk-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-trust-badge--wide { grid-column: span 2; }
  .mk-trust-riders { grid-template-columns: repeat(2, 1fr); }
  .mk-trust-row { padding: 64px 5%; }
}

@media (max-width: 480px) {
  .mk-trust-grid { grid-template-columns: 1fr; }
  .mk-trust-badge--wide { grid-column: span 1; }
  .mk-trust-riders { grid-template-columns: repeat(2, 1fr); gap: 12px 16px; }
}

/* ============================================= */
/* SECTION 09B — RATE CALCULATOR                 */
/* ============================================= */

/* ============================================= */
/* SECTION 10B — CLAIM TESTIMONIALS              */
/* ============================================= */

.mk-claims {
  background: #F4F4F2;
  padding: 100px 5%;
  overflow: hidden;
}

.mk-claims-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-claims-head {
  margin-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-claims-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-claims-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.mk-claims-para {
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* Grid — 2 kolum serentak */
.mk-claims-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Claim card — image only */
.mk-claim-card {
  border-radius: 16px;
  transition: box-shadow 300ms ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mk-claim-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.mk-claim-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.mk-claim-card:hover .mk-claim-img {
  transform: scale(1.5);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

/* Aggregate stats bar */
.mk-claims-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0D0D0D;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.mk-cstat {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.mk-cstat:last-child { border-right: none; }

.mk-cstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #CCF045;
  line-height: 1;
  letter-spacing: -0.01em;
}

.mk-cstat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.mk-cstat-divider { display: none; }

.mk-claims-note {
  font-size: 0.72rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 720px) {
  .mk-claims-grid { grid-template-columns: 1fr; }
  .mk-claims-stats { grid-template-columns: repeat(2, 1fr); }
  .mk-cstat:nth-child(2) { border-right: none; }
  .mk-cstat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .mk-cstat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .mk-claims { padding: 72px 5%; }
}

/* ============================================= */
/* SECTION 09B — RATE CALCULATOR (light theme)   */
/* ============================================= */

.mk-calc {
  background: #F4F4F2;
  padding: 90px 5%;
}

.mk-calc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-calc-head {
  margin-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-calc-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-calc-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 12px;
}

.mk-calc-para {
  font-size: 0.9rem;
  color: #777777;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.mk-calc-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Controls */
.mk-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mk-calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mk-calc-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #444444;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-calc-age-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0D0D0D;
  font-style: normal;
}

/* Slider */
.mk-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.mk-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0D0D0D;
  border: 4px solid #F4F4F2;
  box-shadow: 0 0 0 2px #0D0D0D;
  cursor: pointer;
  transition: transform 150ms ease;
}

.mk-calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.mk-calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0D0D0D;
  border: 4px solid #F4F4F2;
  box-shadow: 0 0 0 2px #0D0D0D;
  cursor: pointer;
}

.mk-calc-range-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.3);
}

/* Gender toggle */
.mk-gender-row {
  display: flex;
  gap: 10px;
}

.mk-gender-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
  font-family: 'Poppins', sans-serif;
}

.mk-gender-btn:hover {
  border-color: rgba(0,0,0,0.3);
  color: #0D0D0D;
}

.mk-gender-btn.is-active {
  border-color: #0D0D0D;
  background: #0D0D0D;
  color: #CCF045;
}

.mk-gender-icon {
  font-size: 1rem;
}

/* Plan buttons */
.mk-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.mk-plan-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 6px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
  font-family: 'Poppins', sans-serif;
}

.mk-plan-btn:hover {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mk-plan-btn.is-active {
  border-color: #0D0D0D;
  background: #0D0D0D;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.mk-plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0D0D0D;
}

.mk-plan-btn.is-active .mk-plan-name {
  color: #CCF045;
}

.mk-plan-desc {
  font-size: 0.62rem;
  color: rgba(0,0,0,0.4);
}

.mk-plan-btn.is-active .mk-plan-desc {
  color: rgba(204,240,69,0.75);
}

/* Term buttons */
.mk-term-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mk-term-btn {
  padding: 11px 10px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.3;
}

.mk-term-btn:hover:not(.is-disabled) {
  border-color: rgba(0,0,0,0.3);
  color: #0D0D0D;
}

.mk-term-btn.is-active {
  border-color: #0D0D0D;
  background: #0D0D0D;
  color: #CCF045;
}

.mk-term-btn.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Result card */
.mk-calc-result-wrap {
  position: sticky;
  top: 100px;
}

.mk-calc-result {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.mk-calc-result-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

.mk-calc-monthly-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  justify-content: center;
}

.mk-calc-rm {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0D0D0D;
}

.mk-calc-amount {
  font-size: 3.6rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mk-calc-per {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  margin-left: 2px;
}

.mk-calc-annual-row {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  width: 100%;
}

.mk-calc-plan-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(0,0,0,0.35);
}

.mk-calc-note {
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(0,0,0,0.35);
  margin: 0;
}

/* Detail button */
.mk-calc-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #CCF045;
  color: #0D0D0D;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 4px;
}

.mk-calc-detail-btn:hover:not(:disabled) {
  background: #d4f55e;
}

.mk-calc-detail-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .mk-calc-body { grid-template-columns: 1fr; }
  .mk-calc-result-wrap { position: static; }
  .mk-plan-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 640px) {
  .mk-calc { padding: 64px 5%; }
  .mk-plan-grid { grid-template-columns: repeat(3, 1fr); }
  .mk-term-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-calc-amount { font-size: 3rem; }
}

/* ============================================= */
/* POPUP / MODAL — Plan Breakdown                 */
/* ============================================= */

.mkp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease;
  padding: 0;
}

@media (min-width: 640px) {
  .mkp-overlay {
    align-items: center;
    padding: 24px;
  }
}

.mkp-overlay.is-open {
  opacity: 1;
}

.mkp-modal {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 24px 24px 0 0;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px);
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .mkp-modal {
    border-radius: 24px;
    transform: translateY(24px) scale(0.97);
  }
}

.mkp-overlay.is-open .mkp-modal {
  transform: translateY(0) scale(1);
}

.mkp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: background 150ms ease;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

.mkp-close:hover { background: rgba(0,0,0,0.14); }

/* Header */
.mkp-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mkp-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.mkp-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.mkp-plan-badge {
  background: #0D0D0D;
  color: #CCF045;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}

.mkp-gender-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.mkp-gender-badge em {
  font-style: normal;
  font-size: 0.68rem;
  opacity: 0.7;
}

.mkp-gender-M {
  background: rgba(59,130,246,0.1);
  color: #1d4ed8;
}

.mkp-gender-F {
  background: rgba(236,72,153,0.1);
  color: #be185d;
}

.mkp-subtitle {
  font-size: 0.82rem;
  color: #888888;
  margin: 0;
}

/* Rate row */
.mkp-rate-row {
  display: flex;
  gap: 0;
  background: #0D0D0D;
}

.mkp-rate-block {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mkp-rate-main {
  border-right: 1px solid rgba(255,255,255,0.08);
  background: #CCF045;
}

.mkp-rate-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}

.mkp-rate-block:not(.mkp-rate-main) .mkp-rate-label {
  color: rgba(255,255,255,0.4);
}

.mkp-rate-val {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
}

.mkp-rate-sm {
  font-size: 1.3rem;
  color: #ffffff;
}

/* Body */
.mkp-body {
  padding: 0 28px 20px;
}

.mkp-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mkp-section:last-child { border-bottom: none; }

.mkp-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  margin: 0 0 14px;
}

/* Benefits list */
.mkp-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}

.mkp-good    { background: rgba(34,197,94,0.07); }
.mkp-neutral { background: rgba(0,0,0,0.03); }

.mkp-bicon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkp-good .mkp-bicon {
  background: rgba(34,197,94,0.15);
  color: #16a34a;
}

.mkp-neutral .mkp-bicon {
  background: rgba(0,0,0,0.07);
  color: #888888;
}

.mkp-benefit div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mkp-benefit strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0D0D0D;
}

.mkp-benefit span {
  font-size: 0.75rem;
  color: #666666;
}

/* Limits grid */
.mkp-limits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mkp-limit {
  background: #F9F9F7;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mkp-limit-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999999;
}

.mkp-limit-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0D0D0D;
}

/* Footer */
.mkp-footer {
  padding: 16px 28px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mkp-disclaimer {
  font-size: 0.7rem;
  line-height: 1.6;
  color: #999999;
  margin: 0;
}

.mkp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #0D0D0D;
  color: #CCF045;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease;
  text-align: center;
}

.mkp-cta:hover { background: #1a1a1a; }

/* ============================================= */
/* ARROW LINK — button reset                     */
/* ============================================= */

button.mk-arrow-link {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

/* ============================================= */
/* BENEFIT POPUP                                 */
/* ============================================= */

.mkb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease;
}

@media (min-width: 640px) {
  .mkb-overlay {
    align-items: center;
    padding: 24px;
  }
}

.mkb-overlay.is-open { opacity: 1; }

.mkb-modal {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  border-radius: 24px 24px 0 0;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px);
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .mkb-modal {
    border-radius: 24px;
    transform: translateY(24px) scale(0.97);
  }
}

.mkb-overlay.is-open .mkb-modal {
  transform: translateY(0) scale(1);
}

/* Header */
.mkb-header {
  padding: 32px 28px 24px;
  background: #0D0D0D;
  position: relative;
}

.mkb-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.mkb-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.mkb-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 10px;
}

.mkb-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

/* Body */
.mkb-body {
  padding: 8px 28px 4px;
}

.mkb-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mkb-section:last-child { border-bottom: none; }

.mkb-section-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CCF045;
  margin: 0 0 14px;
  padding: 4px 10px;
  background: #0D0D0D;
  border-radius: 6px;
  display: inline-block;
}

.mkb-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkb-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mkb-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
  margin-top: 6px;
}

.mkb-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkb-item-body strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.3;
}

.mkb-item-body span {
  font-size: 0.78rem;
  color: #777777;
  line-height: 1.55;
}

/* ============================================= */
/* SECTION 03B — COMPARISON TABLE                */
/* ============================================= */

/* ============================================= */
/* SECTION 03B — COMPARISON TABLE (premium light) */
/* ============================================= */

.mk-compare {
  background: #ffffff;
  padding: 100px 5%;
}

.mk-compare-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mk-compare-head {
  margin-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-compare-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-compare-h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 620px;
}

/* ── 2-image grid ── */
.mk-cmp-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.mk-cmp-img-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mk-cmp-img-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 400ms ease, box-shadow 300ms ease;
}

.mk-cmp-img-card img:hover {
  transform: scale(1.5);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.mk-cmp-img-card--solution .mk-cmp-cta {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .mk-cmp-img-grid { grid-template-columns: 1fr; }
}

/* ── Comparison table grid — 3 col (label + 2 scenarios) ── */
.mk-cmp-table {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.6fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── Column headers ── */
.mk-cmp-th {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mk-cmp-th--empty {
  background: #F4F4F2;
}

.mk-cmp-th--problem {
  background: #F9F4F4;
  border-left: 1px solid rgba(0,0,0,0.07);
  text-align: center;
  align-items: center;
}

.mk-cmp-th--dark {
  background: #0D0D0D;
  border-left: 1px solid rgba(0,0,0,0.07);
  text-align: center;
  align-items: center;
}

.mk-cmp-th-tag {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CCF045;
  margin-bottom: 2px;
}

.mk-cmp-th-tag-problem {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 2px;
}

.mk-cmp-th-label {
  font-size: 1rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.25;
}

.mk-cmp-th--dark .mk-cmp-th-label { color: #ffffff; }
.mk-cmp-th--problem .mk-cmp-th-label { color: #5a2a2a; }

.mk-cmp-th-sub {
  font-size: 0.75rem;
  color: #888888;
  line-height: 1.5;
}

.mk-cmp-th--dark .mk-cmp-th-sub { color: rgba(255,255,255,0.35); }
.mk-cmp-th--problem .mk-cmp-th-sub { color: rgba(90,42,42,0.55); }

/* ── Row label (col 1) ── */
.mk-cmp-label {
  padding: 20px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444444;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}

.mk-cmp-label.mk-cmp-alt { background: #FAFAFA; }

/* ── Data cells ── */
.mk-cmp-cell {
  padding: 20px 24px;
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  line-height: 1.5;
}

.mk-cmp-cell.mk-cmp-alt { background: #FAFAFA; }

/* Bad — problem column */
.mk-cmp-bad { color: #999999; }

.mk-cmp-bad::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(239,68,68,0.08);
  color: #ef4444;
  font-size: 0.55rem;
  font-weight: 800;
  margin-top: 1px;
}

/* Best — MUHAZU solution column */
.mk-cmp-best {
  color: #0D0D0D;
  font-weight: 600;
  background: rgba(204,240,69,0.07);
  border-left-color: rgba(204,240,69,0.3);
}

.mk-cmp-best.mk-cmp-alt { background: rgba(204,240,69,0.11); }

.mk-cmp-best::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.55rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ── CTA row ── */
.mk-cmp-cta-spacer {
  padding: 24px;
  background: #F4F4F2;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mk-cmp-cta-spacer:not(:first-child) {
  background: #F9F4F4;
  border-left: 1px solid rgba(0,0,0,0.06);
}

.mk-cmp-cta-cell {
  padding: 24px;
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
}

.mk-cmp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease;
}

.mk-cmp-cta:hover { background: #d4f55e; }

@media (max-width: 800px) {
  .mk-cmp-th, .mk-cmp-label, .mk-cmp-cell { padding: 16px 18px; }
  .mk-compare { padding: 72px 5%; }
}

@media (max-width: 680px) {
  /* Horizontal scroll wrapper */
  .mk-cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -5%;
    padding: 0 5%;
    /* Scroll hint shadow */
    background:
      linear-gradient(to right, #ffffff 20%, transparent),
      linear-gradient(to left, #ffffff 20%, transparent) right,
      radial-gradient(farthest-side at 0 50%, rgba(0,0,0,0.08), transparent),
      radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.08), transparent) right;
    background-repeat: no-repeat;
    background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
    background-attachment: local, local, scroll, scroll;
  }

  .mk-cmp-table {
    min-width: 520px;
    grid-template-columns: 1.3fr 1.5fr 1.5fr;
    border-radius: 16px;
  }

  .mk-cmp-th, .mk-cmp-label, .mk-cmp-cell { padding: 14px 16px; font-size: 0.78rem; }
  .mk-cmp-th-sub { font-size: 0.68rem; }
  .mk-compare-h2 br { display: none; }
}

/* ============================================= */
/* SECTION 06B — SESUAI UNTUK SIAPA              */
/* ============================================= */

.mk-profiles {
  background: #ffffff;
  padding: 90px 5%;
}

.mk-profiles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mk-profiles-head {
  margin-bottom: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-profiles-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1rem;
}

.mk-profiles-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 500px;
}

.mk-profiles-para {
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
}

.mk-profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mk-profile-card {
  background: #F9F9F7;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.mk-profile-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.mk-profile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCF045;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.mk-profile-age {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999999;
}

.mk-profile-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.3;
  margin: 0;
}

.mk-profile-body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
  flex: 1;
}

.mk-profile-pill {
  display: inline-block;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 6px;
  width: fit-content;
}

@media (max-width: 900px) {
  .mk-profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-profiles { padding: 64px 5%; }
}

@media (max-width: 480px) {
  .mk-profiles-grid { grid-template-columns: 1fr; }
}

/* ============================================= */
/* SECTION 08B — EDUCHIEVE BONUS                 */
/* ============================================= */

.mk-edu {
  background: #F4F4F2;
  padding: 100px 5%;
}

.mk-edu-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.mk-edu-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555555;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.mk-edu-h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.mk-edu-para {
  font-size: 0.92rem;
  color: #666666;
  line-height: 1.75;
  margin: 0 0 28px;
}

/* Levels — individual cards */
.mk-edu-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.mk-edu-level {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.mk-edu-level:hover {
  border-color: #CCF045;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateX(5px);
}

.mk-edu-level-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 34px;
  text-align: center;
}

.mk-edu-level-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mk-edu-level-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0D0D0D;
}

.mk-edu-level-desc {
  font-size: 0.75rem;
  color: #999999;
}

.mk-edu-level-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0D0D0D;
  white-space: nowrap;
  margin-left: auto;
  padding-left: 12px;
  transition: color 250ms ease, text-shadow 250ms ease;
}

.mk-edu-level:hover .mk-edu-level-amount {
  color: #16a34a;
  text-shadow: 0 0 12px rgba(22,163,74,0.45), 0 0 28px rgba(22,163,74,0.2);
}

/* CTA — centered between both columns */
.mk-edu-cta-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.mk-edu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D0D0D;
  color: #CCF045;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease;
}

.mk-edu-cta:hover { background: #1a1a1a; }

.mk-edu-note {
  font-size: 0.7rem;
  color: #bbbbbb;
  line-height: 1.6;
  margin: 14px 0 0;
}

/* RIGHT: proof image */
.mk-edu-proof {
  position: relative;
  padding-top: 20px;
}

.mk-edu-proof-inner {
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.mk-edu-proof-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.mk-edu-proof-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 400ms ease;
}

.mk-edu-proof-inner:hover .mk-edu-proof-img {
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .mk-edu-inner { grid-template-columns: 1fr; gap: 40px; }
  .mk-edu { padding: 72px 5%; }
  .mk-edu-right { order: -1; }
}

/* ============================================= */
/* SECTION 11B — FAQ                             */
/* ============================================= */

.mk-faq {
  background: #F9F9F7;
  padding: 90px 5%;
}

.mk-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mk-faq-head {
  margin-bottom: 52px;
  text-align: center;
}

.mk-faq-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
  width: fit-content;
  margin-bottom: 1rem;
}

.mk-faq-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0;
}

.mk-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.mk-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mk-faq-item:last-child { border-bottom: none; }

/* Trigger button */
.mk-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  transition: background 200ms ease;
}

.mk-faq-trigger:hover {
  background: #FAFAFA;
}

.mk-faq-item.is-open .mk-faq-trigger {
  background: #ffffff;
}

.mk-faq-q {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.4;
  flex: 1;
}

.mk-faq-item.is-open .mk-faq-q {
  color: #0D0D0D;
}

/* +/× icon */
.mk-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F4F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #0D0D0D;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
  line-height: 1;
}

.mk-faq-item.is-open .mk-faq-icon {
  background: #CCF045;
  transform: rotate(45deg);
}

/* Answer body */
.mk-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 200ms ease;
  padding: 0 28px;
}

.mk-faq-item.is-open .mk-faq-body {
  max-height: 300px;
  padding: 0 28px 22px;
}

.mk-faq-a {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #555555;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.mk-faq-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mk-faq-footer p {
  font-size: 0.95rem;
  color: #888888;
  margin: 0;
}

.mk-faq-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D0D0D;
  color: #CCF045;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease;
}

.mk-faq-footer a:hover {
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .mk-faq        { padding: 64px 5%; }
  .mk-faq-head   { text-align: left; }
  .mk-faq-trigger { padding: 18px 20px; }
  .mk-faq-body   { padding: 0 20px; }
  .mk-faq-item.is-open .mk-faq-body { padding: 0 20px 18px; }
  .mk-faq-q      { font-size: 0.85rem; }
}

/* ============================================= */
/* MOBILE — Global enhancements (≤768px)         */
/* ============================================= */
@media (max-width: 768px) {

  /* Hero */
  .mk-hero         { min-height: 100dvh; height: 100dvh; justify-content: flex-start; }
  .mk-hero-content { flex: 1; padding: 90px 5% 80px; gap: 14px; display: flex; flex-direction: column; align-items: flex-start; width: 100%; box-sizing: border-box; }
  .mk-h1           { font-size: 22px; }
  .mk-h1 br        { display: none; }
  .mk-hero-stats   { gap: 8px; }
  .mk-hero-stat    { padding: 10px 18px; }
  .mk-hero-stat-num { font-size: 1.7rem; }
  .mk-hero-trust   { gap: 8px; }
  .mk-hero-trust-item { font-size: 0.72rem; }

  /* Split section */
  .mk-split       { padding: 56px 5%; }
  .mk-split-h2    { font-size: 1.4rem; }

  /* Marquee */
  .mk-marquee     { padding: 24px 0; }

  /* Pillars */
  .mk-pillars     { padding: 56px 5%; }
  .mk-pillars-h2  { font-size: 1.5rem; }
  .mk-pillar-card { padding: 24px 20px; }
  .mk-pillar-tags { flex-wrap: wrap; }

  /* Stats */
  .mk-stats       { padding: 56px 5%; }
  .mk-stats-h2    { font-size: 1.5rem; }
  .mk-stat-num    { font-size: 2.4rem; }

  /* Trust */
  .mk-trust-row   { padding: 56px 5%; }
  .mk-trust-h2    { font-size: 1.5rem; }
  .mk-trust-badge { padding: 22px 18px; }
  .mk-trust-riders { grid-template-columns: 1fr 1fr; gap: 10px 14px; }

  /* Profiles (sesuai untuk siapa) */
  .mk-profiles    { padding: 56px 5%; }
  .mk-profiles-h2 { font-size: 1.5rem; }

  /* Dual cards */
  .mk-dual        { padding: 56px 5%; }
  .mk-card-h2     { font-size: 1.2rem; }

  /* Grow */
  .mk-grow        { padding: 56px 5%; }
  .mk-grow-h2     { font-size: 1.5rem; }
  .mk-arrow-text  { font-size: 0.9rem; }
  .mk-arrow-link  { padding: 16px 12px; }

  /* Pricing */
  .mk-pricing     { padding: 64px 5%; }
  .mk-pricing-h2  { font-size: 1.5rem; }
  .mk-billing-toggle { width: 100%; justify-content: center; }
  .mk-toggle-btn  { padding: 10px 20px; font-size: 0.82rem; }
  .mk-pc          { padding: 28px 22px; }
  .mk-pc-amount   { font-size: 2.8rem; }

  /* Calculator */
  .mk-calc        { padding: 56px 5%; }
  .mk-calc-h2     { font-size: 1.5rem; }
  .mk-calc-amount { font-size: 2.6rem; }
  .mk-calc-result { padding: 28px 22px; }
  .mk-gender-btn  { padding: 11px 12px; font-size: 0.82rem; }
  .mk-plan-btn    { padding: 10px 4px; }
  .mk-plan-name   { font-size: 0.72rem; }
  .mk-plan-desc   { font-size: 0.58rem; }
  .mk-term-btn    { padding: 10px 8px; font-size: 0.72rem; }

  /* Support */
  .mk-support     { padding: 56px 5%; }
  .mk-support-h2  { font-size: 1.4rem; }

  /* Testimonials */
  .mk-testi       { padding-top: 56px; }
  .mk-testi-h2    { font-size: 1.5rem; }
  .mk-testi-card  { width: 280px; padding: 22px 20px; }

  /* Claims */
  .mk-claims      { padding: 56px 5%; }
  .mk-claims-h2   { font-size: 2rem; }
  .mk-claims-stats { border-radius: 12px; }
  .mk-cstat       { padding: 20px 16px; }
  .mk-cstat-num   { font-size: 1.1rem; }
  .mk-cstat-label { font-size: 0.68rem; }

  /* Edu */
  .mk-edu         { padding: 56px 5%; }
  .mk-edu-h2      { font-size: 1.4rem; }
  .mk-edu-proof-badge { right: 12px; }

  /* Compare */
  .mk-compare     { padding: 56px 5%; }
  .mk-compare-h2  { font-size: 1.4rem; }
  .mk-compare-h2 br { display: none; }

  /* Profiles */
  .mk-profiles-para { display: none; }

  /* CTA */
  .mk-cta         { padding: 64px 5%; }
  .mk-cta-h2      { font-size: 1.6rem; }
  .mk-cta-h2 br   { display: none; }
  .mk-cta-btn     { width: 100%; justify-content: center; }

  /* FAQ */
  .mk-faq-q       { font-size: 0.88rem; }
  .mk-faq-a       { font-size: 0.82rem; }

  /* EduAchieve levels */
  .mk-edu-level   { padding: 14px 16px; }
  .mk-edu-level-amount { font-size: 0.85rem; }
}

/* ── Extra small (≤420px) ── */
@media (max-width: 420px) {
  .mk-h1          { font-size: clamp(1.5rem, 8vw, 1.9rem); }
  .mk-hero-stat-num { font-size: 1.5rem; }
  .mk-hero-trust  { display: none; }
  .mk-plan-grid   { grid-template-columns: repeat(3, 1fr); }
  .mk-term-grid   { grid-template-columns: repeat(2, 1fr); }
  .mk-calc-amount { font-size: 2.2rem; }
  .mk-claims-stats { grid-template-columns: 1fr 1fr; }
  .mk-cmp-cell, .mk-cmp-label, .mk-cmp-th { font-size: 0.68rem; padding: 10px 8px; }
  .mk-pc-amount   { font-size: 2.4rem; }
  .mk-testi-card  { width: 260px; }
}
