:root {
        --ink: #0a2b63;
        --ink-deep: #041633;
        --ink-soft: rgba(10, 43, 99, 0.72);
        --cream: #f3f6fb;
        --white: #ffffff;
        --silver: #dbe5f1;
        --silver-soft: #eef4fb;
        --azure: #1b63cf;
        --cyan: #19c4ff;
        --cyan-soft: rgba(25, 196, 255, 0.18);
        --panel: rgba(255, 255, 255, 0.09);
        --line: rgba(255, 255, 255, 0.14);
        --shadow: 0 28px 70px rgba(3, 15, 39, 0.16);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "Work Sans", sans-serif;
        background: var(--cream);
        color: var(--ink);
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .container {
        width: min(1140px, calc(100% - 32px));
        margin: 0 auto;
      }

      .topbar {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(16px);
        background: rgba(243, 246, 251, 0.92);
        border-bottom: 1px solid rgba(7, 35, 84, 0.08);
      }

      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 18px 0;
      }

      .brand strong {
        display: block;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 17px;
        letter-spacing: 0.02em;
      }

      .brand span {
        display: block;
        margin-top: 3px;
        font-size: 12px;
        color: rgba(7, 35, 84, 0.58);
      }

      .nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }

      .nav a {
        padding: 10px 14px;
        border-radius: 999px;
        color: rgba(7, 35, 84, 0.72);
        font-size: 14px;
        transition: background 0.2s ease, color 0.2s ease;
      }

      .nav a:hover {
        background: white;
        color: var(--ink);
      }

      .hero {
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(circle at top left, #2d84dc 0%, #0a2b63 42%, #041633 100%);
        color: white;
      }

      .hero::before,
      .hero::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        filter: blur(60px);
      }

      .hero::before {
        left: -70px;
        top: 60px;
        width: 240px;
        height: 240px;
        background: rgba(219, 229, 241, 0.28);
      }

      .hero::after {
        right: -20px;
        top: 110px;
        width: 320px;
        height: 320px;
        background: rgba(25, 196, 255, 0.14);
      }

      .hero-grid {
        position: relative;
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 44px;
        align-items: center;
        padding: 92px 0 84px;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.08);
        color: var(--silver-soft);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .hero h1 {
        margin: 22px 0 18px;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: clamp(42px, 7vw, 74px);
        line-height: 0.98;
        letter-spacing: -0.045em;
      }

      .hero h1 span {
        display: block;
        color: var(--cyan);
      }

      .hero-intro {
        max-width: 620px;
        font-size: 18px;
        line-height: 1.75;
        color: rgba(216, 227, 244, 0.84);
      }

      .cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 14px 24px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .btn:hover {
        transform: translateY(-1px);
      }

      .btn-primary {
        background: linear-gradient(135deg, var(--cyan), var(--azure));
        color: var(--white);
        box-shadow: 0 18px 32px rgba(27, 99, 207, 0.26);
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(219, 229, 241, 0.34);
        color: white;
      }

      .btn-with-logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
      }

      .btn-with-logo img {
        height: 38px;
        width: auto;
        object-fit: contain;
        display: block;
      }

      .hero-points {
        margin-top: 34px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
      }

      .hero-point {
        border-radius: 24px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--line);
      }

      .hero-point strong {
        display: block;
        color: white;
        font-size: 15px;
        margin-bottom: 6px;
      }

      .hero-point span {
        color: rgba(216, 227, 244, 0.74);
        font-size: 13px;
        line-height: 1.55;
      }

      .spotlight {
        border-radius: 34px;
        padding: 24px;
        background: var(--panel);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
      }

      .spotlight-top {
        display: flex;
        justify-content: center;
        margin-bottom: 18px;
      }

      .spotlight-top img {
        height: 92px;
        width: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
      }

      .spotlight h2 {
        margin: 0;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 30px;
        line-height: 1.08;
      }

      .spotlight p {
        margin: 14px 0 0;
        color: rgba(216, 227, 244, 0.82);
        line-height: 1.7;
        font-size: 15px;
      }

      .spotlight-stack {
        display: grid;
        gap: 14px;
        margin-top: 20px;
      }

      .spotlight-card {
        padding: 18px 20px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.08);
      }

      .spotlight-card strong {
        display: block;
        color: white;
        margin-bottom: 7px;
        font-size: 15px;
      }

      .spotlight-card span {
        color: rgba(216, 227, 244, 0.74);
        line-height: 1.6;
        font-size: 14px;
      }

      .section {
        padding: 84px 0;
      }

      .section-alt {
        background: rgba(255, 255, 255, 0.72);
      }

      .section-head {
        max-width: 780px;
        margin-bottom: 36px;
      }

      .kicker {
        display: inline-block;
        margin-bottom: 16px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(7, 35, 84, 0.06);
        color: var(--ink);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .section h1,
      .section h2 {
        margin: 0 0 14px;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.05;
        letter-spacing: -0.035em;
      }

      .section p.lead {
        margin: 0;
        color: var(--ink-soft);
        font-size: 17px;
        line-height: 1.8;
      }

      .bio-layout,
      .portal-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        align-items: start;
      }

      .card {
        background: white;
        border-radius: 28px;
        padding: 28px;
        border: 1px solid rgba(7, 35, 84, 0.08);
        box-shadow: 0 18px 28px rgba(7, 35, 84, 0.06);
      }

      .card h3 {
        margin: 0 0 10px;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 24px;
      }

      .card p,
      .card li {
        color: var(--ink-soft);
        font-size: 15px;
        line-height: 1.75;
      }

      .card ul {
        margin: 0;
        padding-left: 18px;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }

      .promo-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .promo-card {
        border-radius: 28px;
        padding: 24px;
        background: white;
        border: 1px solid rgba(7, 35, 84, 0.08);
      }

      .promo-card strong {
        display: block;
        margin-bottom: 10px;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 22px;
      }

      .promo-card p {
        margin: 0;
        color: var(--ink-soft);
        line-height: 1.7;
        font-size: 15px;
      }

      .service-card {
        display: flex;
        flex-direction: column;
        gap: 18px;
        border-radius: 32px;
        padding: 30px;
        background: white;
        border: 1px solid rgba(7, 35, 84, 0.08);
        box-shadow: 0 18px 32px rgba(7, 35, 84, 0.06);
      }

      .service-tag {
        display: inline-flex;
        align-self: flex-start;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .service-tag.tax {
        background: rgba(219, 229, 241, 0.72);
        color: #37557f;
      }

      .service-tag.books {
        background: rgba(25, 196, 255, 0.14);
        color: #0f5fd1;
      }

      .service-tag.payroll {
        background: rgba(40, 167, 132, 0.14);
        color: #117255;
      }

      .service-tag.realestate {
        background: rgba(229, 178, 74, 0.18);
        color: #8a5a08;
      }

      .service-card h3 {
        margin: 0;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 28px;
        line-height: 1.1;
      }

      .service-card p {
        margin: 0;
        color: var(--ink-soft);
        line-height: 1.75;
        font-size: 15px;
      }

      .service-card .btn {
        width: 100%;
        justify-content: center;
        margin-top: auto;
      }

      .service-card .btn-primary {
        background: var(--ink);
        color: white;
        box-shadow: 0 18px 26px rgba(7, 35, 84, 0.16);
      }

      .portal-card {
        border-radius: 34px;
        padding: 32px;
        background: linear-gradient(145deg, #0a2b63, #1166d3);
        color: white;
        box-shadow: var(--shadow);
      }

      .portal-brand {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 18px;
      }

      .portal-brand img {
        height: 64px;
        width: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
      }

      .portal-brand-copy strong {
        display: block;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 24px;
        line-height: 1.1;
      }

      .portal-brand-copy span {
        display: block;
        margin-top: 6px;
        color: rgba(216, 227, 244, 0.72);
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .portal-card p {
        color: rgba(216, 227, 244, 0.84);
        line-height: 1.75;
      }

      .portal-lead {
        margin: 0 0 18px;
        color: rgba(216, 227, 244, 0.84);
        line-height: 1.7;
        font-size: 15px;
      }

      .portal-visual-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 20px;
      }

      .portal-item {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(216, 227, 244, 0.84);
        min-height: 132px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .portal-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
      }

      .portal-item strong {
        display: block;
        color: white;
        font-size: 15px;
        line-height: 1.3;
      }

      .portal-item span {
        display: block;
        color: rgba(216, 227, 244, 0.74);
        font-size: 13px;
        line-height: 1.55;
      }

      .footer {
        background: #051a3e;
        color: rgba(255, 255, 255, 0.34);
        font-size: 12px;
        text-align: center;
        padding: 26px 16px;
      }

      .lead-form {
        width: min(760px, calc(100% - 24px));
        margin: 0 auto 22px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        text-align: left;
      }

      .lead-form-head {
        margin-bottom: 16px;
      }

      .lead-form-head strong {
        display: block;
        color: white;
        font-family: "IBM Plex Sans", sans-serif;
        font-size: 22px;
        line-height: 1.2;
      }

      .lead-form-head span {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 13px;
      }

      .lead-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .lead-form label {
        display: grid;
        gap: 7px;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        font-weight: 700;
      }

      .lead-form input,
      .lead-form textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--ink);
        font: inherit;
        font-size: 14px;
        padding: 12px 14px;
      }

      .lead-form textarea {
        resize: vertical;
        min-height: 112px;
      }

      .lead-form-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }

      .lead-form-actions .btn {
        border: 0;
        cursor: pointer;
      }

      .lead-form-actions .btn:disabled {
        cursor: wait;
        opacity: 0.68;
      }

      .lead-form-status {
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
        font-weight: 600;
      }

      .footer-contact {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 14px;
      }

      .footer-contact-card {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        font-weight: 600;
      }

      .footer-contact-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(25, 196, 255, 0.16);
        color: #8edfff;
        font-size: 15px;
      }

      .footer-contact-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        text-align: left;
      }

      .footer-contact-copy span {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.48);
      }

.promo-grid-spaced {
  margin-bottom: 24px;
}

.section-head-flush {
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-underline-offset: 3px;
}

