/* OfficeRnD Calculator — all selectors scoped under .officernd-calc */

  
  @font-face {
    font-family: 'Gilroy';
    src: url('https://www.officernd.com/wp-content/themes/officernd/assets/fonts/CentraleSans/CentraleSans-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gilroy';
    src: url('https://www.officernd.com/wp-content/themes/officernd/assets/fonts/CentraleSans/CentraleSans-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gilroy';
    src: url('https://www.officernd.com/wp-content/themes/officernd/assets/fonts/CentraleSans/CentraleSans-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gilroy';
    src: url('https://www.officernd.com/wp-content/themes/officernd/assets/fonts/CentraleSans/CentraleSans-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
  }

  
  .officernd-calc {
    
    --bg: #f2f5f7;              
    --bg-card: #ffffff;          
    --bg-card-soft: #f5f7f9;     
    --bg-near-white: #fbfcfd;
    --bg-blue-tint: #e5edff;
    --bg-blue-light: #e7f0ff;
    --bg-mint-tint: #dcf9f6;

    
    --ink: #1a2033;              
    --ink-body: #232b36;         
    --ink-soft: #434b5a;         
    --ink-faint: #8c95a2;        
    --line: #c1c5cf;             
    --line-soft: #e5e8ee;        

    
    --primary: #0039d9;
    --primary-hover: #1449dc;
    --primary-dark: #001b66;
    --link: #063fd1;
    --navy: #032373;

    
    --teal: #007a6e;
    --teal-hover: #0f6e66;
    --teal-bright: #00cdb9;
    --success: #00d358;
    --coral: #ff5656;
    --coral-dark: #a33737;
    --pink: #da4567;

    
    --font-sans: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    
    --shadow-card: 0 1px 2px rgba(3, 35, 115, 0.04), 0 4px 16px rgba(3, 35, 115, 0.04);
    --shadow-lift: 0 4px 24px rgba(3, 35, 115, 0.08);
  }

  .officernd-calc * { box-sizing: border-box; margin: 0; padding: 0; }
  .officernd-calc { scroll-behavior: smooth; }

  .officernd-calc {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink-body);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant-ligatures: no-common-ligatures;
  }

  
  .officernd-calc .page { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  .officernd-calc header.topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-soft);
    gap: 24px;
  }
  .officernd-calc .brand {
    display: flex; align-items: center; gap: 12px;
  }
  .officernd-calc .brand img { height: 24px; display: block; }
  .officernd-calc .brand .product-tag {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 5px 10px;
    background: var(--bg-blue-light);
    color: var(--primary);
    border-radius: 100px;
  }
  .officernd-calc .topbar nav { display: flex; gap: 28px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
  .officernd-calc .topbar nav a {
    color: inherit; text-decoration: none;
    transition: color 0.2s;
  }
  .officernd-calc .topbar nav a:hover { color: var(--primary); }
  .officernd-calc .topbar .pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--ink-soft);
    background: var(--bg-card);
  }

  
  .officernd-calc .hero { padding: 64px 0 28px; max-width: 820px; }
  .officernd-calc .hero .kicker {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--primary); margin-bottom: 18px; font-weight: 700;
  }
  .officernd-calc .hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .hero h1 .accent {
    background: linear-gradient(90deg, var(--primary) 0%, var(--teal-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
  }
  .officernd-calc .hero p.lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 620px;
    line-height: 1.55;
    font-weight: 400;
  }

  
  .officernd-calc .mode-toggle {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    padding: 5px;
    margin-top: 32px;
    position: relative;
    box-shadow: var(--shadow-card);
  }
  .officernd-calc .mode-toggle button {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 100px;
    cursor: pointer;
    color: var(--ink-soft);
    transition: color 0.25s;
    position: relative;
    z-index: 1;
    white-space: nowrap;
  }
  .officernd-calc .mode-toggle button.active { color: #ffffff; }
  .officernd-calc .mode-toggle .slider {
    position: absolute;
    top: 5px; bottom: 5px;
    background: var(--primary);
    border-radius: 100px;
    transition: all 0.32s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 0;
  }
  .officernd-calc .mode-desc {
    margin-top: 14px;
    color: var(--ink-faint);
    font-size: 14px;
    font-weight: 400;
  }

  
  .officernd-calc .calc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 28px;
    margin: 40px 0 56px;
  }
  @media (max-width: 900px) {
    .officernd-calc .calc { grid-template-columns: 1fr; }
    .officernd-calc .page { padding: 0 20px; }
    .officernd-calc .hero { padding: 40px 0 20px; }
    .officernd-calc .topbar nav { display: none; }
  }

  .officernd-calc .card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-card);
  }
  .officernd-calc .card-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .card-sub {
    font-size: 14px;
    color: var(--ink-faint);
    margin-bottom: 22px;
  }

  
  .officernd-calc .row { margin-bottom: 22px; }
  .officernd-calc .row:last-child { margin-bottom: 0; }
  .officernd-calc .label {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 13px; font-weight: 600;
    color: var(--ink); margin-bottom: 10px;
  }
  .officernd-calc .label .help {
    font-size: 12px; color: var(--ink-faint); font-weight: 500;
  }
  .officernd-calc .label .help .v { color: var(--primary); font-weight: 700; }
  .officernd-calc .hint {
    font-size: 12px; color: var(--ink-faint);
    margin-top: 6px;
  }

  .officernd-calc input[type="number"] {
    width: 100%;
    background: var(--bg-card-soft);
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    transition: border-color 0.15s, background 0.15s;
  }
  .officernd-calc input[type="number"]:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(0, 57, 217, 0.12);
  }
  .officernd-calc input[type="number"]::-webkit-inner-spin-button, .officernd-calc input[type="number"]::-webkit-outer-spin-button { opacity: 0.4; }

  
  .officernd-calc input[type="range"] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px;
    background: linear-gradient(to right, var(--primary) var(--p, 50%), var(--line-soft) var(--p, 50%));
    border-radius: 100px; outline: none;
    margin-top: 6px;
    cursor: pointer;
  }
  .officernd-calc input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--bg-card);
    cursor: pointer; border: 2px solid var(--primary);
    box-shadow: 0 2px 6px rgba(0, 57, 217, 0.25);
    transition: transform 0.15s;
  }
  .officernd-calc input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
  .officernd-calc input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--bg-card); cursor: pointer;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 6px rgba(0, 57, 217, 0.25);
  }

  
  .officernd-calc .chips {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .officernd-calc .chip {
    background: var(--bg-card-soft);
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.18s;
    font-family: var(--font-sans);
  }
  .officernd-calc .chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-card);
  }
  .officernd-calc .chip.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 57, 217, 0.18);
  }

  
  .officernd-calc .num-with-unit {
    display: flex; align-items: stretch;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card-soft);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .officernd-calc .num-with-unit:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 57, 217, 0.12);
  }
  .officernd-calc .num-with-unit input {
    border: none; background: transparent;
    flex: 1; box-shadow: none !important;
  }
  .officernd-calc .num-with-unit input:focus { background: transparent; }
  .officernd-calc .num-with-unit .unit {
    padding: 11px 14px;
    background: var(--bg-card);
    border-left: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    display: flex; align-items: center;
  }

  
  .officernd-calc .toggle-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px;
    background: var(--bg-blue-light);
    border-radius: 12px;
    border: 1px solid rgba(0, 57, 217, 0.12);
    gap: 14px;
  }
  .officernd-calc .toggle-row .tr-meta { flex: 1; }
  .officernd-calc .toggle-row .tr-title {
    font-size: 14px; font-weight: 600; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
  }
  .officernd-calc .toggle-row .tr-sub {
    font-size: 12.5px; color: var(--ink-soft); margin-top: 4px;
    line-height: 1.45;
  }
  .officernd-calc .toggle-row .badge {
    background: var(--primary);
    color: #ffffff;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 3px 8px; border-radius: 100px;
  }

  .officernd-calc .switch {
    position: relative;
    width: 42px; height: 24px;
    background: var(--line); border-radius: 100px;
    cursor: pointer; transition: background 0.22s;
    flex-shrink: 0;
  }
  .officernd-calc .switch::after {
    content: ''; position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.22s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  }
  .officernd-calc .switch.on { background: var(--primary); }
  .officernd-calc .switch.on::after { transform: translateX(18px); }

  
  .officernd-calc .tools-row {
    display: flex; gap: 8px;
    padding-bottom: 22px; margin-bottom: 22px;
    border-bottom: 1px solid var(--line-soft);
    flex-wrap: wrap;
  }
  .officernd-calc .tool-group {
    display: inline-flex; background: var(--bg-card-soft);
    border: 1px solid var(--line-soft); border-radius: 100px;
    padding: 3px;
  }
  .officernd-calc .tool-group button {
    background: transparent; border: none;
    padding: 7px 14px; font-size: 12.5px;
    color: var(--ink-soft);
    border-radius: 100px; cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: all 0.18s;
  }
  .officernd-calc .tool-group button.active {
    background: var(--primary); color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 57, 217, 0.2);
  }

  
  .officernd-calc .advanced-toggle {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; color: var(--primary);
    font-weight: 600;
    transition: opacity 0.15s;
  }
  .officernd-calc .advanced-toggle:hover { opacity: 0.75; }
  .officernd-calc .advanced-toggle .caret {
    width: 14px; height: 14px;
    transition: transform 0.25s;
  }
  .officernd-calc .advanced-toggle.open .caret { transform: rotate(180deg); }
  .officernd-calc .advanced-content {
    overflow: hidden; max-height: 0;
    transition: max-height 0.3s ease;
  }
  .officernd-calc .advanced-content.open { max-height: 800px; padding-top: 22px; }

  
  .officernd-calc .results-card {
    position: relative;
    overflow: hidden;
  }
  .officernd-calc .results-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 280px; height: 280px;
    background: radial-gradient(circle at 50% 50%, rgba(34, 64, 208, 0.10), rgba(72, 193, 185, 0.05) 40%, transparent 70%);
    pointer-events: none;
  }
  .officernd-calc .results-card > * { position: relative; }

  .officernd-calc .hero-metric {
    margin: 4px 0 28px;
    position: relative;
  }
  .officernd-calc .hero-metric .hm-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--ink-faint); margin-bottom: 10px;
    font-weight: 700;
  }
  .officernd-calc .hero-metric .hm-value {
    font-family: var(--font-sans);
    font-size: clamp(44px, 6.5vw, 64px);
    line-height: 1; letter-spacing: -0.03em;
    color: var(--ink);
    font-weight: 700;
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .hero-metric .hm-value .unit {
    font-size: 0.45em; color: var(--ink-faint); font-family: var(--font-sans);
    font-weight: 500; margin-left: 8px; letter-spacing: -0.01em;
  }
  .officernd-calc .hero-metric .hm-sub {
    margin-top: 12px;
    font-size: 14px; color: var(--ink-soft);
    font-weight: 500;
  }

  
  .officernd-calc .breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--line-soft);
  }
  .officernd-calc .bd-cell {
    background: var(--bg-card);
    padding: 18px;
  }
  .officernd-calc .bd-label {
    font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-faint); margin-bottom: 6px;
    font-weight: 700;
  }
  .officernd-calc .bd-value {
    font-family: var(--font-sans);
    font-size: 26px;
    line-height: 1.1;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .bd-value .unit-suffix {
    font-size: 0.55em; color: var(--ink-faint); font-weight: 500;
    margin-left: 2px;
  }
  .officernd-calc .bd-sub {
    font-size: 12px; color: var(--ink-faint); margin-top: 5px;
    font-weight: 500;
  }

  
  .officernd-calc .peak-viz {
    margin: 0 0 24px;
    padding: 18px;
    background: var(--bg-near-white);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
  }
  .officernd-calc .peak-viz-title {
    font-size: 13.5px; font-weight: 700; margin-bottom: 4px;
    display: flex; align-items: center; gap: 8px;
    color: var(--ink);
  }
  .officernd-calc .peak-viz-sub {
    font-size: 12.5px; color: var(--ink-faint); margin-bottom: 16px;
    line-height: 1.5;
  }
  .officernd-calc .peak-bars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    align-items: end;
    height: 80px;
  }
  .officernd-calc .peak-bar-col {
    display: flex; flex-direction: column;
    align-items: center; height: 100%;
    justify-content: flex-end;
  }
  .officernd-calc .peak-bar {
    width: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: height 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
  }
  .officernd-calc .peak-bar.flat { background: var(--line); }
  .officernd-calc .peak-bar-label {
    font-size: 10px; color: var(--ink-faint);
    margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 600;
  }
  .officernd-calc .peak-legend {
    display: flex; gap: 18px; margin-top: 14px;
    font-size: 11.5px; color: var(--ink-soft); font-weight: 500;
    flex-wrap: wrap;
  }
  .officernd-calc .peak-legend .dot {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 2px; margin-right: 6px;
    vertical-align: 1px;
  }

  
  .officernd-calc .savings-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid var(--line-soft);
  }
  .officernd-calc .st-cell {
    background: var(--bg-card);
    padding: 18px 14px;
    text-align: left;
    position: relative;
  }
  .officernd-calc .st-cell.likely {
    background: var(--bg-mint-tint);
  }
  .officernd-calc .st-label {
    font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-faint); margin-bottom: 8px;
    font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    flex-wrap: wrap;
  }
  .officernd-calc .st-cell.likely .st-label { color: var(--teal); }
  .officernd-calc .st-label .lbadge {
    background: var(--teal);
    color: #ffffff;
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
  .officernd-calc .st-value {
    font-family: var(--font-sans);
    font-size: 24px;
    color: var(--ink);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .st-cell.likely .st-value { color: var(--teal); -webkit-text-fill-color: var(--teal); }
  .officernd-calc .st-sub {
    font-size: 11.5px; color: var(--ink-faint); margin-top: 6px;
    line-height: 1.45;
    font-weight: 500;
  }

  
  .officernd-calc .compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px; align-items: stretch;
    margin-bottom: 24px;
  }
  .officernd-calc .compare-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 16px;
  }
  .officernd-calc .compare-card.rec {
    border-color: rgba(0, 57, 217, 0.25);
    background: var(--bg-blue-light);
  }
  .officernd-calc .compare-label {
    font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-faint); margin-bottom: 6px;
    font-weight: 700;
  }
  .officernd-calc .compare-card.rec .compare-label { color: var(--primary); }
  .officernd-calc .compare-value {
    font-family: var(--font-sans);
    font-size: 28px;
    color: var(--ink);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .compare-value .unit-suffix {
    font-size: 0.55em; color: var(--ink-faint); font-weight: 500;
  }
  .officernd-calc .compare-card.rec .compare-value { color: var(--primary); -webkit-text-fill-color: var(--primary); }
  .officernd-calc .compare-sub {
    font-size: 12.5px; color: var(--ink-soft); margin-top: 5px;
    font-weight: 500;
  }
  .officernd-calc .compare-arrow {
    display: flex; align-items: center;
    color: var(--ink-faint);
    font-size: 22px;
    font-weight: 300;
  }

  
  .officernd-calc .cta-block {
    margin-top: 22px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .officernd-calc .cta-block .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

  @media (max-width: 900px) {
   .officernd-calc .cta-block .cta-row { flex-direction:column; }
  }

  .officernd-calc .cta-context {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  
  .officernd-calc .btn {
    display: inline-flex; align-items: center; gap: 8px;
    min-width: 130px;
    padding: 14px 28px;
    border-radius: 36px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease-out, color 0.3s, border-color 0.3s, transform 0.15s;
    white-space: nowrap;
    justify-content: center;
  }
  .officernd-calc .btn:hover { transform: translateY(-1px); }
  .officernd-calc .btn.primary {
    background: #ff5656;
    color: #ffffff;
  }
  .officernd-calc .btn.primary:hover { #a33737; }
  .officernd-calc .btn.ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary-hover);
  }
  .officernd-calc .btn.ghost:hover {
    background: var(--primary-hover);
    color: #ffffff;
    border-color: var(--primary-hover);
  }

  @media (max-width: 576px) {
    .officernd-calc .btn { min-width: 115px; padding: 14px 22px; }
  }

  
  .officernd-calc .meta-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    margin-bottom: 80px;
  }
  @media (max-width: 900px) {
    .officernd-calc .meta-row { grid-template-columns: 1fr; }
  }
  .officernd-calc .assumptions {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-card);
  }
  .officernd-calc .assumptions h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
  }
  .officernd-calc .assumptions p { color: var(--ink-soft); font-size: 14px; margin-bottom: 14px; line-height: 1.55; }
  .officernd-calc .assumptions ul { list-style: none; }
  .officernd-calc .assumptions li {
    padding: 14px 0;
    border-top: 1px solid var(--line-soft);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    font-size: 13px;
    line-height: 1.55;
  }
  .officernd-calc .assumptions li:first-child { border-top: none; padding-top: 4px; }
  .officernd-calc .assumptions li strong {
    color: var(--ink); font-weight: 700;
  }
  .officernd-calc .assumptions li span { color: var(--ink-soft); }
  @media (max-width: 576px) {
    .officernd-calc .assumptions li { grid-template-columns: 1fr; gap: 4px; }
  }

  
  .officernd-calc .takeaways {
    background: var(--navy);
    color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
  }
  .officernd-calc .takeaways::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(72, 193, 185, 0.35), transparent 65%);
    pointer-events: none;
  }
  .officernd-calc .takeaways::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(34, 64, 208, 0.45), transparent 65%);
    pointer-events: none;
  }
  .officernd-calc .takeaways h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    position: relative;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
  }
  .officernd-calc .takeaways .tkr-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    position: relative;
  }
  .officernd-calc .tkr-item {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; position: relative;
  }
  .officernd-calc .tkr-item:last-child { padding-bottom: 0; }
  .officernd-calc .tkr-title { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; color: #ffffff; }
  .officernd-calc .tkr-meta { font-size: 12px; color: rgba(255, 255, 255, 0.6); line-height: 1.45; }
  .officernd-calc .tkr-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
  }
  .officernd-calc .tkr-btn:hover {
    background: var(--teal-bright);
    color: var(--navy);
    border-color: var(--teal-bright);
  }

  
  .officernd-calc footer.footer {
    border-top: 1px solid var(--line-soft);
    padding: 28px 0;
    color: var(--ink-faint);
    font-size: 12.5px;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-weight: 500;
  }

  
  .officernd-calc .has-tip {
    display: inline-flex; align-items: center; gap: 5px;
    cursor: help;
    position: relative;
  }
  .officernd-calc .info-dot {
    display: inline-flex; align-items: center; justify-content: center;
    width: 15px; height: 15px; border-radius: 50%;
    background: var(--line-soft); color: var(--ink-soft);
    font-size: 9.5px; font-weight: 700;
    font-style: normal;
    transition: all 0.15s;
  }
  .officernd-calc .has-tip:hover .info-dot {
    background: var(--primary); color: #ffffff;
  }
  .officernd-calc .has-tip:hover .tip {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .officernd-calc .tip {
    position: absolute;
    bottom: calc(100% + 8px); left: 0;
    background: var(--ink); color: #ffffff;
    font-size: 12px; padding: 10px 14px; border-radius: 8px;
    width: 240px; opacity: 0; transform: translateY(4px);
    pointer-events: none; transition: all 0.18s;
    line-height: 1.45; font-weight: 400; z-index: 10;
    box-shadow: 0 8px 24px rgba(3, 35, 115, 0.18);
  }

  
  .officernd-calc .show-plan, .officernd-calc .show-opt { display: none; }
  .officernd-calc[data-mode="plan"] .show-plan { display: block; }
  .officernd-calc[data-mode="opt"] .show-opt { display: block; }
  .officernd-calc[data-mode="plan"] .show-plan.flex { display: flex; }
  .officernd-calc[data-mode="opt"] .show-opt.flex { display: flex; }
  .officernd-calc[data-mode="plan"] .show-plan.grid { display: grid; }
  .officernd-calc[data-mode="opt"] .show-opt.grid { display: grid; }

  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .officernd-calc .hero, .officernd-calc .calc, .officernd-calc .meta-row { animation: fadeUp 0.6s ease both; }
  .officernd-calc .calc { animation-delay: 0.08s; }
  .officernd-calc .meta-row { animation-delay: 0.16s; }

  
  .officernd-calc .section-divider-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
  }
  .officernd-calc .section-divider {
    margin: 26px 0 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
  }

/* ============================================
   PDF Gate Modal — appended for WP version
   ============================================ */

.officernd-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 32, 51, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.officernd-gate-overlay.open { display: flex; animation: officernd-fade-in 0.2s ease; }

@keyframes officernd-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes officernd-slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.officernd-gate-modal {
  background: #ffffff;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: officernd-slide-up 0.25s ease;
  box-shadow: 0 24px 64px rgba(3, 35, 115, 0.25);
}
.officernd-gate-header { padding: 28px 28px 12px; position: relative; }
.officernd-gate-close {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: #8c95a2;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.officernd-gate-close:hover { background: #f2f5f7; color: #1a2033; }
.officernd-gate-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0039d9;
  font-weight: 600;
  margin-bottom: 8px;
}
.officernd-gate-title {
  font-family: 'Gilroy', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2033;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.officernd-gate-sub {
  font-size: 13.5px;
  color: #434b5a;
  line-height: 1.5;
  margin: 0;
}
.officernd-gate-body { padding: 8px 28px 28px; }
.officernd-gate-scenario {
  background: #f2f5f7;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: #434b5a;
  line-height: 1.5;
}
.officernd-gate-scenario strong { color: #1a2033; font-weight: 600; }

/* ============================================
   HubSpot form embed — styled to match the calculator's brand.
   These rules target the markup HubSpot's embed.js renders into
   #officernd-hubspot-form-target.
   ============================================ */
#officernd-hubspot-form-target { min-height: 240px; }

#officernd-hubspot-form-target form.hs-form { font-family: 'Gilroy', sans-serif; }

#officernd-hubspot-form-target .hs-form-field { margin-bottom: 14px; }
#officernd-hubspot-form-target .hs-form-field > label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a2033;
  margin-bottom: 6px;
}
#officernd-hubspot-form-target .hs-form-field .hs-form-required {
  color: #a33737;
  margin-left: 2px;
}
#officernd-hubspot-form-target .hs-form-field input[type="text"],
#officernd-hubspot-form-target .hs-form-field input[type="email"],
#officernd-hubspot-form-target .hs-form-field input[type="tel"],
#officernd-hubspot-form-target .hs-form-field select,
#officernd-hubspot-form-target .hs-form-field textarea {
  width: 100% !important;
  max-width: 100% !important;
  background: #fbfcfd;
  border: 1px solid #c1c5cf;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Gilroy', sans-serif;
  font-size: 14px;
  color: #1a2033;
  box-sizing: border-box;
}
#officernd-hubspot-form-target .hs-form-field input:focus,
#officernd-hubspot-form-target .hs-form-field select:focus,
#officernd-hubspot-form-target .hs-form-field textarea:focus {
  outline: none;
  border-color: #0039d9;
  box-shadow: 0 0 0 3px rgba(0, 57, 217, 0.12);
}
#officernd-hubspot-form-target .hs-form-field input.invalid {
  border-color: #a33737;
}

/* HubSpot's two-column layouts (e.g. first name / last name side by side) */
#officernd-hubspot-form-target .form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#officernd-hubspot-form-target .form-columns-2 .hs-form-field {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

/* Validation messages from HubSpot */
#officernd-hubspot-form-target .hs-error-msgs,
#officernd-hubspot-form-target .hs-error-msg {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
#officernd-hubspot-form-target .hs-error-msgs label,
#officernd-hubspot-form-target .hs-error-msg {
  color: #a33737;
  font-size: 12px;
}

/* GDPR / legal text block */
#officernd-hubspot-form-target .legal-consent-container,
#officernd-hubspot-form-target .hs-richtext {
  font-size: 11.5px;
  color: #8c95a2;
  margin: 8px 0 12px;
  line-height: 1.5;
}
#officernd-hubspot-form-target .legal-consent-container a {
  color: #0039d9;
  text-decoration: underline;
}
#officernd-hubspot-form-target .hs-form-booleancheckbox-display > span {
  margin-left: 8px;
  font-size: 12.5px;
  color: #434b5a;
}
#officernd-hubspot-form-target input[type="checkbox"] {
  accent-color: #0039d9;
}

/* Submit button — styled like the calculator's primary buttons */
#officernd-hubspot-form-target .hs-submit { margin-top: 4px; }
#officernd-hubspot-form-target .hs-submit input.hs-button,
#officernd-hubspot-form-target .hs-submit .hs-button {
  background: #0039d9 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 24px !important;
  border-radius: 36px !important;
  font-family: 'Gilroy', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s !important;
}
#officernd-hubspot-form-target .hs-submit input.hs-button:hover,
#officernd-hubspot-form-target .hs-submit .hs-button:hover {
  background: #001b66 !important;
}

/* Loading state while we wait for the PDF endpoint */
.officernd-gate-loading {
  text-align: center;
  padding: 32px 0;
  color: #8c95a2;
  font-size: 13px;
}
.officernd-gate-loading .spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2.5px solid #e5e8ee;
  border-top-color: #0039d9;
  border-radius: 50%;
  animation: officernd-spin 0.8s linear infinite;
  margin-bottom: 12px;
}

.officernd-gate-error {
  background: #fff4f0;
  border-radius: 8px;
  color: #a33737;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  margin-top: 12px;
}

.officernd-gate-success-inner { text-align: center; padding: 16px 0; }
.officernd-gate-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #00d358;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}
.officernd-gate-success-inner h4 {
  font-family: 'Gilroy', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2033;
  margin: 0 0 8px;
}
.officernd-gate-success-inner p {
  font-size: 13.5px;
  color: #434b5a;
  line-height: 1.5;
  margin: 0;
}

.officernd-gate-loading {
  text-align: center;
  padding: 32px 0;
  color: #8c95a2;
  font-size: 13px;
}
.officernd-gate-loading .spinner {
  display: inline-block;
  width: 28px; height: 28px;
  border: 2.5px solid #e5e8ee;
  border-top-color: #0039d9;
  border-radius: 50%;
  animation: officernd-spin 0.8s linear infinite;
  margin-bottom: 12px;
}
@keyframes officernd-spin { to { transform: rotate(360deg); } }

.officernd-gate-error {
  padding: 16px;
  background: #fff4f0;
  border-radius: 8px;
  color: #a33737;
  font-size: 13px;
  line-height: 1.5;
}
