:root {
    --primary-navy: #0B2545;
    --primary-orange: #EE7402;
    --bg-orange-light: #FFF8EE;
    --card-bg: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --blue-accent: #1E40AF;
    /* Uniform scale for the hub diagram below its native 1100px design width.
       JS (clients1.js) overrides this with an exact fit-to-width value;
       these stepped defaults just avoid a flash of oversized content before
       JS runs (or if it doesn't run at all). */
    --hub-scale: 1;
  }

  @media (max-width: 1100px) { :root { --hub-scale: 0.85; } }
  @media (max-width: 860px)  { :root { --hub-scale: 0.68; } }
  @media (max-width: 660px)  { :root { --hub-scale: 0.5; } }
  @media (max-width: 480px)  { :root { --hub-scale: 0.36; } }
  @media (max-width: 380px)  { :root { --hub-scale: 0.32; } }

  /* Base Section Structure */
  .hub-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Section Header */
  .hub-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .hub-header .sub-title {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .hub-header h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin: 10px 0;
    font-weight: 800;
  }
  
  .hub-header h2 span {
    color: var(--primary-orange);
  }
  
  .hub-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  /* Hub Canvas: reserves the correct (scaled) space in normal document flow. */
  .hub-canvas {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: calc(580px * var(--hub-scale));
    margin-bottom: 40px;
    overflow: hidden;
  }

  /* Hub Container: kept at its native 1100x580 design size always, so the
     absolute-positioned hexagons/cards inside never need per-breakpoint
     position math. It's scaled down as one unit to fit .hub-canvas. */
  .hub-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1100px;
    height: 580px;
    transform: translateX(-50%) scale(var(--hub-scale));
    transform-origin: top center;
  }
  
  /* SVG Connection Lines Canvas */
  .hub-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* Kept above background but below active interactive nodes */
  }
  
  /* Dotted Lines Style */
  .hub-line {
    stroke: #94A3B8;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
  }
  
  /* Center Hexagon Styling */
  .hex-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 195px;
    background-color: var(--primary-navy);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hex-center .hex-inner {
    text-align: center;
    color: #fff;
  }
  
  .hub-center-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
  }
  
  .center-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  
  /* Outer Hexagons General Style */
  .hex-border {
    width: 110px;
    height: 125px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 6;
  }
  
  .hex-border:hover {
    transform: scale(1.05);
  }
  
  /* Border Trick using Clip-Path pseudo elements */
  .hex-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  
  .hex-border.blue::before { background-color: var(--blue-accent); }
  .hex-border.orange::before { background-color: var(--primary-orange); }
  
  .hex-border .hex-inner {
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background-color: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }
  
  .hex-border.blue .hex-inner i { color: var(--blue-accent); }
  .hex-border.orange .hex-inner i { color: var(--primary-orange); }
  
  /* Position Container Units */
  .hub-item {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 6;
  }
  
  /* Cards Alignment */
  .info-card {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
    width: 280px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .info-card .num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
  }
  
  .info-card h3 {
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
  }
  
  .info-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  .dashed-line {
    width: 45px;
    height: 2px;
    border-top: 2px dashed #CBD5E1;
  }
  
  /* Absolute Positioning for 6 Outer Points */
  
  /* Top Left - 01 */
  .pos-top-left {
    top: 30px;
    left: 110px;
  }
  
  /* Top Right - 02 */
  .pos-top-right {
    top: 30px;
    right: 110px;
  }
  
  /* Middle Left - 03 */
  .pos-mid-left {
    top: 225px;
    left: 20px;
  }
  
  /* Middle Right - 04 */
  .pos-mid-right {
    top: 225px;
    right: 20px;
  }
  
  /* Bottom Left - 05 */
  .pos-bot-left {
    bottom: 30px;
    left: 110px;
  }
  
  /* Bottom Right - 06 */
  .pos-bot-right {
    bottom: 30px;
    right: 110px;
  }
  
  /* Bottom CTA Banner */
  .cta-banner {
    width: 100%;
    background-color: var(--bg-orange-light);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #FFEAD2;
  }
  
  .cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .phone-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  .cta-text h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
  }
  
  .cta-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .cta-buttons {
    display: flex;
    gap: 12px;
  }
  
  .cta-banner .btn {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .cta-banner .btn-primary {
    background-color: var(--primary-navy);
    color: #fff;
  }

  .cta-banner .btn-primary:hover {
    background-color: #163761;
  }

  .cta-banner .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
  }

  .cta-banner .btn-secondary:hover {
    background-color: rgba(11, 37, 69, 0.05);
  }
  
  /* Responsive adjustments for the CTA banner (unrelated to the hub diagram,
     which stays radial at every width via the --hub-scale transform above). */
  @media (max-width: 992px) {
    .cta-banner {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .cta-left {
      flex-direction: column;
    }
  }