/* Ryan's approved v72 design CSS, scoped under .rn (content only; header/footer/form stay ours). base64 bg images stripped -> use real image files. */

  :root {
    --navy: #0a1628;
    --navy-mid: #12233f;
    --blue: #33449e;
    --blue-light: #5164c6;
    --blue-pale: #e3f0ff;
    --steel: #2d3a4a;
    --gray-dark: #1c2533;
    --gray-mid: #4a5568;
    --gray-light: #8a96a3;
    --gray-bg: #f4f6f9;
    --white: #ffffff;
    --border: #dde2ea;
    --accent: #e8f1fc;
    --text: #1c2533;
    --muted: #556070;
    --yellow: #f59e0b;
  }


  .rn * { box-sizing: border-box; margin: 0; padding: 0; }


  .rn {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
  }


  /* ── NAV ── */
  .rn nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 2px 10px rgba(10,22,40,0.08);
  }

  .rn .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 88px;
  }

  .rn .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
  }

  .rn .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
  }

  .rn .nav-links a {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
  }

  .rn .nav-links a:hover, .rn .nav-links a.active {
    background: var(--blue-pale);
    color: var(--blue-light);
  }

  .rn .nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 9px 18px !important;
  }

  .rn .nav-cta:hover { background: var(--blue-light) !important; }

  .rn .nav-phone {
    color: var(--blue) !important;
    font-weight: 600 !important;
  }


  /* ── PAGES ── */
  .rn .page { display: none; }

  .rn .page.active { display: block; }


  /* ── HERO ── */
  .rn .hero {
    background: linear-gradient(135deg, rgba(10,22,40,0.74) 0%, rgba(15,35,64,0.66) 55%, rgba(30,55,90,0.58) 100%), url() center 80%/cover no-repeat;
    color: #fff;
    padding: 96px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  .rn .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .rn .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }

  .rn .hero-inner > div {
    max-width: 720px;
  }

  .rn .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,136,229,0.2);
    border: 1px solid rgba(30,136,229,0.4);
    color: #7ec8fa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .rn .hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }

  .rn .hero h1 span { color: #60b3fa; }

  .rn .hero-sub {
    font-size: 18px;
    color: #9bb8d4;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 520px;
  }

  .rn .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .rn .btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s, transform 0.1s;
  }

  .rn .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

  .rn .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s, background 0.15s;
  }

  .rn .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

  .rn .btn-outline-dark {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
  }

  .rn .btn-outline-dark:hover { background: var(--blue); color: #fff; }


  /* ── QUICK LINKS ROW (compact core-solutions strip) ── */
  .rn .quicklinks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .rn .quicklink-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.1s;
  }

  .rn .quicklink-pill .quicklink-icon { font-size: 16px; }

  .rn .quicklink-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
    transform: translateY(-2px);
  }


  /* ── CHECKLIST (outlined badge) ── */
  .rn .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px 28px;
    margin-top: 8px;
  }

  .rn .checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }

  .rn .checklist-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
  }

  .rn .checklist-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .rn .checklist-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .rn .checklist-item-detailed .checklist-badge { margin-top: 2px; }

  .rn .checklist-item-detailed h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .rn .checklist-item-detailed p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }


  /* ── BRAND BADGES ── */
  .rn .brand-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  }

  .rn .brand-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21,101,192,0.12);
    border-color: var(--blue-light);
  }


  /* ── FLASHY PROCESS TIMELINE ── */
  .rn .process-flow {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    position: relative;
    flex-wrap: wrap;
  }

  .rn .process-flow::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 6%;
    right: 6%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
    border-radius: 2px;
    z-index: 0;
  }

  .rn .process-step {
    position: relative;
    z-index: 1;
    flex: 1 1 200px;
    text-align: center;
    max-width: 260px;
  }

  .rn .process-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(21,101,192,0.35), 0 0 0 6px var(--gray-bg);
  }

  .rn .process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .rn .process-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .rn .process-flow::before { display: none; }

    .rn .process-step { max-width: none; }

  }

  /* ── TEAM PAGE ── */
  .rn .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
  }

  .rn .team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
  }

  .rn .team-avatar {
    width: 170px;
    height: 170px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue-light), var(--navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 auto 18px;
  }

  .rn .team-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

  .rn .team-role { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 12px; }

  .rn .team-dept { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: -8px; margin-bottom: 12px; }

  .rn .team-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }


  .rn .team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    border: 1px solid var(--blue-pale);
    background: var(--blue-pale);
    border-radius: 999px;
    padding: 4px 11px;
  }

  .rn .team-linkedin:hover { background: var(--blue); color: #fff; }


  .rn .team-photo {
    width: 170px;
    height: 170px;
    border-radius: 14px;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
    border: 2px solid var(--blue-pale);
  }

  .rn .team-bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
  }

  .rn .team-bio-toggle:hover { text-decoration: underline; }

  .rn .team-bio-toggle .chev { transition: transform 0.2s ease; font-size: 10px; }

  .rn .team-bio-toggle.open .chev { transform: rotate(180deg); }

  .rn .team-bio-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
  }

  .rn .team-bio-panel p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 12px 0 0;
  }


  /* ── CAREERS PAGE ── */
  .rn .job-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

  .rn .job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .rn .job-card:hover { box-shadow: 0 8px 24px rgba(21,101,192,0.1); border-color: var(--blue); }

  .rn .job-info h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

  .rn .job-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

  .rn .job-tag {
    background: var(--blue-pale);
    color: var(--blue);
    padding: 3px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .rn .benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }

  .rn .benefit-row:last-child { border-bottom: none; }

  .rn .team-makeup-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
  }

  .rn .team-makeup-row:last-child { border-bottom: none; }

  .rn .team-makeup-label { display: flex; align-items: center; gap: 14px; }

  .rn .team-makeup-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rn .team-makeup-icon svg { width: 20px; height: 20px; stroke: var(--blue); }

  @media (max-width: 600px) {
    .rn .team-makeup-row { grid-template-columns: 1fr; gap: 8px; }

  }
  .rn .benefit-icon-big {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .rn .benefit-row h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

  .rn .benefit-row p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

  .rn .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .rn .hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
  }

  .rn .hero-stat-label {
    font-size: 12px;
    color: #6f9abc;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .rn .hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px;
    backdrop-filter: blur(8px);
  }

  .rn .hero-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .rn .hero-card h3 span {
    width: 28px;
    height: 28px;
    background: var(--blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .rn .quick-contact input, .rn .quick-contact select, .rn .quick-contact textarea {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    outline: none;
    font-family: inherit;
  }

  .rn .quick-contact input::placeholder, .rn .quick-contact select option, .rn .quick-contact textarea::placeholder { color: #7a96b2; }

  .rn .quick-contact select { color: #7a96b2; }

  .rn .quick-contact input:focus, .rn .quick-contact select:focus { border-color: var(--blue-light); }

  .rn .quick-contact .btn-primary { width: 100%; justify-content: center; }


  /* ── TRUST BAR ── */
  .rn .trust-bar {
    background: var(--gray-bg);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
  }

  .rn .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .rn .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--steel);
  }

  .rn .trust-icon {
    width: 30px;
    height: 30px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
  }


  /* ── CLIENT LOGOS ── */
  .rn .logos-section {
    background: linear-gradient(180deg, var(--blue-pale) 0%, rgba(227,240,255,0.3) 100%);
    position: relative;
  }

  .rn .logos-heading-accent {
    width: 56px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin: 14px auto 0;
  }

  .rn .logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  .rn .logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 230px;
    padding: 0 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(21,101,192,0.08);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .rn .logo-placeholder:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(21,101,192,0.18);
  }

  .rn .logo-placeholder:has(img) {
    filter: none;
    opacity: 1;
  }


  /* ── SECTION WRAPPERS ── */
  .rn .section { padding: 72px 24px; }

  .rn .section-alt { background: var(--gray-bg); }

  .rn .section-dark { background: var(--navy); color: #fff; }

  .rn .container { max-width: 1200px; margin: 0 auto; }

  .rn .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
  }

  .rn .section-eyebrow.light { color: #60b3fa; }

  .rn .section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--text);
  }

  .rn .section-title.light { color: #fff; }

  .rn .section-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.65;
  }

  .rn .section-desc.light { color: #8aacc5; }

  .rn .section-header { margin-bottom: 52px; }


  /* ── SERVICES GRID ── */
  .rn .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .rn .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
  }

  .rn .service-card:hover {
    box-shadow: 0 8px 32px rgba(21,101,192,0.12);
    border-color: var(--blue);
    transform: translateY(-3px);
  }

  .rn .service-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
  }

  .rn .service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
  }

  .rn .service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .rn .service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
  }


  /* ── STATS STRIP ── */
  .rn .stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--navy);
  }

  .rn .stat-block {
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .rn .stat-block:last-child { border-right: none; }

  .rn .stat-num {
    font-size: 44px;
    font-weight: 900;
    color: #60b3fa;
    line-height: 1;
    margin-bottom: 6px;
  }

  .rn .stat-label {
    font-size: 13px;
    color: #7a96b2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }


  /* ── WHY US ── */
  .rn .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .rn .why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

  .rn .why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .rn .why-num {
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .rn .why-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }

  .rn .why-point p { font-size: 14px; color: var(--muted); line-height: 1.6; }

  .rn .why-visual {
    background: var(--navy);
    border-radius: 14px;
    padding: 40px;
    color: #fff;
  }

  .rn .cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,136,229,0.2);
    border: 1px solid rgba(30,136,229,0.4);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #7ec8fa;
    margin: 4px;
  }

  .rn .certifications { margin-top: 20px; }

  .rn .why-visual h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

  .rn .why-visual p { color: #8aacc5; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }


  /* ── PROJECTS ── */
  .rn .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
  }

  .rn .project-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
  }

  .rn .project-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }

  .rn .project-thumb {
    height: 180px;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
  }

  .rn .project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .rn .project-body { padding: 20px 22px; }

  .rn .project-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }

  .rn .project-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

  .rn .project-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-light);
  }

  .rn .project-meta span { display: flex; align-items: center; gap: 5px; }


  /* ── MAINTENANCE PLANS ── */
  .rn .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .rn .plan-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
  }

  .rn .plan-card.featured {
    border-color: var(--blue);
    box-shadow: 0 4px 24px rgba(21,101,192,0.14);
  }

  .rn .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .rn .plan-name { font-size: 14px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

  .rn .plan-price { font-size: 38px; font-weight: 900; color: var(--navy); margin-bottom: 4px; line-height: 1; }

  .rn .plan-price span { font-size: 15px; font-weight: 500; color: var(--muted); }

  .rn .plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 22px; line-height: 1.55; }

  .rn .plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }

  .rn .plan-features li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .rn .plan-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: #dbeafe;
    color: var(--blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
  }


  /* ── BLOG ── */
  .rn .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }

  .rn .blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
  }

  .rn .blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }

  .rn .blog-thumb {
    height: 160px;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }

  .rn .blog-body { padding: 20px 22px; }

  .rn .blog-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .rn .blog-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }

  .rn .blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

  .rn .blog-meta { font-size: 12px; color: var(--gray-light); display: flex; gap: 12px; }

  .rn .blog-read-more { font-size: 13px; font-weight: 600; color: var(--blue); cursor: pointer; text-decoration: none; }


  /* ── CONTACT PAGE ── */
  .rn .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: flex-start;
  }

  .rn .contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; color: var(--navy); }

  .rn .contact-info p { color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

  .rn .contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .rn .contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .rn .contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }

  .rn .contact-detail-text span { font-size: 14px; color: var(--muted); }

  .rn .crm-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
  }

  .rn .crm-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }

  .rn .crm-form > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

  .rn .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .rn .form-group { margin-bottom: 14px; }

  .rn .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--steel); margin-bottom: 5px; }

  .rn .form-group input, .rn .form-group select, .rn .form-group textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 10px 13px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
  }

  .rn .form-group input:focus, .rn .form-group select:focus, .rn .form-group textarea:focus { border-color: var(--blue); }

  .rn .form-group textarea { resize: vertical; min-height: 100px; }

  .rn .crm-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 12px;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 16px;
  }

  .rn .form-success {
    display: none;
    text-align: center;
    padding: 40px;
  }

  .rn .form-success .check { font-size: 48px; margin-bottom: 12px; }

  .rn .form-success h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

  .rn .form-success p { color: var(--muted); font-size: 14px; }


  /* ── FOOTER ── */
  .rn footer {
    background: var(--navy);
    color: #c8d4e3;
    padding: 60px 24px 28px;
  }

  .rn .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .rn .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .rn .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
  }

  .rn .footer-col p, .rn .footer-col a {
    font-size: 13.5px;
    color: #7a96b2;
    text-decoration: none;
    line-height: 1.7;
    display: block;
    transition: color 0.15s;
    cursor: pointer;
  }

  .rn .footer-col a:hover { color: #60b3fa; }

  .rn .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #4a6278;
    flex-wrap: wrap;
    gap: 12px;
  }

  .rn .social-icons { display: flex; gap: 12px; }

  .rn .social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(21,101,192,0.35);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  }

  .rn .social-icon svg { width: 21px; height: 21px; fill: #fff; }

  .rn .social-icon:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21,101,192,0.5);
  }

  .rn .social-icon:hover svg { fill: #fff; }

  .rn .footer-certifications { display: flex; gap: 10px; flex-wrap: wrap; }

  .rn .footer-cert {
    background: rgba(30,136,229,0.15);
    border: 1px solid rgba(30,136,229,0.3);
    border-radius: 4px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    color: #60b3fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }


  /* ── DATA / SEO SECTION ── */
  .rn .data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .rn .data-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
  }

  .rn .data-num {
    font-size: 36px;
    font-weight: 900;
    color: #60b3fa;
    line-height: 1;
    margin-bottom: 6px;
  }

  .rn .data-label { font-size: 13px; color: #7a96b2; line-height: 1.4; }


  /* ── TESTIMONIALS ── */
  .rn .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 48px;
  }

  .rn .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 22px;
  }

  .rn .stars { color: var(--yellow); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }

  .rn .review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }

  .rn .review-author { font-size: 13px; font-weight: 700; color: var(--navy); }

  .rn .review-company { font-size: 12px; color: var(--muted); }


  /* ── PAGE HERO (inner pages) ── */
  .rn .page-hero {
    background: var(--navy);
    padding: 52px 24px;
    color: #fff;
  }

  .rn .page-hero-photo {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 24px !important;
    min-height: 320px;
  }

  .rn .page-hero-inner { max-width: 1200px; margin: 0 auto; }

  .rn .page-hero h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 10px; }

  .rn .page-hero p { color: #8aacc5; font-size: 16px; max-width: 580px; }

  .rn .breadcrumb { font-size: 12px; color: #4d6a85; margin-bottom: 14px; }

  .rn .breadcrumb span { color: #60b3fa; cursor: pointer; }


  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .rn .hero-inner { grid-template-columns: 1fr; }

    .rn .why-grid { grid-template-columns: 1fr; }

    .rn .plans-grid { grid-template-columns: 1fr; }

    .rn .contact-grid { grid-template-columns: 1fr; }

    .rn .form-row { grid-template-columns: 1fr; }

    .rn .footer-grid { grid-template-columns: 1fr 1fr; }

    .rn .stats-strip { grid-template-columns: 1fr 1fr; }

  }
  @media (max-width: 600px) {
    .rn .nav-links { display: none; }

    .rn .footer-grid { grid-template-columns: 1fr; }

    .rn .stats-strip { grid-template-columns: 1fr; }

  }

  /* ── REPLACEMENTS PAGE ── */
  .rn .replace-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .rn .replace-feature {
    background: var(--gray-bg);
    border-radius: 10px;
    padding: 22px;
    border-left: 4px solid var(--blue);
  }

  .rn .replace-feature h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

  .rn .replace-feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }


  /* ── CTA BAND ── */
  .rn .cta-band {
    background: var(--blue);
    padding: 56px 24px;
    text-align: center;
    color: #fff;
  }

  .rn .cta-band h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }

  .rn .cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

  .rn .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  .rn .btn-white {
    background: #fff;
    color: var(--blue);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
  }

  .rn .btn-white:hover { background: #e3f0ff; }


  .rn .notification {
    position: fixed;
    top: 80px;
    right: 24px;
    background: #1b5e20;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 999;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }


        .rn .proj-filter { padding:8px 18px;border:1.5px solid var(--border);border-radius:20px;font-size:13px;font-weight:600;color:var(--muted);background:#fff;cursor:pointer;transition:all 0.15s; }

        .rn .proj-filter.active { background:var(--blue);color:#fff;border-color:var(--blue); }

        .rn .proj-filter:hover:not(.active) { border-color:var(--blue);color:var(--blue); }

      