:root {
  --cl-navy: #0a2540;
  --cl-navy-2: #0e3a5f;
  --cl-teal: #0d9488;
  --cl-teal-2: #14b8a6;
  --cl-white: #fff;
  --cl-gray: #f4f7fb;
  --cl-line: #d7e0ea;
  --cl-text: #1b2b41;
  --cl-muted: #3d4f66;
  --cl-radius: 16px;
  --cl-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
}
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--cl-text);
  background: var(--cl-white);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.6;
}
.wp-site-blocks { padding: 0 !important; }
a { color: var(--cl-teal); }
img { max-width: 100%; height: auto; }
.cl-wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.cl-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cl-line);
}
.cl-header-inner, .cl-footer-grid, .cl-hero-grid, .cl-cards, .cl-split {
  display: grid; gap: 24px;
}
.cl-header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
}
.cl-logo {
  font-weight: 800; color: var(--cl-navy); text-decoration: none; font-size: 1.15rem; letter-spacing: -.02em;
}
.cl-logo span { color: var(--cl-teal); }
.cl-nav { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.cl-nav a { color: var(--cl-navy); text-decoration: none; font-weight: 600; font-size: .86rem; }
.cl-nav a:hover { color: var(--cl-teal); }
.cl-actions { display: flex; gap: 10px; align-items: center; }
.cl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 0; cursor: pointer; font-family: inherit;
}
.cl-btn-primary { background: var(--cl-teal); color: #fff; }
.cl-btn-primary:hover { background: #0b7c73; color: #fff; }
.cl-btn-ghost { background: transparent; color: var(--cl-navy); border: 1px solid var(--cl-line); }
.cl-btn-navy { background: var(--cl-navy); color: #fff; }
.cl-menu-btn {
  display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--cl-line);
  background: #fff; border-radius: 12px; font-weight: 700;
}
.cl-hero {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
  padding: 56px 0 40px;
}
.cl-hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.cl-kicker { color: var(--cl-teal); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { color: var(--cl-navy); letter-spacing: -.03em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 10px 0 16px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cl-lead, .cl-muted { color: var(--cl-muted); }
.cl-checks { display: flex; flex-wrap: wrap; gap: 10px 16px; padding: 0; list-style: none; margin: 20px 0 28px; }
.cl-checks li { font-weight: 650; color: var(--cl-navy); }
.cl-checks li::before { content: "✓ "; color: var(--cl-teal); font-weight: 800; }
.cl-mock {
  background: var(--cl-navy); color: #d7e8f5; border-radius: 20px; padding: 18px;
  box-shadow: var(--cl-shadow); min-height: 280px;
}
.cl-mock-bar { height: 10px; display: flex; gap: 6px; margin-bottom: 14px; }
.cl-mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #3d5b78; }
.cl-mock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cl-mock-card { background: #123251; border-radius: 12px; padding: 12px; }
.cl-mock-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: #8fb4d2; }
.cl-badge { display: inline-block; margin-top: 12px; font-size: .75rem; background: #0d9488; color: #fff; padding: 4px 8px; border-radius: 999px; }
.cl-section { padding: 64px 0; }
.cl-section-alt { background: var(--cl-gray); }
.cl-cards { grid-template-columns: repeat(4, 1fr); }
.cl-card, .cl-problem li {
  background: #fff; border: 1px solid var(--cl-line); border-radius: var(--cl-radius); padding: 20px;
}
.cl-card h3, .cl-page h3 { margin-top: 0; }
.cl-icon { width: 36px; height: 36px; border-radius: 10px; background: #e6f7f5; color: var(--cl-teal); display: grid; place-items: center; font-weight: 800; margin-bottom: 10px; }
.cl-cta-band {
  background: var(--cl-navy); color: #fff; border-radius: 24px; padding: 36px; display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.cl-cta-band h2, .cl-cta-band p { color: #fff; }
.cl-page { padding: 36px 0 72px; }
.cl-page .cl-wrap { width: min(860px, calc(100% - 32px)); }
.cl-page-wide .cl-wrap { width: min(1160px, calc(100% - 32px)); }
.cl-table-wrap { overflow-x: auto; }
table.cl-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.cl-table th, .cl-table td { border-bottom: 1px solid var(--cl-line); padding: 12px; text-align: left; }
.cl-table th { background: var(--cl-gray); color: var(--cl-navy); }
.cl-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cl-plan { border: 1px solid var(--cl-line); border-radius: 20px; padding: 24px; background: #fff; }
.cl-plan.featured { border-color: var(--cl-teal); box-shadow: var(--cl-shadow); }
.cl-form, .cl-field { display: grid; gap: 8px; }
.cl-form { gap: 14px; }
.cl-form input, .cl-form textarea, .cl-form select {
  min-height: 44px; border: 1px solid var(--cl-line); border-radius: 12px; padding: 10px 12px; font: inherit;
}
.cl-checkset { display: grid; gap: 8px; border: 1px solid var(--cl-line); border-radius: 12px; padding: 12px; }
.cl-hp { position: absolute; left: -9999px; }
.cl-alert { padding: 12px 14px; border-radius: 12px; }
.cl-alert-ok { background: #e6f7f5; color: #0a2540; }
.cl-alert-err { background: #fde8e8; color: #7a1f1f; }
.cl-footer { background: var(--cl-navy); color: #d5e4f2; padding: 48px 0 24px; }
.cl-footer a { color: #fff; text-decoration: none; }
.cl-footer-grid { grid-template-columns: repeat(5, 1fr); }
.cl-footer h3 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.cl-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.cl-copy { border-top: 1px solid #1c4468; margin-top: 28px; padding-top: 16px; font-size: .9rem; }
.cl-wa {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  background: #0d9488; color: #fff; min-height: 48px; padding: 12px 16px; border-radius: 999px; text-decoration: none; font-weight: 700;
}
.cl-faq details { border-bottom: 1px solid var(--cl-line); padding: 12px 0; }
.cl-faq summary { cursor: pointer; font-weight: 700; color: var(--cl-navy); }
.cl-problem { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; padding: 0; }
.cl-pillars { grid-template-columns: repeat(4, 1fr); }
.cl-timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.cl-timeline li { border-left: 3px solid var(--cl-teal); padding: 8px 0 8px 16px; }
.cl-videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cl-video { margin: 0; }
.cl-video-frame {
  aspect-ratio: 16/9; border-radius: 16px; background: linear-gradient(160deg, #0a2540, #0e3a5f);
  color: #fff; display: grid; place-items: center; font-size: 2rem;
}
.cl-video figcaption { margin-top: 8px; font-weight: 700; color: var(--cl-navy); }
.cl-video figcaption span { display: block; font-weight: 500; color: var(--cl-muted); font-size: .85rem; }
@media (max-width: 1100px) {
  .cl-header-inner { grid-template-columns: auto auto; }
  .cl-nav, .cl-actions { display: none; }
  .cl-header.is-open .cl-nav, .cl-header.is-open .cl-actions {
    display: flex; flex-direction: column; align-items: stretch; grid-column: 1 / -1; padding-bottom: 16px;
  }
  .cl-menu-btn { display: inline-flex; justify-content: center; align-items: center; }
}
@media (max-width: 980px) {
  .cl-hero-grid, .cl-cards, .cl-plans, .cl-footer-grid, .cl-problem, .cl-pillars, .cl-videos { grid-template-columns: 1fr; }
  .cl-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cl-cards, .cl-videos { grid-template-columns: 1fr; }
}
