/* ====================================
   Central Desk — Marketing Landing
   ==================================== */

:root {
  --cd-primary: #04107C;
  --cd-primary-light: #2d3aa3;
  --cd-secondary: #f59e0b;
  --cd-secondary-light: #fb923c;
  --cd-bg: #ffffff;
  --cd-bg-alt: #f7f8fc;
  --cd-text: #0b1220;
  --cd-text-muted: #5b6779;
  --cd-text-soft: #94a3b8;
  --cd-border: #e9ecf2;
  --cd-radius: 12px;
  --cd-radius-lg: 16px;
  --cd-success: #10b981;
  --cd-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --cd-shadow: 0 4px 12px -3px rgba(15, 23, 42, 0.1);
  --cd-shadow-lg: 0 24px 50px -16px rgba(15, 23, 42, 0.2);
  --cd-gradient-primary: linear-gradient(135deg, #04107C 0%, #2d3aa3 100%);
  --cd-gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 999px; }
*::-webkit-scrollbar-track { background: transparent; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--cd-text); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cd-bg);
}

a { color: var(--cd-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

.ld-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cd-text-success { color: var(--cd-success); }
.cd-justify-center { justify-content: center; }

/* ========== Header ========== */
.ld-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cd-border);
}
.ld-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.ld-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 18px;
  color: var(--cd-primary); letter-spacing: -0.01em;
  text-decoration: none;
}
.ld-brand-mark {
  width: 36px; height: 36px; border-radius: 5px;
  background: var(--cd-gradient-secondary, linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%));
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-primary, #04107C); font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 14px -4px rgba(245, 158, 11, 0.45);
}
.ld-brand-text { display: inline-flex; align-items: baseline; gap: 5px; }
.ld-brand-central { color: var(--cd-primary, #04107C); }
.ld-brand-desk { color: #f59e0b; }
.ld-menu { display: flex; gap: 32px; align-items: center; }
.ld-menu a {
  color: #0b1220; font-weight: 600; font-size: 14px;
  transition: color 0.15s;
}
.ld-menu a:hover { color: var(--cd-primary, #04107C); }
.ld-cta { display: flex; gap: 10px; align-items: center; }

/* ========== Buttons ========== */
.ld-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  white-space: nowrap;
}
.ld-btn-primary {
  background: var(--cd-gradient-primary); color: #fff;
  box-shadow: 0 6px 16px -4px rgba(4, 16, 124, 0.4);
}
.ld-btn-primary:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(4, 16, 124, 0.5);
}
.ld-btn-secondary {
  background: var(--cd-gradient-secondary); color: #fff;
  box-shadow: 0 6px 16px -4px rgba(245, 158, 11, 0.45);
}
.ld-btn-secondary:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(245, 158, 11, 0.55);
}
.ld-btn-outline {
  background: #fff;
  color: #b45309;
  border-color: #f59e0b;
}
.ld-btn-outline:hover {
  background: #fffbeb;
  border-color: #b45309;
  color: #92400e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px rgba(245, 158, 11, 0.35);
}
.ld-btn-glass {
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.ld-btn-glass:hover {
  background: rgba(255, 255, 255, 0.22); color: #fff;
}
.ld-btn-lg { padding: 13px 24px; font-size: 14px; }
.ld-btn-xl { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.ld-btn-block { width: 100%; justify-content: center; }

/* ========== Hero (colorful) ========== */
.ld-hero {
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

/* Animated colorful background blobs */
.ld-hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: 0.5;
  animation: ld-blob-float 20s ease-in-out infinite;
}
.ld-hero-bg-blob-1 {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.35), rgba(4, 16, 124, 0.15) 50%, transparent 70%);
}
.ld-hero-bg-blob-2 {
  width: 550px; height: 550px;
  top: 10%; right: -150px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25), rgba(245, 158, 11, 0.2) 50%, transparent 70%);
  animation-delay: -7s;
  animation-duration: 25s;
}
.ld-hero-bg-blob-3 {
  width: 480px; height: 480px;
  bottom: 5%; left: 30%;
  background: radial-gradient(circle, rgba(228, 64, 95, 0.2), rgba(99, 102, 241, 0.2) 50%, transparent 70%);
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes ld-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Subtle dot grid texture */
.ld-hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle, rgba(4, 16, 124, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

/* Floating channel icons */
.ld-hero-float {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 1;
  animation: ld-float-icon 6s ease-in-out infinite;
  box-shadow:
    0 16px 32px -8px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.ld-hero-float-fb {
  background: linear-gradient(135deg, #1877F2, #0d4eb3);
  top: 14%; left: 8%;
  animation-delay: 0s;
}
.ld-hero-float-wa {
  background: linear-gradient(135deg, #25D366, #128c7e);
  top: 22%; right: 10%;
  animation-delay: -1s;
}
.ld-hero-float-ig {
  background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45);
  bottom: 28%; left: 6%;
  animation-delay: -2s;
}
.ld-hero-float-tg {
  background: linear-gradient(135deg, #0088CC, #1e40af);
  bottom: 18%; right: 7%;
  animation-delay: -3s;
}
.ld-hero-float-em {
  background: linear-gradient(135deg, #EA4335, #c12914);
  top: 50%; left: 4%;
  animation-delay: -4s;
  width: 48px; height: 48px; font-size: 22px;
}
.ld-hero-float-sms {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  top: 48%; right: 5%;
  animation-delay: -5s;
  width: 48px; height: 48px; font-size: 22px;
}
@keyframes ld-float-icon {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@media (max-width: 900px) {
  .ld-hero-float-em, .ld-hero-float-sms { display: none; }
  .ld-hero-float { width: 44px; height: 44px; font-size: 20px; }
}
@media (max-width: 600px) {
  .ld-hero-float { display: none; }
}

.ld-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(245, 158, 11, 0.1); color: #b45309;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  position: relative; z-index: 1;
}
.ld-eyebrow-colorful {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #1877F2 0%, #25D366 25%, #E4405F 50%, #f59e0b 75%, #04107C 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 16px -4px rgba(4, 16, 124, 0.15);
  color: var(--cd-text);
  background-clip: padding-box, border-box;
  -webkit-background-clip: padding-box, border-box;
}
.ld-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  animation: ld-pulse 2s ease-in-out infinite;
}
@keyframes ld-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}
.ld-eyebrow-dark {
  background: rgba(255, 255, 255, 0.15); color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.ld-hero-title {
  font-size: clamp(36px, 5.5vw, 60px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--cd-text);
  margin-bottom: 22px; max-width: 1000px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.ld-hero-highlight {
  background: linear-gradient(135deg, #04107C 0%, #6366f1 50%, #04107C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  animation: ld-shine 4s ease-in-out infinite;
}
@keyframes ld-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ld-hero-highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 10px; z-index: -1; border-radius: 6px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.4), rgba(245, 158, 11, 0.2));
}

/* Channel-colored names */
.ld-name {
  position: relative; display: inline-block;
  font-weight: 800; padding: 0 4px;
}
.ld-name::after {
  content: '';
  position: absolute; left: 4px; right: 4px; bottom: 4px;
  height: 8px;
  z-index: -1;
  border-radius: 4px;
  opacity: 0.18;
  transition: opacity 0.3s;
}
.ld-name:hover::after { opacity: 0.35; }
.ld-name-fb { color: #1877F2; }
.ld-name-fb::after { background: #1877F2; }
.ld-name-wa { color: #25D366; }
.ld-name-wa::after { background: #25D366; }
.ld-name-ig {
  background: linear-gradient(135deg, #833AB4 0%, #E4405F 50%, #FCAF45 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ld-name-ig::after { background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45); }
.ld-hero-amp {
  color: var(--cd-text-muted);
  font-weight: 700;
  font-size: 0.7em;
  letter-spacing: 0.02em;
}
.ld-hero-sub {
  font-size: 18px; color: var(--cd-text-muted);
  max-width: 720px; margin: 0 auto 36px;
  line-height: 1.65; position: relative; z-index: 2;
}
.ld-hero-sub strong {
  color: var(--cd-primary); font-weight: 700;
  background: linear-gradient(135deg, rgba(4, 16, 124, 0.08), rgba(245, 158, 11, 0.08));
  padding: 2px 6px; border-radius: 4px;
}
.ld-hero-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 22px;
  position: relative; z-index: 2;
}
.ld-hero-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--cd-text-muted); font-weight: 500;
  position: relative; z-index: 2;
}

/* Special hero CTA button with shimmer */
.ld-btn-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #04107C 0%, #2d3aa3 50%, #04107C 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow:
    0 10px 24px -6px rgba(4, 16, 124, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-weight: 700;
  animation: ld-shine-bg 4s ease-in-out infinite;
}
.ld-btn-hero:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px -8px rgba(4, 16, 124, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@keyframes ld-shine-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ld-btn-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  animation: ld-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ld-shimmer {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(200%); }
}
.ld-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Mockup */
.ld-hero-mockup {
  margin-top: 64px; position: relative; z-index: 1;
}
.ld-mockup-frame {
  max-width: 1080px; margin: 0 auto;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 40px 80px -20px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(15, 23, 42, 0.04),
    0 4px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  border: 1px solid var(--cd-border);
}
.ld-mockup-bar {
  background: #f1f3f7; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--cd-border);
}
.ld-mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.ld-mockup-url {
  margin-left: 12px; font-size: 12px; color: var(--cd-text-muted);
  background: #fff; padding: 4px 12px; border-radius: 6px;
  font-family: 'Inter', monospace;
}
.ld-mockup-content { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; }
.ld-mockup-sidebar {
  background: #fafbff; border-right: 1px solid var(--cd-border);
  padding: 16px;
}
.ld-mockup-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; margin-bottom: 18px;
}
.ld-mockup-nav-item {
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; color: var(--cd-text-muted); margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.ld-mockup-nav-item.is-active {
  background: var(--cd-gradient-primary); color: #fff;
  font-weight: 600;
}
.ld-mockup-badge {
  background: rgba(255, 255, 255, 0.25); padding: 1px 7px;
  border-radius: 10px; font-size: 11px; margin-left: auto;
}
.ld-mockup-main { display: grid; grid-template-columns: 280px 1fr; }
.ld-mockup-conv { border-right: 1px solid var(--cd-border); }
.ld-mockup-conv-item {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--cd-border);
  font-size: 12px;
}
.ld-mockup-conv-item.is-active {
  background: linear-gradient(90deg, #eef0ff 0%, transparent 100%);
  border-left: 3px solid var(--cd-primary);
  padding-left: 13px;
}
.ld-mockup-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.ld-mockup-name {
  font-weight: 600; font-size: 12.5px; color: var(--cd-text);
  display: flex; align-items: center; gap: 6px;
}
.ld-channel-dot { width: 7px; height: 7px; border-radius: 50%; }
.ld-mockup-snippet { font-size: 11.5px; color: var(--cd-text-muted); margin-top: 2px; }
.ld-mockup-time {
  font-size: 10px; color: var(--cd-text-soft); margin-left: auto;
  align-self: flex-start;
}
.ld-mockup-chat {
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(4, 16, 124, 0.02), transparent 50%),
    #fafbff;
  display: flex; flex-direction: column; gap: 10px;
}
.ld-mockup-msg {
  max-width: 75%; padding: 10px 14px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
}
.ld-mockup-msg-them {
  background: #fff; align-self: flex-start;
  border: 1px solid var(--cd-border);
  border-bottom-left-radius: 4px;
}
.ld-mockup-msg-us {
  background: var(--cd-gradient-primary); color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px -3px rgba(4, 16, 124, 0.3);
}
.ld-mockup-ai-suggestion {
  margin-top: auto;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(4, 16, 124, 0.1));
  padding: 10px 12px; border-radius: 10px;
  font-size: 12px; color: #92400e; font-weight: 500;
  border: 1px dashed #fde68a;
  display: flex; align-items: center; gap: 8px;
}

/* Stats band */
.ld-stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 800px; margin: 64px auto 0;
  padding: 32px;
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; box-shadow: var(--cd-shadow);
  position: relative; z-index: 1;
}
.ld-stat-item { text-align: center; }
.ld-stat-num {
  font-size: 36px; font-weight: 800;
  background: var(--cd-gradient-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.025em; line-height: 1;
}
.ld-stat-label {
  font-size: 12px; color: var(--cd-text-muted);
  margin-top: 6px; font-weight: 500;
}

/* ========== Channels strip ========== */
.ld-channels {
  padding: 64px 0;
  background: var(--cd-bg-alt);
  text-align: center;
  border-top: 1px solid var(--cd-border);
  border-bottom: 1px solid var(--cd-border);
}
.ld-channels-title {
  font-size: 13px; color: var(--cd-text-muted); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 32px;
}
.ld-channels-grid {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.ld-channel-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: #fff;
  border: 1px solid var(--cd-border); border-radius: 999px;
  font-weight: 600; font-size: 13.5px; color: var(--cd-text);
  box-shadow: var(--cd-shadow-sm);
  transition: all 0.2s;
}
.ld-channel-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--cd-shadow);
  border-color: var(--cd-primary);
}

/* ========== Section base ========== */
.ld-section { padding: 100px 0; }
.ld-section-alt { background: var(--cd-bg-alt); }
.ld-section-head {
  text-align: center; max-width: 720px;
  margin: 0 auto 60px;
}
.ld-section-eyebrow {
  display: inline-block; color: var(--cd-secondary);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.ld-section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 16px;
}
.ld-section-sub {
  font-size: 17px; color: var(--cd-text-muted);
}

/* ========== Features ========== */
.ld-features-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ld-feature {
  padding: 28px; background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: var(--cd-radius-lg);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.ld-feature::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--cd-gradient-primary);
  opacity: 0; transition: opacity 0.2s;
}
.ld-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -16px rgba(15, 23, 42, 0.12);
  border-color: var(--cd-primary);
}
.ld-feature:hover::before { opacity: 1; }
.ld-feature-large { grid-column: span 2; }
@media (max-width: 768px) { .ld-feature-large { grid-column: 1; } }

.ld-feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cd-gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px;
  box-shadow: 0 8px 20px -6px rgba(4, 16, 124, 0.4);
}
.ld-feature-icon-secondary { background: var(--cd-gradient-secondary); box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.4); }
.ld-feature-icon-success { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 20px -6px rgba(16, 185, 129, 0.4); }
.ld-feature-icon-info { background: linear-gradient(135deg, #3b82f6, #6366f1); box-shadow: 0 8px 20px -6px rgba(59, 130, 246, 0.4); }
.ld-feature-icon-warning { background: linear-gradient(135deg, #f59e0b, #ef4444); box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.4); }
.ld-feature-icon-danger { background: linear-gradient(135deg, #ec4899, #be185d); box-shadow: 0 8px 20px -6px rgba(236, 72, 153, 0.4); }

.ld-feature h3 {
  font-size: 19px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.ld-feature p { color: var(--cd-text-muted); font-size: 14px; line-height: 1.65; }
.ld-feature-list {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.ld-feature-list li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 5px 0; font-size: 13.5px; color: var(--cd-text);
}
.ld-feature-list li::before {
  content: '✓'; color: var(--cd-success); font-weight: 800; flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(16, 185, 129, 0.1); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 2px;
}

/* ========== How it works ========== */
.ld-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1000px; margin: 0 auto;
  position: relative;
}
.ld-steps::before {
  content: ''; position: absolute;
  top: 30px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cd-primary), var(--cd-secondary), transparent);
  opacity: 0.3;
}
.ld-step {
  text-align: center;
  padding: 0 12px; position: relative; z-index: 1;
}
.ld-step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cd-gradient-primary);
  color: #fff; font-weight: 800; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px -8px rgba(4, 16, 124, 0.4);
  border: 4px solid #fff;
}
.ld-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.ld-step p { color: var(--cd-text-muted); font-size: 14px; }
@media (max-width: 768px) {
  .ld-steps { grid-template-columns: 1fr; }
  .ld-steps::before { display: none; }
}

/* ========== Pricing ========== */
.ld-pricing {
  background: linear-gradient(180deg, #fff 0%, var(--cd-bg-alt) 100%);
  padding: 100px 0;
}
.ld-pricing-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1140px; margin: 0 auto;
}
.ld-plan {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 18px; padding: 32px 28px; position: relative;
  display: flex; flex-direction: column;
  transition: all 0.22s;
}
.ld-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--cd-shadow-lg);
}
.ld-plan-featured {
  border: 2px solid var(--cd-primary);
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  box-shadow: 0 24px 50px -16px rgba(4, 16, 124, 0.3);
  transform: translateY(-8px);
}
.ld-plan-featured:hover { transform: translateY(-12px); }
.ld-plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cd-gradient-secondary); color: #fff;
  padding: 5px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 6px 14px -3px rgba(245, 158, 11, 0.5);
}
.ld-plan-name {
  font-size: 13px; color: var(--cd-text-muted);
  font-weight: 700; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ld-plan-price {
  font-size: 44px; font-weight: 800; line-height: 1;
  letter-spacing: -0.025em; color: var(--cd-text);
}
.ld-plan-price small { font-size: 14px; font-weight: 500; color: var(--cd-text-muted); }
.ld-plan-yearly {
  font-size: 12px; color: var(--cd-success); font-weight: 600;
  margin-top: 6px;
}
.ld-plan-desc {
  font-size: 13px; color: var(--cd-text-muted);
  margin: 12px 0 22px; min-height: 36px;
}
.ld-plan-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  flex: 1;
}
.ld-plan-features li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 7px 0; font-size: 13.5px; color: var(--cd-text);
}
.ld-plan-features li::before {
  content: '✓'; color: var(--cd-success); font-weight: 800; flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(16, 185, 129, 0.12); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.ld-plan-cta { margin-top: auto; }

/* ========== Testimonials Carousel ========== */
.ld-testimonials-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cd-bg-alt) 0%, #fff 100%);
}
.ld-testimonials-bg-glow {
  position: absolute; top: 30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background:
    radial-gradient(ellipse, rgba(4, 16, 124, 0.06), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.06), transparent 60%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.ld-reviews-slider {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  overflow: hidden;
  padding: 0 8px;
}
.ld-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.ld-review {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: var(--cd-radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--cd-shadow-sm);
}
.ld-review:hover {
  transform: translateY(-4px);
  border-color: var(--cd-primary);
  box-shadow: var(--cd-shadow-lg);
}
.ld-review-stars {
  display: flex; gap: 3px;
  color: #f59e0b; font-size: 16px;
  margin-bottom: 18px;
}
.ld-review-body {
  flex: 1; position: relative;
  margin-bottom: 22px;
}
.ld-review-quote-icon {
  position: absolute; top: -6px; left: -4px;
  font-size: 42px; color: var(--cd-primary);
  opacity: 0.12; line-height: 1;
}
.ld-review-body p {
  font-size: 15px; color: var(--cd-text);
  line-height: 1.65; padding-left: 8px;
  position: relative; z-index: 1;
}
.ld-review-author {
  display: flex; gap: 14px; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--cd-border);
}
.ld-review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.ld-review-author-info strong {
  display: block; font-size: 14px; color: var(--cd-text);
  letter-spacing: -0.01em; font-weight: 700;
}
.ld-review-author-info span {
  font-size: 12px; color: var(--cd-text-muted); font-weight: 500;
}

/* Slider controls */
.ld-reviews-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 40px;
}
.ld-reviews-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--cd-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-text-muted); font-size: 16px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: var(--cd-shadow-sm);
}
.ld-reviews-btn:hover {
  background: var(--cd-gradient-primary); color: #fff;
  border-color: transparent; transform: scale(1.05);
  box-shadow: 0 8px 18px -4px rgba(4, 16, 124, 0.4);
}
.ld-reviews-btn:disabled {
  opacity: 0.4; cursor: not-allowed;
}
.ld-reviews-btn:disabled:hover {
  background: #fff; color: var(--cd-text-muted); transform: none;
}
.ld-reviews-dots {
  display: flex; gap: 8px; align-items: center;
}
.ld-reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cd-border); cursor: pointer;
  border: none; transition: all 0.2s;
}
.ld-reviews-dot.is-active {
  background: var(--cd-gradient-primary); width: 28px; border-radius: 4px;
}
.ld-reviews-dot:hover:not(.is-active) {
  background: var(--cd-text-soft);
}

@media (max-width: 900px) {
  .ld-review { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .ld-review { flex: 0 0 calc(100% - 8px); padding: 24px 20px; }
}

/* ========== FAQ (compact 2-col side-by-side) ========== */
.ld-section-faq {
  padding: 80px 0;
}
.ld-faq-layout {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 60px; align-items: flex-start;
}
.ld-faq-intro {
  position: sticky; top: 100px;
}
.ld-faq-title {
  font-size: clamp(28px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  margin: 12px 0 14px;
}
.ld-faq-sub {
  font-size: 15px; color: var(--cd-text-muted);
  line-height: 1.65; margin-bottom: 24px;
}
.ld-faq-support {
  display: flex; flex-direction: column; gap: 10px;
}
.ld-faq-support-item {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 16px; background: #fff;
  border: 1px solid var(--cd-border); border-radius: 12px;
  text-decoration: none; transition: all 0.2s;
}
.ld-faq-support-item:hover {
  border-color: var(--cd-primary);
  box-shadow: var(--cd-shadow);
  transform: translateY(-2px);
}
.ld-faq-support-item i { font-size: 22px; }
.ld-faq-support-item strong {
  display: block; font-size: 13px; color: var(--cd-text);
  font-weight: 700;
}
.ld-faq-support-item span {
  font-size: 12px; color: var(--cd-text-muted);
}

.ld-faq-list-compact {
  display: flex; flex-direction: column; gap: 8px;
}
.ld-faq-item {
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 12px;
  transition: all 0.2s;
  overflow: hidden;
}
.ld-faq-item:hover {
  border-color: rgba(4, 16, 124, 0.3);
}
.ld-faq-item[open] {
  border-color: var(--cd-primary);
  box-shadow: 0 4px 12px -3px rgba(4, 16, 124, 0.15);
}
.ld-faq-item summary {
  padding: 16px 20px;
  font-weight: 600; font-size: 14.5px; cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  color: var(--cd-text);
}
.ld-faq-item summary::after {
  content: '';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cd-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--cd-primary);
  font-weight: 600; flex-shrink: 0;
  transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='%2304107C'%3E%3Cpath d='M8 3.5a.5.5 0 0 1 .5.5v4h4a.5.5 0 0 1 0 1h-4v4a.5.5 0 0 1-1 0v-4h-4a.5.5 0 0 1 0-1h4v-4a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ld-faq-item[open] summary::after {
  background: var(--cd-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
.ld-faq-item summary::-webkit-details-marker { display: none; }
.ld-faq-item p {
  padding: 0 20px 18px;
  color: var(--cd-text-muted);
  font-size: 13.5px; line-height: 1.65;
}

@media (max-width: 900px) {
  .ld-faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .ld-faq-intro { position: static; }
}

/* ========== Final CTA + Newsletter (merged) ========== */
.ld-final {
  padding: 80px 0;
}
.ld-final-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #04107C 0%, #1e1b8e 50%, #2d3aa3 100%);
  border-radius: 28px;
  padding: 60px 56px;
  color: #fff;
}
.ld-final-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(40px);
}
.ld-final-orb-1 {
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.45), transparent 70%);
}
.ld-final-orb-2 {
  bottom: -140px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
}
.ld-final-orb-3 {
  top: 30%; left: 40%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}

.ld-final-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
}

/* LEFT: CTA */
.ld-final-left { color: #fff; }
.ld-final-title {
  font-size: clamp(28px, 3.6vw, 40px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  margin: 14px 0 14px;
}
.ld-final-sub {
  font-size: 16px; opacity: 0.85; margin-bottom: 28px;
  line-height: 1.65; max-width: 480px;
}
.ld-final-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.ld-final-perks {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.85; font-weight: 500;
}
.ld-final-perks span {
  display: inline-flex; align-items: center; gap: 5px;
}
.ld-final-perks i { color: #fbbf24; }

/* RIGHT: Newsletter glass card */
.ld-final-right {
  display: flex; justify-content: center;
}
.ld-final-card {
  width: 100%; max-width: 440px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.25);
}
.ld-final-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px -6px rgba(245, 158, 11, 0.5);
  position: absolute; top: -26px; right: 28px;
}
.ld-final-card-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: #fbbf24; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ld-final-card-title {
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.ld-final-card-sub {
  font-size: 13.5px; color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.55;
}

.ld-final-card .ld-newsletter-form {
  display: flex; gap: 8px;
  margin: 0 0 18px;
}
.ld-final-card .ld-newsletter-input {
  flex: 1; padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 14px; font-family: inherit;
  color: var(--cd-text);
  transition: all 0.15s;
}
.ld-final-card .ld-newsletter-input::placeholder { color: #94a3b8; }
.ld-final-card .ld-newsletter-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}
.ld-final-card .ld-btn-primary {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  box-shadow: 0 6px 16px -4px rgba(245, 158, 11, 0.5);
  padding: 12px 20px;
  white-space: nowrap;
}
.ld-final-card .ld-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(245, 158, 11, 0.6);
}

.ld-final-card-trust {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: 11px; color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.ld-final-card-trust span {
  display: inline-flex; align-items: center; gap: 4px;
}
.ld-final-card-trust i { color: #fbbf24; font-size: 12px; }
.ld-final-trust-divider {
  width: 3px !important; height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .ld-final-band { padding: 44px 32px; }
  .ld-final-grid { grid-template-columns: 1fr; gap: 32px; }
  .ld-final-card-icon { right: 20px; }
  .ld-final-card .ld-newsletter-form { flex-direction: column; }
}
@media (max-width: 600px) {
  .ld-final-band { padding: 36px 22px; border-radius: 20px; }
  .ld-final-card { padding: 28px 22px; }
}

/* Hide old standalone newsletter section if still referenced */
.ld-newsletter { display: none; }

/* ========== Newsletter ========== */
.ld-newsletter {
  padding: 80px 0;
}
.ld-newsletter-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(4, 16, 124, 0.06), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(245, 158, 11, 0.08), transparent 50%),
    #fff;
  border: 1px solid var(--cd-border);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.1);
}
.ld-newsletter-decor {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background:
    radial-gradient(circle, var(--cd-secondary), transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}
.ld-newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto 32px; }
.ld-newsletter-title {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 14px 0 12px;
}
.ld-newsletter-sub {
  font-size: 15px; color: var(--cd-text-muted);
}
.ld-newsletter-form {
  display: flex; gap: 10px; max-width: 460px;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.ld-newsletter-input {
  flex: 1; padding: 13px 18px;
  border: 1.5px solid var(--cd-border); border-radius: 12px;
  font-size: 15px; font-family: inherit;
  background: #fff;
  transition: all 0.15s;
}
.ld-newsletter-input:focus {
  outline: none; border-color: var(--cd-primary);
  box-shadow: 0 0 0 4px rgba(4, 16, 124, 0.1);
}
.ld-newsletter-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--cd-text-muted); font-weight: 500;
  position: relative; z-index: 1;
}
.ld-newsletter-trust span {
  display: inline-flex; align-items: center; gap: 5px;
}
.ld-newsletter-trust i { color: var(--cd-primary); }

@media (max-width: 600px) {
  .ld-newsletter-card { padding: 36px 24px; }
  .ld-newsletter-form { flex-direction: column; }
}

/* ========== Footer ========== */
.ld-footer {
  background: #0a0f1c; color: #94a3b8;
  padding: 72px 0 32px;
  position: relative;
}
.ld-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 16, 124, 0.5), rgba(245, 158, 11, 0.5), transparent);
}
.ld-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 48px;
}
.ld-footer-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 19px; color: #fff;
  margin-bottom: 16px;
}
.ld-footer-about {
  font-size: 14px; color: #94a3b8;
  max-width: 320px; line-height: 1.65;
  margin-bottom: 18px;
}
.ld-footer-social {
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
}
.ld-footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
}
.ld-footer-social a i {
  font-size: 17px;
  line-height: 1;
  display: block;
}
.ld-footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}
.ld-footer-social a:hover.ld-fs-fb { background: #1877F2; box-shadow: 0 8px 18px -4px rgba(24, 119, 242, 0.5); }
.ld-footer-social a:hover.ld-fs-wa { background: #25D366; box-shadow: 0 8px 18px -4px rgba(37, 211, 102, 0.5); }
.ld-footer-social a:hover.ld-fs-ig { background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45); box-shadow: 0 8px 18px -4px rgba(228, 64, 95, 0.5); }
.ld-footer-social a:hover.ld-fs-in { background: #0A66C2; box-shadow: 0 8px 18px -4px rgba(10, 102, 194, 0.5); }
.ld-footer-social a:hover.ld-fs-yt { background: #FF0000; box-shadow: 0 8px 18px -4px rgba(255, 0, 0, 0.5); }
.ld-footer-social a:hover.ld-fs-x  { background: #000; box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.5); }

/* Tech Designer credit */
.ld-footer-credit {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #64748b;
}
.ld-footer-credit a {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 0 !important;
  background: linear-gradient(90deg, #04107C, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  transition: opacity 0.2s;
}
.ld-footer-credit a:hover { opacity: 0.7; }
.ld-footer h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.ld-footer a {
  color: #94a3b8; font-size: 14px;
  display: block; padding: 6px 0;
  transition: color 0.15s;
}
.ld-footer a:hover { color: #fff; }
.ld-footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 13px; flex-wrap: wrap; gap: 14px;
}
.ld-footer-bottom-links {
  display: flex; gap: 24px;
}
.ld-footer-bottom-links a {
  display: inline; padding: 0;
}

/* ========== Auth pages (login/register) ========== */
.ld-auth-wrap {
  min-height: calc(100vh - 80px - 400px);
  padding: 60px 24px;
  background:
    radial-gradient(circle at 20% 30%, rgba(4, 16, 124, 0.04), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05), transparent 50%),
    var(--cd-bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.ld-auth-card {
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 18px;
  padding: 44px;
  box-shadow: var(--cd-shadow-lg);
  max-width: 480px; width: 100%;
}
.ld-auth-card-wide { max-width: 560px; }
.ld-auth-head {
  text-align: center; margin-bottom: 32px;
}
.ld-auth-title {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.ld-auth-sub {
  font-size: 14px; color: var(--cd-text-muted);
}
.ld-auth-form-row { margin-bottom: 16px; }
.ld-auth-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.ld-auth-label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--cd-text);
}
.ld-auth-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--cd-border); border-radius: 10px;
  font-size: 14px; font-family: inherit;
  background: var(--cd-bg-alt);
  transition: all 0.15s;
}
.ld-auth-input:hover { border-color: rgba(4, 16, 124, 0.3); }
.ld-auth-input:focus {
  outline: none; border-color: var(--cd-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(4, 16, 124, 0.1);
}
.ld-auth-btn {
  width: 100%; padding: 13px;
  border-radius: 10px; border: none;
  background: var(--cd-gradient-primary); color: #fff;
  font-weight: 700; font-size: 15px; cursor: pointer;
  font-family: inherit; margin-top: 6px;
  box-shadow: 0 6px 16px -4px rgba(4, 16, 124, 0.4);
  transition: all 0.2s;
}
.ld-auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(4, 16, 124, 0.5);
}
.ld-auth-foot {
  text-align: center; font-size: 14px;
  color: var(--cd-text-muted); margin-top: 24px;
}
.ld-auth-foot a { color: var(--cd-primary); font-weight: 600; }
.ld-auth-flash {
  padding: 12px 14px; border-radius: 10px;
  font-size: 13px; margin-bottom: 16px;
  display: flex; gap: 10px; align-items: flex-start;
}
.ld-auth-flash-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.ld-auth-flash-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Auth perks band */
.ld-auth-perks {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 22px;
  font-size: 13px; color: var(--cd-text-muted);
}
.ld-auth-perks span {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .ld-menu { display: none; }
  .ld-mockup-content { grid-template-columns: 1fr; }
  .ld-mockup-sidebar { display: none; }
  .ld-mockup-main { grid-template-columns: 1fr; }
  .ld-mockup-conv { display: none; }
  .ld-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ld-plan-featured { transform: none; }
  .ld-stats-band { grid-template-columns: repeat(2, 1fr); }
  .ld-auth-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ld-hero { padding: 60px 0 50px; }
  .ld-section { padding: 60px 0; }
  .ld-footer-grid { grid-template-columns: 1fr; }
  .ld-auth-card { padding: 28px 22px; }
}

/* ====================================
   About page (premium polish)
   ==================================== */
.ab-hero {
  position: relative; overflow: hidden;
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(4, 16, 124, 0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(180deg, #fafbff 0%, #fff 100%);
  text-align: center;
}
.ab-hero-bg-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
  opacity: 0.4;
  animation: ab-blob-float 22s ease-in-out infinite;
}
.ab-hero-bg-blob-1 {
  width: 460px; height: 460px;
  top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.35), rgba(4, 16, 124, 0.12) 50%, transparent 70%);
}
.ab-hero-bg-blob-2 {
  width: 500px; height: 500px;
  top: 5%; right: -140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), rgba(228, 64, 95, 0.18) 50%, transparent 70%);
  animation-delay: -8s;
}
.ab-hero-bg-blob-3 {
  width: 420px; height: 420px;
  bottom: -150px; left: 35%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), rgba(99, 102, 241, 0.18) 50%, transparent 70%);
  animation-delay: -14s;
}
@keyframes ab-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}
.ab-hero-grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(4, 16, 124, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.6;
}
.ab-hero-float {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; z-index: 1;
  animation: ab-icon-float 6s ease-in-out infinite;
  box-shadow: 0 14px 28px -8px rgba(15, 23, 42, 0.25);
}
.ab-hero-float-1 {
  background: linear-gradient(135deg, #1877F2, #04107C);
  top: 18%; left: 8%;
  animation-delay: 0s;
}
.ab-hero-float-2 {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  top: 24%; right: 10%;
  animation-delay: -2s;
}
.ab-hero-float-3 {
  background: linear-gradient(135deg, #10b981, #059669);
  bottom: 22%; left: 12%;
  animation-delay: -4s;
}
@keyframes ab-icon-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@media (max-width: 768px) { .ab-hero-float { display: none; } }

.ab-hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.ab-hero-title {
  font-size: clamp(40px, 5.5vw, 62px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 22px 0 22px; color: var(--cd-text);
}
.ab-hero-highlight {
  background: linear-gradient(135deg, #04107C 0%, #6366f1 50%, #04107C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; display: inline-block;
  animation: ab-shine 4s ease-in-out infinite;
}
@keyframes ab-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ab-hero-highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 10px; z-index: -1; border-radius: 6px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.4), rgba(245, 158, 11, 0.2));
}
.ab-hero-sub {
  font-size: 19px; color: var(--cd-text-muted); line-height: 1.7;
  max-width: 720px; margin: 0 auto 36px;
}
.ab-hero-quick-stats {
  display: inline-flex; align-items: stretch; gap: 0;
  margin-top: 12px;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 16px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.12);
}
.ab-hero-quick-stat {
  padding: 0 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
}
.ab-hero-quick-stat strong {
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #04107C, #2d3aa3);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em; line-height: 1;
}
.ab-hero-quick-stat span {
  font-size: 11px; color: var(--cd-text-muted);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ab-hero-quick-divider {
  width: 1px; background: var(--cd-border);
}

/* Logos band */
.ab-logos-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--cd-border);
}
.ab-logos-label {
  text-align: center; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cd-text-muted); font-weight: 700;
  margin-bottom: 24px;
}
.ab-logos-grid {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.ab-logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  color: var(--cd-text);
  transition: all 0.2s;
  box-shadow: 0 2px 6px -2px rgba(15, 23, 42, 0.05);
}
.ab-logo-pill:hover {
  transform: translateY(-2px);
  border-color: var(--logo-color, var(--cd-primary));
  box-shadow: 0 8px 20px -6px var(--logo-color, var(--cd-primary));
}
.ab-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--logo-color, var(--cd-primary));
}

/* Mission cards */
.ab-mission-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, var(--cd-bg-alt) 100%);
}
.ab-mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 100%; margin: 0;
}
.ab-mission-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.25s;
}
.ab-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -16px rgba(15, 23, 42, 0.15);
}
.ab-mission-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
}
.ab-mission-card-mission::before { background: linear-gradient(90deg, #04107C, #2d3aa3); }
.ab-mission-card-vision::before { background: linear-gradient(90deg, #f59e0b, #fb923c); }
.ab-mission-card-values::before { background: linear-gradient(90deg, #ec4899, #be185d); }
.ab-mission-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  margin-bottom: 20px;
}
.ab-mission-card-mission .ab-mission-icon { background: linear-gradient(135deg, #04107C, #2d3aa3); box-shadow: 0 10px 24px -6px rgba(4, 16, 124, 0.45); }
.ab-mission-card-vision .ab-mission-icon { background: linear-gradient(135deg, #f59e0b, #fb923c); box-shadow: 0 10px 24px -6px rgba(245, 158, 11, 0.45); }
.ab-mission-card-values .ab-mission-icon { background: linear-gradient(135deg, #ec4899, #be185d); box-shadow: 0 10px 24px -6px rgba(236, 72, 153, 0.45); }
.ab-mission-card h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 10px;
  color: var(--cd-text);
}
.ab-mission-card p {
  font-size: 15px; color: var(--cd-text-muted);
  line-height: 1.65; margin: 0;
}

/* Stats upgraded */
.ab-stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.15);
}
.ab-stat-icon-1 { background: linear-gradient(135deg, #04107C, #2d3aa3); }
.ab-stat-icon-2 { background: linear-gradient(135deg, #f59e0b, #fb923c); }
.ab-stat-icon-3 { background: linear-gradient(135deg, #10b981, #059669); }
.ab-stat-icon-4 { background: linear-gradient(135deg, #ec4899, #be185d); }
.ab-stat-trend {
  margin-top: 10px; font-size: 11.5px;
  color: var(--cd-success); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  justify-content: center;
}
.ab-stat-trend i { color: var(--cd-success); font-size: 12px; }

/* Story highlights */
.ab-story-highlights {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.ab-story-highlight {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--cd-text);
  font-weight: 500;
}
.ab-story-highlight i {
  color: var(--cd-success); font-size: 18px;
}

/* Story cards with meter */
.ab-story-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 18px; padding: 28px;
  position: relative;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s;
}
.ab-story-card:hover { transform: rotate(0deg) translateY(-4px) !important; }
.ab-story-card-tag {
  position: absolute; top: -10px; left: 24px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: #ef4444; color: #fff;
}
.ab-story-card-tag-after { background: var(--cd-success); }
.ab-story-card-meter {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--cd-border);
}
.ab-story-card-meter > span {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--cd-text-muted);
  display: block; margin-bottom: 6px;
}
.ab-story-meter-bar {
  height: 8px; background: var(--cd-bg-alt);
  border-radius: 999px; overflow: hidden;
}
.ab-story-meter-fill {
  height: 100%; border-radius: 999px;
  transition: width 0.6s ease-out;
}
.ab-story-arrow {
  text-align: center;
  font-size: 28px; color: var(--cd-primary);
  margin: -4px 0 -8px;
  animation: ab-arrow-bounce 2s ease-in-out infinite;
}
@keyframes ab-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Team upgrades */
.ab-team-card {
  position: relative; overflow: hidden;
}
.ab-team-card-decor {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(4, 16, 124, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ab-team-social {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px;
}
.ab-team-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cd-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-text-muted); font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.ab-team-social a:hover {
  background: var(--cd-primary); color: #fff;
  transform: translateY(-2px);
}

.ab-team-cta {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 48px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 16, 124, 0.04), transparent 60%),
    #fff;
  border: 2px dashed var(--cd-border);
  border-radius: 24px;
  position: relative;
}
.ab-team-cta-emoji {
  font-size: 48px; line-height: 1;
  margin-bottom: 16px;
  animation: ab-rocket-pop 3s ease-in-out infinite;
}
@keyframes ab-rocket-pop {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

/* CTA upgrades */
.ab-cta-card {
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.2), transparent 50%),
    linear-gradient(135deg, #04107C 0%, #1e1b8e 50%, #2d3aa3 100%);
  color: #fff; padding: 80px 56px;
  border-radius: 28px; text-align: center;
  position: relative; overflow: hidden;
}
.ab-cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(50px);
}
.ab-cta-orb-1 {
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(245, 158, 11, 0.5);
}
.ab-cta-orb-2 {
  bottom: -120px; left: -100px;
  width: 320px; height: 320px;
  background: rgba(99, 102, 241, 0.4);
}
.ab-cta-content { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .ab-mission-grid { grid-template-columns: 1fr; }
  .ab-hero-quick-stats { flex-wrap: wrap; padding: 12px; }
  .ab-hero-quick-divider { display: none; }
  .ab-hero-quick-stat { width: 33.333%; padding: 8px 12px; }
}

.ab-stats-section { padding: 0 0 60px; background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--cd-bg-alt) 100%); }
.ab-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 100%; margin: -60px 0 0;
  padding: 36px; background: #fff;
  border: 1px solid var(--cd-border); border-radius: 20px;
  box-shadow: 0 24px 50px -20px rgba(15, 23, 42, 0.15);
  position: relative; z-index: 2;
}
.ab-stat { text-align: center; }
.ab-stat-num {
  font-size: 40px; font-weight: 800; line-height: 1;
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.025em;
}
.ab-stat-label {
  font-size: 13px; color: var(--cd-text-muted);
  font-weight: 600; margin-top: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.ab-story { padding: 100px 0; background: var(--cd-bg-alt); }
.ab-story-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 100%; margin: 0;
}
.ab-section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 12px 0 20px; color: var(--cd-text);
}
.ab-lead {
  font-size: 19px; color: var(--cd-text);
  line-height: 1.65; font-weight: 500;
  padding: 16px 22px;
  background: linear-gradient(135deg, rgba(4, 16, 124, 0.04), rgba(245, 158, 11, 0.04));
  border-left: 4px solid var(--cd-primary);
  border-radius: 0 12px 12px 0;
  margin-bottom: 20px;
}
.ab-story p { color: var(--cd-text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.ab-story-visual { display: flex; flex-direction: column; gap: 18px; position: relative; }
.ab-story-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; padding: 28px; position: relative;
  box-shadow: var(--cd-shadow);
}
.ab-story-card i { font-size: 32px; margin-bottom: 10px; }
.ab-story-card strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.ab-story-card p { margin: 0; font-size: 15px; line-height: 1.55; }
.ab-story-card-1 { transform: rotate(-2deg); }
.ab-story-card-1 i { color: #ef4444; }
.ab-story-card-1 strong { color: #ef4444; }
.ab-story-card-2 { transform: rotate(1deg); margin-left: 30px; }
.ab-story-card-2 i { color: var(--cd-success); }
.ab-story-card-2 strong { color: var(--cd-success); }

.ab-values-section { padding: 100px 0; background: #fff; }
.ab-values-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 100%; margin: 0;
}
.ab-value {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; padding: 28px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.ab-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
  border-color: var(--cd-primary);
}
.ab-value-icon {
  width: 56px; height: 56px; border-radius: 16px;
  color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px -6px rgba(0, 0, 0, 0.18);
}
.ab-value h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--cd-text); }
.ab-value p { color: var(--cd-text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

.ab-team-section { padding: 100px 0; background: var(--cd-bg-alt); overflow: hidden; }

/* Team slider/carousel */
.ab-team-slider {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  overflow: hidden;
  padding: 8px 4px;
}
.ab-team-track {
  display: flex; gap: 22px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.ab-team-track > .ab-team-card {
  flex: 0 0 calc(25% - 17px);
}
@media (max-width: 1200px) {
  .ab-team-track > .ab-team-card { flex: 0 0 calc(33.333% - 15px); }
}
@media (max-width: 900px) {
  .ab-team-track > .ab-team-card { flex: 0 0 calc(50% - 11px); }
}
@media (max-width: 600px) {
  .ab-team-track > .ab-team-card { flex: 0 0 calc(100% - 4px); }
}

.ab-team-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 36px;
}
.ab-team-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--cd-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-text-muted); font-size: 16px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 2px 6px -2px rgba(15, 23, 42, 0.08);
}
.ab-team-btn:hover {
  background: linear-gradient(135deg, var(--cd-primary), #2d3aa3);
  color: #fff; border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 18px -4px rgba(4, 16, 124, 0.4);
}
.ab-team-dots { display: flex; gap: 8px; align-items: center; }
.ab-team-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cd-border); cursor: pointer;
  border: none; transition: all 0.2s; padding: 0;
}
.ab-team-dot.is-active {
  background: linear-gradient(135deg, var(--cd-primary), #2d3aa3);
  width: 28px; border-radius: 4px;
}
.ab-team-dot:hover:not(.is-active) { background: var(--cd-text-soft); }

.ab-team-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 100%; margin: 0 0 60px;
}
.ab-team-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; padding: 28px; text-align: center;
  transition: all 0.22s;
}
.ab-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.12);
  border-color: var(--cd-primary);
}
.ab-team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: 0 14px 28px -8px rgba(0, 0, 0, 0.2);
}
.ab-team-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.01em; color: var(--cd-text); }
.ab-team-role {
  display: inline-block; font-size: 12px; color: var(--cd-primary);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.ab-team-card p { color: var(--cd-text-muted); font-size: 13.5px; line-height: 1.55; margin: 0; }
.ab-team-cta {
  text-align: center; max-width: 600px; margin: 0 auto;
  padding: 40px; background: #fff;
  border: 2px dashed var(--cd-border);
  border-radius: 20px;
}
.ab-team-cta h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 16px 0 8px; color: var(--cd-text); }
.ab-team-cta p { color: var(--cd-text-muted); font-size: 15px; margin-bottom: 24px; }

.ab-timeline-section { padding: 100px 0; background: #fff; }
.ab-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.ab-timeline::before {
  content: ''; position: absolute;
  left: 14px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(180deg, var(--cd-primary), var(--cd-secondary));
}
.ab-timeline-item { position: relative; padding-left: 50px; margin-bottom: 32px; }
.ab-timeline-item:last-child { margin-bottom: 0; }
.ab-timeline-dot {
  position: absolute; left: 6px; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--cd-primary);
  z-index: 1;
}
.ab-timeline-item.is-current .ab-timeline-dot {
  background: var(--cd-gradient-secondary, linear-gradient(135deg, #f59e0b, #fb923c));
  border-color: var(--cd-secondary);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
  animation: ab-pulse 2s ease-in-out infinite;
}
@keyframes ab-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}
.ab-timeline-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 12px; padding: 20px 22px; transition: all 0.2s;
}
.ab-timeline-card:hover { box-shadow: var(--cd-shadow); border-color: var(--cd-primary); }
.ab-timeline-date { font-size: 11px; font-weight: 700; color: var(--cd-secondary); text-transform: uppercase; letter-spacing: 0.08em; }
.ab-timeline-card h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 6px 0; color: var(--cd-text); }
.ab-timeline-card p { color: var(--cd-text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

.ab-cta-section { padding: 60px 0 100px; background: var(--cd-bg-alt); }
.ab-cta-card {
  background: var(--cd-gradient-hero, linear-gradient(135deg, #04107C, #1e1b8e));
  color: #fff; padding: 64px 40px;
  border-radius: 24px; text-align: center;
  position: relative; overflow: hidden;
}
.ab-cta-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(245, 158, 11, 0.25); border-radius: 50%; filter: blur(40px);
}
.ab-cta-card > * { position: relative; z-index: 1; }
.ab-cta-card h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.ab-cta-card p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; }

@media (max-width: 900px) {
  .ab-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 24px; }
  .ab-story-card-2 { margin-left: 0; }
}

/* ====================================
   Contact page (premium polish)
   ==================================== */
.ct-hero {
  position: relative; overflow: hidden;
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(4, 16, 124, 0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1), transparent 50%),
    linear-gradient(180deg, #fafbff 0%, #fff 100%);
  text-align: center;
}
.ct-hero-bg-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(70px);
  opacity: 0.4;
  animation: ct-blob-float 22s ease-in-out infinite;
}
.ct-hero-bg-blob-1 {
  width: 450px; height: 450px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), rgba(4, 16, 124, 0.15) 50%, transparent 70%);
}
.ct-hero-bg-blob-2 {
  width: 500px; height: 500px;
  top: 0; right: -150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), rgba(228, 64, 95, 0.15) 50%, transparent 70%);
  animation-delay: -7s;
}
@keyframes ct-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.05); }
}
.ct-hero-grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(4, 16, 124, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.6;
}
.ct-hero-float {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; z-index: 1;
  animation: ct-icon-float 6s ease-in-out infinite;
  box-shadow: 0 14px 28px -8px rgba(15, 23, 42, 0.25);
}
.ct-hero-float-1 {
  background: linear-gradient(135deg, #25D366, #128c7e);
  top: 16%; left: 8%;
}
.ct-hero-float-2 {
  background: linear-gradient(135deg, #EA4335, #c12914);
  top: 22%; right: 9%;
  animation-delay: -2s;
}
.ct-hero-float-3 {
  background: linear-gradient(135deg, #04107C, #2d3aa3);
  bottom: 20%; left: 14%;
  animation-delay: -4s;
}
@keyframes ct-icon-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@media (max-width: 768px) { .ct-hero-float { display: none; } }

.ct-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ct-hero-title {
  font-size: clamp(44px, 6.5vw, 72px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 22px 0 22px; color: var(--cd-text);
}
.ct-hero-highlight {
  background: linear-gradient(135deg, #04107C 0%, #f59e0b 50%, #04107C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; display: inline-block;
  animation: ct-shine 4s ease-in-out infinite;
}
@keyframes ct-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ct-hero-sub {
  font-size: 19px; color: var(--cd-text-muted); line-height: 1.7;
  max-width: 640px; margin: 0 auto 28px;
}
.ct-hero-badges {
  display: inline-flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
}
.ct-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--cd-text);
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
}
.ct-hero-badge i { color: var(--cd-secondary); font-size: 13px; }

.ct-cards-section { padding: 0 0 60px; background: #fff; }
.ct-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 100%; margin: -50px 0 0;
  position: relative; z-index: 2;
}
.ct-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 20px; padding: 28px;
  text-decoration: none; color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px -10px rgba(15, 23, 42, 0.08);
}
.ct-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -16px rgba(15, 23, 42, 0.18);
  color: inherit;
  border-color: transparent;
}
.ct-card-glow {
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  filter: blur(40px);
}
.ct-card:hover .ct-card-glow { opacity: 0.5; }
.ct-card-wa .ct-card-glow { background: #25D366; }
.ct-card-em .ct-card-glow { background: #EA4335; }
.ct-card-ph .ct-card-glow { background: #04107C; }
.ct-card-of .ct-card-glow { background: #f59e0b; }
.ct-card-meta { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--cd-border); }
.ct-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: var(--cd-text-muted);
}
.ct-card-badge i { font-size: 8px; }
.ct-card-wa .ct-card-badge i { color: var(--cd-success); animation: ct-pulse-dot 2s ease-in-out infinite; }
@keyframes ct-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ct-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.18);
}
.ct-card-wa .ct-card-icon { background: linear-gradient(135deg, #25D366, #128c7e); }
.ct-card-em .ct-card-icon { background: linear-gradient(135deg, #EA4335, #c12914); }
.ct-card-ph .ct-card-icon { background: linear-gradient(135deg, #04107C, #2d3aa3); }
.ct-card-of .ct-card-icon { background: linear-gradient(135deg, #f59e0b, #fb923c); }
.ct-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; color: var(--cd-text); }
.ct-card p { font-size: 13px; color: var(--cd-text-muted); margin: 0 0 14px; line-height: 1.5; }
.ct-card-value { font-size: 15px; font-weight: 700; color: var(--cd-primary); letter-spacing: -0.01em; }
.ct-card-wa .ct-card-value { color: #128c7e; }
.ct-card-em .ct-card-value { color: #c12914; }
.ct-card-of .ct-card-value { color: #b45309; }
.ct-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cd-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-text-muted); font-size: 13px;
  transition: all 0.2s;
}
.ct-card:hover .ct-card-arrow { background: var(--cd-primary); color: #fff; transform: rotate(45deg); }

.ct-form-section { padding: 80px 0 100px; background: var(--cd-bg-alt); }
.ct-form-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  max-width: 100%; margin: 0;
  align-items: flex-start;
}
.ct-form-wrap {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 24px; padding: 44px;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}
.ct-form-title {
  font-size: clamp(26px, 3.4vw, 34px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 12px 0 8px; color: var(--cd-text);
}
.ct-form-sub { font-size: 15px; color: var(--cd-text-muted); line-height: 1.65; margin-bottom: 28px; }
.ct-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-form-row { margin-bottom: 18px; }
.ct-form-row label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 7px; color: var(--cd-text);
}
/* Input wrap with icon */
.ct-input-wrap { position: relative; }
.ct-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--cd-text-soft);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.15s;
  z-index: 1;
}
.ct-input-wrap:focus-within .ct-input-icon { color: var(--cd-primary); }
.ct-input {
  width: 100%; padding: 13px 16px 13px 42px;
  border: 1.5px solid var(--cd-border); border-radius: 12px;
  font-size: 14.5px; font-family: inherit;
  background: var(--cd-bg-alt);
  transition: all 0.18s;
  box-sizing: border-box;
  color: var(--cd-text);
}
textarea.ct-input { padding-left: 16px; }
.ct-input::placeholder { color: var(--cd-text-soft); }
.ct-input:hover { border-color: rgba(4, 16, 124, 0.3); background: #fff; }
.ct-input:focus {
  outline: none; border-color: var(--cd-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(4, 16, 124, 0.1);
}
.ct-textarea { resize: vertical; min-height: 140px; }
.ct-req { color: #ef4444; margin-left: 2px; }
.ct-form-header { margin-bottom: 28px; }
.ct-form-submit { width: 100%; justify-content: center; }
.ct-form-disclaimer {
  font-size: 12px; color: var(--cd-text-muted);
  text-align: center; margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ct-form-disclaimer a { color: var(--cd-primary); text-decoration: underline; }

.ct-success-flash {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 18px 20px; margin-bottom: 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.ct-success-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-success-flash strong { display: block; color: #047857; font-size: 14px; margin-bottom: 2px; }
.ct-success-flash p { color: #065f46; font-size: 13px; margin: 0; }
.ct-error-flash {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  padding: 12px 16px; border-radius: 10px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}

.ct-sidebar { display: flex; flex-direction: column; gap: 18px; }
.ct-hours-card, .ct-social-card, .ct-faq-card, .ct-office-card {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; padding: 24px;
  position: relative; overflow: hidden;
  transition: all 0.2s;
}
.ct-hours-card:hover, .ct-social-card:hover, .ct-office-card:hover, .ct-faq-card:hover {
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.12);
  border-color: var(--cd-primary);
}
.ct-hours-card-decor {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(4, 16, 124, 0.08), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.ct-hours-closed { color: #ef4444 !important; }

/* Office card */
.ct-office-card { padding: 0; overflow: hidden; }
.ct-office-map {
  height: 160px;
  background:
    linear-gradient(135deg, #04107C 0%, #2d3aa3 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}
.ct-office-map::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ct-office-map::after {
  content: ''; position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 60%);
  filter: blur(30px);
}
.ct-office-map i {
  font-size: 36px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
  animation: ct-pin-bounce 2s ease-in-out infinite;
}
@keyframes ct-pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.ct-office-map span {
  position: relative; z-index: 1;
  margin-top: 8px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ct-office-info { padding: 22px 24px; }
.ct-office-info h4 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 8px; color: var(--cd-text);
}
.ct-office-info p {
  font-size: 14px; color: var(--cd-text-muted);
  margin: 0 0 14px; line-height: 1.55;
}
.ct-office-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--cd-bg-alt);
  border: 1px solid var(--cd-border);
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--cd-primary);
  text-decoration: none;
  transition: all 0.15s;
}
.ct-office-link:hover {
  background: var(--cd-primary); color: #fff; border-color: var(--cd-primary);
}
.ct-hours-card h4, .ct-social-card h4, .ct-faq-card h4 {
  font-size: 14px; font-weight: 700;
  margin: 0 0 14px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
  color: var(--cd-text);
}
.ct-hours-card h4 i { color: var(--cd-primary); }
.ct-social-card h4 i { color: var(--cd-secondary); }
.ct-faq-card h4 i { color: #f59e0b; }
.ct-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--cd-border);
  font-size: 13.5px;
}
.ct-hours-row:last-of-type { border-bottom: none; }
.ct-hours-row span { color: var(--cd-text-muted); }
.ct-hours-row strong { color: var(--cd-text); font-weight: 700; }
.ct-hours-note {
  margin-top: 14px; padding: 12px 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(4, 16, 124, 0.05));
  border-radius: 10px;
  font-size: 12.5px; color: var(--cd-text); line-height: 1.5;
}
.ct-social-card p { font-size: 13px; color: var(--cd-text-muted); margin-bottom: 14px; }
.ct-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ct-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--cd-border); border-radius: 8px;
  text-decoration: none; color: var(--cd-text);
  font-size: 13px; font-weight: 600;
  transition: all 0.15s;
}
.ct-social:hover { color: #fff; border-color: transparent; transform: translateY(-2px); }
.ct-social-fb:hover { background: #1877F2; }
.ct-social-ig:hover { background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45); }
.ct-social-yt:hover { background: #FF0000; }
.ct-social-in:hover { background: #0A66C2; }

.ct-faq-card { padding: 22px 24px; }
.ct-mini-faq { border-bottom: 1px solid var(--cd-border); padding: 10px 0; }
.ct-mini-faq:last-of-type { border-bottom: none; }
.ct-mini-faq summary {
  cursor: pointer; font-weight: 600; font-size: 13.5px;
  list-style: none; padding: 4px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--cd-text);
}
.ct-mini-faq summary::after { content: '+'; color: var(--cd-primary); font-size: 18px; font-weight: 300; }
.ct-mini-faq[open] summary::after { content: '−'; }
.ct-mini-faq summary::-webkit-details-marker { display: none; }
.ct-mini-faq p { font-size: 13px; color: var(--cd-text-muted); line-height: 1.55; margin: 8px 0 4px; }

@media (max-width: 900px) {
  .ct-cards-grid { grid-template-columns: 1fr 1fr; }
  .ct-form-grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-form-wrap { padding: 28px; }
}
@media (max-width: 600px) {
  .ct-cards-grid { grid-template-columns: 1fr; }
  .ct-form-grid-2 { grid-template-columns: 1fr; }
}

/* ====================================
   CMS Premium Legal Page
   ==================================== */
.cms-hero {
  position: relative; overflow: hidden;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 16, 124, 0.1), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(245, 158, 11, 0.06), transparent 50%),
    linear-gradient(180deg, #fafbff 0%, #fff 100%);
  border-bottom: 1px solid var(--cd-border);
}
.cms-hero::before {
  content: ''; position: absolute;
  top: 30%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cms-hero::after {
  content: ''; position: absolute;
  top: 0; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cms-hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(4, 16, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 16, 124, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 70%);
  pointer-events: none;
}
.cms-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15), transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.cms-breadcrumb {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--cd-text-muted);
  margin-bottom: 32px; font-weight: 500;
}
.cms-breadcrumb a { color: var(--cd-text-muted); text-decoration: none; transition: color 0.15s; }
.cms-breadcrumb a:hover { color: var(--cd-primary); }
.cms-bc-sep { font-size: 10px; opacity: 0.5; }
.cms-bc-current { color: var(--cd-text); font-weight: 600; }
.cms-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.cms-hero-icon-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: #fff; border: 1px solid var(--cd-border);
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.1);
  margin-bottom: 24px;
}
.cms-hero-icon-pill i {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.cms-hero-icon-pill span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cd-text); padding-right: 8px;
}
.cms-hero-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--cd-text); margin: 0 0 18px;
}
.cms-hero-subtitle {
  font-size: 19px; color: var(--cd-text-muted);
  line-height: 1.6; max-width: 640px; margin: 0 auto 28px;
}
.cms-hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--cd-text-muted);
}
.cms-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: #fff;
  border: 1px solid var(--cd-border); border-radius: 999px;
  font-weight: 500;
}
.cms-meta-item i { color: var(--cd-primary); font-size: 12px; }
.cms-meta-item strong { color: var(--cd-text); font-weight: 700; }

.cms-tldr-section { padding: 40px 0 0; background: var(--cd-bg-alt); }
.cms-tldr-card {
  max-width: 1080px; margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: 18px; padding: 24px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(245, 158, 11, 0.15);
}
.cms-tldr-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--cd-secondary); opacity: 0.1;
  border-radius: 50%;
}
.cms-tldr-icon {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cd-gradient-secondary, linear-gradient(135deg, #f59e0b, #fb923c));
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -4px rgba(245, 158, 11, 0.5);
}
.cms-tldr-content { flex: 1; position: relative; z-index: 1; }
.cms-tldr-content h3 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #b45309; margin: 0 0 6px;
}
.cms-tldr-content p { font-size: 15.5px; line-height: 1.65; color: #78350f; margin: 0; }

.cms-body-section { padding: 60px 0 80px; background: var(--cd-bg-alt); }
.cms-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; max-width: 1080px; margin: 0 auto;
  align-items: flex-start;
}
.cms-toc { position: sticky; top: 90px; }
.cms-toc-inner {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.06);
}
.cms-toc-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cd-text-muted); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--cd-border);
}
.cms-toc-label i { color: var(--cd-primary); font-size: 14px; }
.cms-toc-list {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 2px;
  max-height: 60vh; overflow-y: auto;
}
.cms-toc-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: var(--cd-text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.15s; font-weight: 500;
}
.cms-toc-link:hover { background: rgba(4, 16, 124, 0.04); color: var(--cd-text); }
.cms-toc-link.is-active {
  background: rgba(4, 16, 124, 0.06);
  color: var(--cd-primary); font-weight: 700;
  border-left-color: var(--cd-primary);
}
.cms-toc-actions {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--cd-border);
}
.cms-toc-action {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 12.5px; color: var(--cd-text-muted);
  text-decoration: none; font-weight: 600;
  transition: all 0.15s;
}
.cms-toc-action:hover { background: var(--cd-bg-alt); color: var(--cd-primary); }
.cms-toc-action i { color: var(--cd-secondary); }

.cms-body {
  background: #fff; border: 1px solid var(--cd-border);
  border-radius: 24px; padding: 60px 64px;
  font-size: 16.5px; line-height: 1.8; color: var(--cd-text);
  box-shadow: 0 12px 36px -12px rgba(15, 23, 42, 0.1);
  counter-reset: section;
  position: relative; overflow: hidden;
}
.cms-body::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #04107C, #6366f1, #f59e0b, #04107C);
  background-size: 200% 100%;
  animation: cms-rainbow 6s ease-in-out infinite;
}
@keyframes cms-rainbow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cms-body h2 {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.25;
  margin: 56px 0 22px; color: var(--cd-text);
  scroll-margin-top: 80px;
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--cd-border);
  counter-increment: section;
  position: relative;
}
.cms-body h2::before {
  content: counter(section, decimal-leading-zero);
  font-size: 13px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #04107C, #2d3aa3);
  padding: 8px 12px; border-radius: 10px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  font-feature-settings: 'tnum';
  box-shadow: 0 6px 14px -4px rgba(4, 16, 124, 0.4);
  min-width: 38px; text-align: center;
}
.cms-body h2::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--cd-secondary), transparent);
}
.cms-body h2:first-child { margin-top: 0; }
.cms-body h3 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.01em;
  margin: 32px 0 12px; color: var(--cd-primary);
  scroll-margin-top: 80px;
}
.cms-body h4 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; color: var(--cd-text); }
.cms-body p { margin-bottom: 18px; color: var(--cd-text); }
.cms-body strong { color: var(--cd-primary); font-weight: 700; }
.cms-body em { color: var(--cd-text-muted); font-style: italic; }
.cms-body > p:first-of-type {
  font-size: 17.5px; line-height: 1.7;
  color: var(--cd-text); padding: 18px 22px;
  background: linear-gradient(135deg, rgba(4, 16, 124, 0.03), rgba(245, 158, 11, 0.03));
  border-left: 4px solid var(--cd-primary);
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}
.cms-body ul, .cms-body ol { margin: 16px 0 24px 0; padding-left: 0; list-style: none; }
.cms-body li { position: relative; padding-left: 32px; margin-bottom: 10px; line-height: 1.65; }
.cms-body ul > li::before {
  content: ''; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px;
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(4, 16, 124, 0.08);
}
.cms-body ol { counter-reset: cms-list; }
.cms-body ol > li { counter-increment: cms-list; }
.cms-body ol > li::before {
  content: counter(cms-list);
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.cms-body a {
  color: var(--cd-primary); text-decoration: underline;
  text-decoration-color: rgba(4, 16, 124, 0.3); text-underline-offset: 3px;
  font-weight: 600; transition: text-decoration-color 0.15s;
}
.cms-body a:hover { text-decoration-color: var(--cd-primary); }
.cms-body code {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 2px 8px; border-radius: 6px;
  font-size: 13.5px; color: var(--cd-primary);
  border: 1px solid var(--cd-border);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 600;
}
.cms-body pre {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1; padding: 20px 24px; border-radius: 12px;
  margin: 20px 0 28px;
  font-size: 13.5px; line-height: 1.6; overflow-x: auto;
  box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.3);
}
.cms-body pre code { background: transparent; border: none; color: inherit; padding: 0; }
.cms-body blockquote {
  border-left: 4px solid var(--cd-secondary);
  padding: 18px 24px; margin: 24px 0;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.06), transparent);
  border-radius: 0 12px 12px 0;
  color: var(--cd-text);
  font-size: 15.5px; font-style: italic;
  position: relative;
}
.cms-body blockquote::before {
  content: '"'; position: absolute; top: -10px; left: 12px;
  font-size: 60px; line-height: 1;
  color: var(--cd-secondary); opacity: 0.3;
  font-family: Georgia, serif;
}
.cms-body hr {
  border: none; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cd-border), transparent);
  margin: 40px 0;
}
.cms-body table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 14.5px;
  border: 1px solid var(--cd-border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.06);
}
.cms-body th {
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  color: #fff; padding: 14px 18px; text-align: left;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cms-body td { padding: 14px 18px; border-bottom: 1px solid var(--cd-border); }
.cms-body tr:last-child td { border-bottom: none; }
.cms-body tr:hover td { background: var(--cd-bg-alt); }

.cms-footer-section { padding: 60px 0 100px; background: var(--cd-bg-alt); }
.cms-related { max-width: 1080px; margin: 0 auto 40px; }
.cms-related-title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cd-text-muted); margin-bottom: 18px;
}
.cms-related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.cms-related-card {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: all 0.2s; position: relative;
}
.cms-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--cd-shadow);
  border-color: var(--cd-primary); color: inherit;
}
.cms-related-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cd-gradient-primary, linear-gradient(135deg, #04107C, #2d3aa3));
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -3px rgba(4, 16, 124, 0.4);
}
.cms-related-content { flex: 1; min-width: 0; }
.cms-related-content h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 2px; color: var(--cd-text); }
.cms-related-content p { font-size: 12.5px; color: var(--cd-text-muted); margin: 0; line-height: 1.4; }
.cms-related-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cd-bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cd-text-muted); font-size: 12px;
  flex-shrink: 0; transition: all 0.2s;
}
.cms-related-card:hover .cms-related-arrow {
  background: var(--cd-primary); color: #fff;
  transform: rotate(45deg);
}
.cms-bottom-cta {
  max-width: 1080px; margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fafbff 100%);
  border: 1px solid var(--cd-border);
  border-radius: 20px; padding: 36px 44px;
  display: flex; gap: 32px;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}
.cms-bottom-cta-left h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 6px;
  color: var(--cd-text);
}
.cms-bottom-cta-left p { color: var(--cd-text-muted); font-size: 15px; margin: 0; }
.cms-bottom-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .cms-layout { grid-template-columns: 1fr; }
  .cms-toc { position: static; }
  .cms-body { padding: 36px 28px; }
  .cms-bottom-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .cms-hero { padding: 50px 0 40px; }
  .cms-hero-meta { flex-direction: column; gap: 10px; }
  .cms-tldr-card { flex-direction: column; }
  .cms-body { padding: 28px 22px; border-radius: 14px; }
  .cms-body h2 { font-size: 22px; flex-wrap: wrap; }
  .cms-body h2::before { font-size: 12px; }
}

/* ================================
   CMS page styles (polished — legacy)
   ================================ */
.ld-cms-hero {
  position: relative; overflow: hidden;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(4, 16, 124, 0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(180deg, #fafbff 0%, #fff 100%);
  text-align: center;
  border-bottom: 1px solid var(--cd-border);
}
.ld-cms-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.ld-cms-hero-icon {
  width: 78px; height: 78px; border-radius: 22px;
  background: var(--cd-gradient-primary);
  color: #fff; font-size: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 20px 40px -10px rgba(4, 16, 124, 0.5);
  position: relative;
}
.ld-cms-hero-icon::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 28px; background: var(--cd-gradient-primary);
  opacity: 0.12; z-index: -1; filter: blur(20px);
}
.ld-cms-title {
  font-size: clamp(36px, 5vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--cd-text);
  margin: 16px 0 16px;
}
.ld-cms-subtitle {
  font-size: 19px; color: var(--cd-text-muted);
  line-height: 1.6; max-width: 640px; margin: 0 auto;
}

.ld-cms-body-wrap {
  padding: 60px 0 100px;
  background: var(--cd-bg-alt);
}
.ld-cms-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto;
  align-items: flex-start;
}

.ld-cms-toc { position: sticky; top: 90px; }
.ld-cms-toc-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cd-text-muted); margin-bottom: 14px;
}
.ld-cms-toc-list { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.ld-cms-toc-link {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 13.5px; color: var(--cd-text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.ld-cms-toc-link:hover {
  background: rgba(4, 16, 124, 0.05); color: var(--cd-text);
}
.ld-cms-toc-link.is-active {
  background: rgba(4, 16, 124, 0.08); color: var(--cd-primary);
  font-weight: 600; border-left-color: var(--cd-primary);
}

.ld-cms-body {
  background: #fff;
  padding: 56px;
  border: 1px solid var(--cd-border);
  border-radius: 24px;
  box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.08);
  font-size: 16.5px; line-height: 1.8; color: var(--cd-text);
}
.ld-cms-body h2 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.025em;
  margin: 44px 0 18px; color: var(--cd-text);
  position: relative; padding-left: 18px;
  scroll-margin-top: 80px;
}
.ld-cms-body h2::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 5px; border-radius: 3px;
  background: var(--cd-gradient-primary);
}
.ld-cms-body h2:first-child { margin-top: 0; }
.ld-cms-body h3 {
  font-size: 21px; font-weight: 700; letter-spacing: -0.01em;
  margin: 32px 0 12px; color: var(--cd-primary);
  scroll-margin-top: 80px;
  display: flex; align-items: center; gap: 10px;
}
.ld-cms-body h3::before { content: '◆'; color: var(--cd-secondary); font-size: 14px; }
.ld-cms-body h4 {
  font-size: 16px; font-weight: 700;
  margin: 24px 0 10px; color: var(--cd-text);
}
.ld-cms-body p { margin-bottom: 18px; color: var(--cd-text); }
.ld-cms-body > p:first-of-type {
  font-size: 18.5px; line-height: 1.65;
  color: var(--cd-text);
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(4, 16, 124, 0.04), rgba(245, 158, 11, 0.04));
  border-left: 4px solid var(--cd-primary);
  border-radius: 0 10px 10px 0;
  margin-bottom: 28px;
}
.ld-cms-body ul, .ld-cms-body ol {
  margin: 14px 0 22px 0; padding-left: 4px; list-style: none;
}
.ld-cms-body ol { counter-reset: cms-counter; }
.ld-cms-body li {
  margin-bottom: 10px; padding-left: 32px;
  position: relative; color: var(--cd-text);
}
.ld-cms-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.25); border-radius: 50%;
}
.ld-cms-body ul li::after {
  content: ''; position: absolute; left: 5px; top: 16px;
  width: 8px; height: 4px;
  border-left: 2px solid #10b981; border-bottom: 2px solid #10b981;
  transform: rotate(-45deg);
}
.ld-cms-body ol li { counter-increment: cms-counter; }
.ld-cms-body ol li::before {
  content: counter(cms-counter);
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px;
  background: var(--cd-gradient-primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.ld-cms-body strong { color: var(--cd-primary); font-weight: 700; }
.ld-cms-body a {
  color: var(--cd-primary); text-decoration: underline;
  text-decoration-color: rgba(4, 16, 124, 0.3); text-underline-offset: 3px;
  font-weight: 500;
}
.ld-cms-body a:hover { text-decoration-color: var(--cd-primary); }
.ld-cms-body code {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 2px 8px; border-radius: 6px;
  font-size: 13px; color: var(--cd-primary);
  border: 1px solid var(--cd-border);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.ld-cms-body pre {
  background: #0f172a; color: #cbd5e1;
  padding: 18px 22px; border-radius: 12px;
  margin: 18px 0 26px; font-size: 13px; line-height: 1.6; overflow-x: auto;
}
.ld-cms-body blockquote {
  border-left: 4px solid var(--cd-secondary);
  padding: 16px 0 16px 24px; margin: 22px 0;
  color: var(--cd-text-muted); font-style: italic;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.05), transparent);
  border-radius: 0 8px 8px 0;
}
.ld-cms-body hr {
  border: none; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cd-border), transparent);
  margin: 36px 0;
}
.ld-cms-body table {
  width: 100%; border-collapse: collapse;
  margin: 22px 0; font-size: 14px;
  border: 1px solid var(--cd-border);
  border-radius: 12px; overflow: hidden;
}
.ld-cms-body th {
  background: var(--cd-bg-alt);
  padding: 12px 16px; text-align: left;
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--cd-text-muted);
  border-bottom: 1px solid var(--cd-border);
}
.ld-cms-body td { padding: 14px 16px; border-bottom: 1px solid var(--cd-border); }
.ld-cms-body tr:last-child td { border-bottom: none; }

.ld-cms-back {
  margin: 40px auto 0; max-width: 1080px;
  display: flex; gap: 12px; justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--cd-border);
  border-radius: 16px;
  box-shadow: var(--cd-shadow-sm);
}

@media (max-width: 900px) {
  .ld-cms-layout { grid-template-columns: 1fr; gap: 24px; }
  .ld-cms-toc { position: static; }
  .ld-cms-body { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .ld-cms-hero { padding: 60px 0 50px; }
  .ld-cms-body { padding: 28px 20px; border-radius: 16px; }
  .ld-cms-body h2 { font-size: 24px; padding-left: 14px; }
  .ld-cms-body h3 { font-size: 18px; }
}

/* ====================================
   TD-style CMS Page (clean & minimal)
   ==================================== */
/* ===== HERO — navy gradient, centered ===== */
.td-hero {
  position: relative;
  background: linear-gradient(135deg, #04107C 0%, #0b1f9e 50%, #04107C 100%);
  padding: 64px 0 72px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.td-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.td-hero-glow-1 {
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: rgba(245, 158, 11, 0.35);
}
.td-hero-glow-2 {
  bottom: -180px; left: -100px;
  width: 420px; height: 420px;
  background: rgba(99, 102, 241, 0.4);
}
.td-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
}
.td-hero > .ld-container { position: relative; z-index: 1; }

.td-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.td-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.td-hero-pill i { font-size: 13px; }
.td-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px;
}
.td-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 22px;
}
.td-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  flex-wrap: wrap;
  justify-content: center;
}
.td-meta-item {
  display: inline-flex; align-items: center; gap: 7px;
}
.td-meta-item i {
  color: #fbbf24;
  font-size: 14px;
}
.td-meta-item strong {
  color: #fff;
  font-weight: 600;
}

/* Body */
.td-body-section {
  padding: 56px 0 80px;
  background: #fff;
}

/* 2-column layout: left sidebar + main content */
.td-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.td-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cd-text, #0b1220);
  counter-reset: td-section;
  min-width: 0;
}

/* Top notice bar above the article body */
.td-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--cd-border, #e5e9f0);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.td-notice-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
}
.td-notice-text {
  flex: 1;
  font-size: 14px;
  color: var(--cd-text-muted, #5b6779);
  min-width: 220px;
}
.td-notice-text strong { color: var(--cd-text, #0b1220); font-weight: 600; }
.td-notice-actions { display: flex; gap: 8px; }
.td-notice-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: #f8fafc;
  border: 1px solid var(--cd-border, #e5e9f0);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cd-text, #0b1220);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.td-notice-btn:hover {
  background: #fff;
  border-color: var(--cd-primary, #04107C);
  color: var(--cd-primary, #04107C);
}
.td-notice-btn i { font-size: 14px; }

.td-body-inner {
  position: relative;
  background: #fff;
  border: 1px solid var(--cd-border, #e5e9f0);
  border-radius: 14px;
  padding: 32px 36px 28px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.td-body-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cd-primary, #04107C) 0%, #f59e0b 100%);
}

/* Lead paragraph */
.td-body > .td-body-inner > p:first-of-type,
.td-body .td-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cd-text-muted, #5b6779);
  margin: 24px 0 18px;
  font-weight: 400;
}

/* Headings — numbered with 2-color gradient left accent bar */
.td-body h2 {
  counter-increment: td-section;
  position: relative;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--cd-primary, #04107C);
  margin: 36px 0 16px;
  padding: 4px 0 4px 18px;
  scroll-margin-top: 80px;
}
.td-body h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f59e0b 0%, var(--cd-primary, #04107C) 100%);
}
.td-body h2::before {
  content: counter(td-section) ". ";
  color: var(--cd-primary, #04107C);
  font-weight: 800;
  margin-right: 4px;
}
.td-body h2:first-child { margin-top: 4px; }

.td-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cd-text, #0b1220);
  margin: 32px 0 10px;
}

.td-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--cd-text, #0b1220);
  margin: 24px 0 8px;
}

/* Paragraphs */
.td-body p {
  margin: 0 0 16px;
  color: var(--cd-text, #0b1220);
}
.td-body strong { font-weight: 700; color: var(--cd-text, #0b1220); }
.td-body em { font-style: italic; color: var(--cd-text-muted, #5b6779); }

/* Links */
.td-body a {
  color: var(--cd-primary, #04107C);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}
.td-body a:hover { color: #02084a; text-decoration-thickness: 2px; }

/* Lists — amber checkmark circles instead of default bullets */
.td-body ul,
.td-body ol {
  margin: 14px 0 22px;
  padding-left: 0;
  list-style: none;
}
.td-body ul li,
.td-body ol li {
  position: relative;
  padding-left: 34px;
  margin: 0 0 10px;
  line-height: 1.7;
}
.td-body ul li::before {
  content: "\F26E";  /* bi-check2 */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: #fef3c7;
  color: #d97706;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.td-body ol {
  counter-reset: td-olist;
}
.td-body ol li {
  counter-increment: td-olist;
}
.td-body ol li::before {
  content: counter(td-olist);
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 16, 124, 0.08);
  color: var(--cd-primary, #04107C);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.td-body li > ul,
.td-body li > ol { margin: 8px 0 4px; }

/* Code */
.td-body code {
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 14px;
  color: #b91c1c;
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  border: 1px solid #e2e8f0;
}
.td-body pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 18px 0;
  font-size: 13.5px;
  line-height: 1.6;
  overflow-x: auto;
}
.td-body pre code {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0;
}

/* Blockquote */
.td-body blockquote {
  border-left: 4px solid var(--cd-primary, #04107C);
  padding: 12px 0 12px 18px;
  margin: 20px 0;
  color: var(--cd-text-muted, #5b6779);
  font-style: normal;
  background: var(--cd-bg-alt, #f7f8fc);
  border-radius: 0 6px 6px 0;
}
.td-body blockquote p:last-child { margin-bottom: 0; }

/* HR */
.td-body hr {
  border: none;
  height: 1px;
  background: var(--cd-border, #e9ecf2);
  margin: 32px 0;
}

/* Tables — clean */
.td-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 14.5px;
  border: 1px solid var(--cd-border, #e9ecf2);
  border-radius: 8px;
  overflow: hidden;
}
.td-body th {
  background: var(--cd-bg-alt, #f7f8fc);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  color: var(--cd-text, #0b1220);
  border-bottom: 1px solid var(--cd-border, #e9ecf2);
}
.td-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cd-border, #e9ecf2);
  vertical-align: top;
}
.td-body tr:last-child td { border-bottom: none; }
.td-body tr:nth-child(even) td { background: #fafbfc; }

/* Bottom CTA section */
.td-bottom {
  max-width: 820px;
  margin: 56px 0 0;
  padding: 28px 32px;
  background: var(--cd-bg-alt, #f7f8fc);
  border: 1px solid var(--cd-border, #e9ecf2);
  border-radius: 12px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.td-bottom-help strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--cd-text, #0b1220);
  margin-bottom: 2px;
}
.td-bottom-help span {
  font-size: 13.5px;
  color: var(--cd-text-muted, #5b6779);
}
.td-bottom-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.td-body .td-link-btn,
.td-link-btn {
  display: inline-flex !important; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cd-text, #0b1220) !important;
  background: #fff;
  border: 1px solid var(--cd-border, #e9ecf2);
  text-decoration: none !important;
  transition: all 0.15s;
}
.td-body .td-link-btn:hover,
.td-link-btn:hover {
  border-color: var(--cd-primary, #04107C);
  color: var(--cd-primary, #04107C) !important;
}
.td-body .td-link-btn-primary,
.td-link-btn-primary {
  background: var(--cd-primary, #04107C);
  color: #fff !important;
  border-color: var(--cd-primary, #04107C);
}
.td-body .td-link-btn-primary:hover,
.td-link-btn-primary:hover {
  background: #02084a;
  color: #fff !important;
  border-color: #02084a;
}

/* Lead paragraph */
.td-body .td-lead {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--cd-text-muted, #5b6779);
  margin: 0 0 16px;
  font-weight: 400;
}

/* Callout box */
.td-body .td-callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--cd-border, #e5e9f0);
  border-left: 4px solid var(--cd-primary, #04107C);
  border-radius: 10px;
}
.td-body .td-callout strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--cd-primary, #04107C);
  margin-bottom: 6px;
}
.td-body .td-callout p {
  margin: 0;
  font-size: 14.5px;
  color: var(--cd-text-muted, #5b6779);
}

/* Pills (inline badges in tables/lists) */
.td-body .td-pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--cd-text, #0b1220);
  letter-spacing: 0.2px;
  text-transform: none;
  white-space: nowrap;
}
.td-body .td-pill-ok { background: #dcfce7; color: #166534; }
.td-body .td-pill-warn { background: #fef3c7; color: #92400e; }
.td-body .td-pill-err { background: #fee2e2; color: #991b1b; }

/* Status banner */
.td-body .td-status-banner {
  margin: 0 0 32px;
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid var(--cd-border, #e5e9f0);
}
.td-body .td-status-banner strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.td-body .td-status-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--cd-text-muted, #5b6779);
}
.td-body .td-status-ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.td-body .td-status-ok strong { color: #047857; }
.td-body .td-status-warn {
  background: #fffbeb;
  border-color: #fde68a;
}
.td-body .td-status-warn strong { color: #b45309; }
.td-body .td-status-err {
  background: #fef2f2;
  border-color: #fecaca;
}
.td-body .td-status-err strong { color: #b91c1c; }

/* td-table is mostly a marker — base .td-body table already styles it */
.td-body .td-table { font-size: 14px; }

/* ===== Left sidebar (sibling docs) ===== */
.td-aside {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.td-aside-card {
  background: #fff;
  border: 1px solid var(--cd-border, #e5e9f0);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}
.td-aside-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cd-text-muted, #5b6779);
  margin: 0 0 14px;
}
.td-aside-title i { color: #f59e0b; font-size: 14px; }
.td-aside-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.td-aside-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cd-text, #0b1220);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.td-aside-link-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9;
  border-radius: 7px;
  color: var(--cd-primary, #04107C);
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.td-aside-link-text { flex: 1; min-width: 0; }
.td-aside-link-check {
  color: #f59e0b;
  font-size: 16px;
  margin-left: auto;
}
.td-aside-link:hover {
  background: #f8fafc;
  color: var(--cd-primary, #04107C);
}
.td-aside-link:hover .td-aside-link-icon {
  background: rgba(4, 16, 124, 0.08);
}
.td-aside-link.is-active {
  background: var(--cd-primary, #04107C);
  color: #fff;
}
.td-aside-link.is-active .td-aside-link-icon {
  background: #f59e0b;
  color: #fff;
}
.td-aside-link.is-active:hover {
  background: #02084a;
}

.td-aside-help {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
  text-align: center;
}
.td-aside-help-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #f59e0b;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  margin: 0 auto 10px;
}
.td-aside-help strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 4px;
}
.td-aside-help p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #78350f;
}
.td-aside-help p a {
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
}

/* Tablet & mobile */
@media (max-width: 980px) {
  .td-layout { grid-template-columns: 1fr; gap: 32px; }
  .td-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .td-aside-card { flex: 1 1 280px; }
}

@media (max-width: 700px) {
  .td-hero { padding: 36px 0 28px; }
  .td-body-section { padding: 36px 0 60px; }
  .td-body { font-size: 15.5px; }
  .td-body h2 { font-size: 19px; margin-top: 36px; padding-bottom: 10px; }
  .td-body h3 { font-size: 17px; }
  .td-body > p:first-of-type { font-size: 16.5px; }
  .td-body .td-lead { font-size: 16px; }
  .td-body .td-callout { padding: 16px 18px; }
  .td-bottom { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
  .td-bottom-actions { width: 100%; }
  .td-link-btn { flex: 1; justify-content: center; }
  .td-aside { flex-direction: column; }
}

/* When inner full-width sections (ab-*, ct-*) live inside a CMS body card,
   strip their outer padding & container width so they flow naturally. */
.ab-content-card > section,
.ct-content-card > section {
  padding: 24px 0 !important;
  background: transparent !important;
}
.ab-content-card > section:first-child,
.ct-content-card > section:first-child {
  padding-top: 0 !important;
}
.ab-content-card > section:last-child,
.ct-content-card > section:last-child {
  padding-bottom: 0 !important;
}
.ab-content-card > section > .ld-container,
.ct-content-card > section > .ld-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================================
   Branded confirm / alert / prompt dialogs
   ============================================================ */
.cd-dlg-backdrop {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0;
  transition: opacity 0.18s ease-out;
}
.cd-dlg-backdrop.is-visible { opacity: 1; }
.cd-dlg {
  position: relative; width: 100%; max-width: 440px;
  background: #fff; border-radius: 5px;
  padding: 28px 26px 22px; text-align: center;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.35);
  transform: scale(0.92) translateY(8px);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.cd-dlg-backdrop.is-visible .cd-dlg { transform: scale(1) translateY(0); }
.cd-dlg::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #04107C 0%, #f59e0b 100%);
}
.cd-dlg-icon {
  width: 56px; height: 56px; border-radius: 50% !important;
  display: flex; align-items: center; justify-content: center;
  margin: 6px auto 14px; font-size: 26px;
  background: rgba(4, 16, 124, 0.1); color: #04107C;
}
.cd-dlg-danger .cd-dlg-icon { background: #fee2e2; color: #b91c1c; }
.cd-dlg-success .cd-dlg-icon { background: #d1fae5; color: #047857; }
.cd-dlg-warning .cd-dlg-icon { background: #fef3c7; color: #b45309; }
.cd-dlg-info .cd-dlg-icon { background: rgba(4, 16, 124, 0.1); color: #04107C; }
.cd-dlg-title { font-size: 18px; font-weight: 700; color: #0b1220; margin: 0 0 6px; letter-spacing: -0.01em; }
.cd-dlg-message { font-size: 14.5px; line-height: 1.55; color: #5b6779; margin: 0 0 18px; }
.cd-dlg-input {
  width: 100%; padding: 10px 13px; border: 1.5px solid #e5e9f0;
  font-size: 14px; margin: 0 0 16px; background: #fff; color: #0b1220; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cd-dlg-input:focus { border-color: #04107C; box-shadow: 0 0 0 3px rgba(4, 16, 124, 0.12); }
.cd-dlg-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cd-dlg-btn {
  flex: 1; min-width: 100px; padding: 11px 18px;
  font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s; outline: none;
}
.cd-dlg-btn:active { transform: translateY(1px); }
.cd-dlg-btn-cancel { background: #fff; color: #0b1220; border-color: #e5e9f0; }
.cd-dlg-btn-cancel:hover { background: #f8fafc; border-color: #cbd5e1; }
.cd-dlg-btn-confirm { background: #04107C; color: #fff; border-color: #04107C; }
.cd-dlg-btn-confirm:hover { background: #02084a; }
.cd-dlg-btn-danger { background: #b91c1c; border-color: #b91c1c; }
.cd-dlg-btn-danger:hover { background: #991b1b; }
.cd-dlg-btn-success { background: #047857; border-color: #047857; }
.cd-dlg-btn-success:hover { background: #065f46; }
.cd-dlg-btn-warning { background: #b45309; border-color: #b45309; }
.cd-dlg-btn-warning:hover { background: #92400e; }
@media (max-width: 480px) {
  .cd-dlg { padding: 22px 18px 18px; }
  .cd-dlg-icon { width: 48px; height: 48px; font-size: 22px; }
  .cd-dlg-title { font-size: 16px; }
  .cd-dlg-message { font-size: 13.5px; }
  .cd-dlg-actions { flex-direction: column-reverse; }
}

/* ============================================================
   Global top progress bar (CD loader)
   Navy → amber gradient. Shown during navigation, form submits,
   fetch/XHR. Skips chat composer + [data-cd-no-loading] elements.
   ============================================================ */
#cd-global-loader {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}
#cd-global-loader .cd-loader-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04107C 0%, #4338ca 35%, #f59e0b 100%);
  transform: translateX(-100%);
  transition: transform 0.32s ease-out, opacity 0.2s ease-out;
  opacity: 0;
  box-shadow:
    0 0 8px rgba(245, 158, 11, 0.55),
    0 0 4px rgba(4, 16, 124, 0.45);
}
#cd-global-loader .cd-loader-peg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  animation: cdLoaderShimmer 1s linear infinite;
}
@keyframes cdLoaderShimmer {
  0% { transform: translateX(-40px); }
  100% { transform: translateX(40px); }
}

/* ============================================================
   Global border-radius normalization
   Every rounded element across the system uses 5px.
   ============================================================ */
*,
*::before,
*::after {
  border-radius: 5px !important;
}
