.elementor-11202 .elementor-element.elementor-element-5fd6fb4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a668470 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --navy: #0C2340;
    --blue: #1A5FAD;
    --blue-light: #2E7DD6;
    --blue-pale: #E8F2FC;
    --blue-mid: #C2DAFA;
    --gold: #C8942A;
    --gold-light: #F5E6C0;
    --text: #1A1A2E;
    --text-muted: #4A5568;
    --text-light: #718096;
    --bg: #FFFFFF;
    --bg-subtle: #F7F9FC;
    --bg-section: #F0F5FB;
    --border: #DDE5F0;
    --border-strong: #B8CCDF;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(12,35,64,0.08);
    --shadow-md: 0 4px 16px rgba(12,35,64,0.10);
    font-size: 16px;
  }
 
  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
  }
 
  .wp-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 60px;
  }
 
  /* === TYPOGRAPHY === */
  h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    color: var(--navy);
    line-height: 1.3;
  }
 
  p {
    margin-bottom: 1.1rem;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
  }
 
  strong { color: var(--text); font-weight: 700; }
 
  a { color: var(--blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
 
  /* === HERO === */
  .article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 60%, #1A5FAD 100%);
    border-radius: var(--radius-lg);
    padding: 44px 40px 40px;
    margin: 32px 0 40px;
    position: relative;
    overflow: hidden;
  }
 
  .article-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
 
  .article-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 20%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(200,148,42,0.07);
  }
 
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,148,42,0.15);
    border: 1px solid rgba(200,148,42,0.3);
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 18px;
  }
 
  .article-hero h1 {
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    font-weight: 700;
  }
 
  .hero-lead {
    color: rgba(255,255,255,0.80);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
 
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
 
  .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    padding: 4px 12px;
  }
 
  /* === TOC === */
  .toc-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 0 0 40px;
  }
 
  .toc-title {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
  }
 
  .toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
 
  .toc-list li a {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 7px;
  }
 
  .toc-list li a::before {
    content: '→';
    font-size: 12px;
    color: var(--text-light);
    flex-shrink: 0;
  }
 
  /* === SECTION HEADERS === */
  .sec-label {
    font-family: 'Arial', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
  }
 
  .section-h2 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-pale);
  }
 
  .section-h3 {
    font-size: 16px;
    color: var(--navy);
    margin: 20px 0 8px;
  }
 
  .section-block {
    margin-bottom: 48px;
  }
 
  /* === INSIGHT BOX === */
  .insight-box {
    background: var(--blue-pale);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 16px 20px;
    margin: 24px 0;
  }
 
  .insight-label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
  }
 
  .insight-box p {
    font-size: 14.5px;
    color: #1A3A6B;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
  }
 
  /* === KPI CARDS === */
  .kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0 24px;
  }
 
  @media (max-width: 600px) {
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
  }
 
  .kpi-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    text-align: center;
  }
 
  .kpi-val {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    margin-bottom: 5px;
  }
 
  .kpi-desc {
    font-family: 'Arial', sans-serif;
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.4;
  }
 
  /* === PAIN CARDS === */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
  }
 
  @media (max-width: 640px) {
    .pain-grid { grid-template-columns: 1fr 1fr; }
  }
 
  @media (max-width: 400px) {
    .pain-grid { grid-template-columns: 1fr; }
  }
 
  .pain-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    border-top: 3px solid var(--blue);
  }
 
  .pain-num {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
 
  .pain-title {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
 
  .pain-desc {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }
 
  /* === TABLE === */
  .table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
 
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 13.5px;
  }
 
  thead tr {
    background: var(--navy);
  }
 
  thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
  }
 
  tbody tr {
    border-bottom: 1px solid var(--border);
  }
 
  tbody tr:last-child {
    border-bottom: none;
  }
 
  tbody tr:nth-child(even) {
    background: var(--bg-subtle);
  }
 
  tbody td {
    padding: 12px 16px;
    color: var(--text-muted);
    vertical-align: top;
    line-height: 1.55;
  }
 
  tbody td:first-child {
    font-weight: 700;
    color: var(--navy);
  }
 
  .td-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 3px;
  }
 
  /* === STRENGTH CARDS === */
  .strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
  }
 
  @media (max-width: 640px) {
    .strength-grid { grid-template-columns: 1fr 1fr; }
  }
 
  .str-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
  }
 
  .str-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
  }
 
  .str-title {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
 
  .str-desc {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }
 
  /* === USE CASE CARDS === */
  .use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
  }
 
  @media (max-width: 640px) {
    .use-grid { grid-template-columns: 1fr 1fr; }
  }
 
  .use-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 14px;
  }
 
  .use-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
  }
 
  .use-name {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
 
  .use-reason {
    font-family: 'Arial', sans-serif;
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.5;
  }
 
  /* === CHECKLIST === */
  .ck-group {
    margin-bottom: 20px;
  }
 
  .ck-group-title {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--bg-subtle);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    display: inline-block;
  }
 
  .ck-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
 
  .ck-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Arial', sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 14px;
  }
 
  .ck-item::before {
    content: '☐';
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  /* === DIVIDER === */
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
  }
 
  /* === CTA === */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 100%);
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
  }
 
  .cta-section::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(200,148,42,0.08);
  }
 
  .cta-section h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
 
  .cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }
 
  .cta-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
 
  .cta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 12px 16px;
  }
 
  .cta-item-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  .cta-item-title {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
 
  .cta-item-desc {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
  }
 
  .cta-footer {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 18px;
    position: relative;
    z-index: 1;
  }
 
  /* === FOOTNOTE === */
  .article-footnote {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 16px;
    font-style: italic;
  }/* End custom CSS */