    /* ══ TOKENS ══ */
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    /* ══ UTILITY ══ */
    .wrap {
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 48px;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    .title {
      font-family: var(--font-display);
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1.0;
      letter-spacing: 0.01em;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .title em {
      font-style: italic;
      color: var(--red);
    }

    .body-copy {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.72;
      color: var(--muted);
    }

    /* ══ HERO ══ */
    .hero {
      position: relative;
      margin-top: 68px;
      min-height: calc(100vh - 68px);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }

    .hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
    .hero-video {
      position: absolute; top: 50%; left: 50%;
      min-width: 100%; min-height: 100%; width: auto; height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }
    .hero-video-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(100deg, rgba(17,25,41,0.74) 0%, rgba(17,25,41,0.62) 45%, rgba(17,25,41,0.44) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 80px 80px 120px;
    }

    .hero-content .eyebrow {
      color: rgba(255,255,255,0.42);
      margin-bottom: 22px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 100px;
      padding: 8px 18px 8px 13px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
      margin-bottom: 26px;
    }

    .hero-kicker-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--red); flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(184,35,42,0.28);
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(56px, 6.8vw, 88px);
      line-height: 0.93;
      letter-spacing: 0.01em;
      color: var(--white);
      text-shadow: 0 2px 16px rgba(0,0,0,0.55);
      margin-bottom: 28px;
    }

    .hero-headline .red { color: var(--red); display: block; }

    .hero-sub {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.72;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 1px 8px rgba(0,0,0,0.5);
      max-width: 460px;
      margin-bottom: 40px;
    }

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

    .btn-red {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 15px 38px;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.2s;
    }

    .btn-red:hover { background: var(--red-hover); }

    .btn-ghost {
      display: inline-block;
      color: rgba(255,255,255,0.92);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 13px 28px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.45);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.7); }

    .hero-proof {
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-proof-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }

    .hero-proof-tags {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hero-proof-tag {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.04em;
    }

    .hero-stat-strip {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      background: rgba(0,0,0,0.32);
      backdrop-filter: blur(6px);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 26px 48px;
    }

    .hero-stat-strip-inner {
      max-width: var(--wrap);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .h-stat { display: flex; flex-direction: column; gap: 5px; }

    .h-stat-num {
      font-family: var(--font-display);
      font-size: 30px;
      letter-spacing: 0.02em;
      color: var(--white);
      line-height: 1;
    }

    .h-stat-num sup { color: var(--red); font-size: 0.6em; vertical-align: super; }

    .h-stat-label {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      line-height: 1.35;
    }


    /* ══ POSITION STRIP ══ */
    .position-strip {
      background: var(--red);
      padding: 17px 48px;
      text-align: center;
    }

    .position-strip p {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.03em;
      color: rgba(255,255,255,0.9);
    }

    .position-strip em {
      font-style: italic;
      opacity: 0.82;
    }


    /* ══ PROBLEM ══ */
    .problem-section {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .problem-intro { max-width: 680px; margin-bottom: 56px; }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .prob-card {
      border: 1px solid var(--gray-200);
      border-top: 3px solid var(--navy);
      padding: 36px 32px;
    }

    .prob-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .prob-quote {
      font-size: 19px;
      font-weight: 300;
      font-style: italic;
      color: var(--navy);
      line-height: 1.48;
      margin-bottom: 14px;
    }

    .prob-quote::before { content: '\201C'; }
    .prob-quote::after  { content: '\201D'; }

    .prob-reality {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.68;
      color: var(--muted);
    }


    /* ══ BEFORE/AFTER ══ */
    .transform-section {
      padding: var(--section-space) 0;
      background: var(--off-white);
    }

    .transform-intro { max-width: 640px; margin-bottom: 52px; }

    .t-table {
      border: 1px solid var(--gray-200);
      background: var(--white);
      overflow: hidden;
    }

    .t-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .t-hcell {
      padding: 15px 28px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .t-hcell.before {
      background: var(--gray-100);
      color: var(--gray-500);
      border-right: 1px solid var(--gray-200);
    }

    .t-hcell.after {
      background: var(--navy);
      color: rgba(255,255,255,0.55);
    }

    .t-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--gray-200);
    }

    .t-cell {
      padding: 22px 28px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.62;
    }

    .t-cell.left {
      color: var(--muted);
      border-right: 1px solid var(--gray-200);
      background: var(--white);
    }

    .t-cell.right {
      color: var(--text);
      background: rgba(26,35,64,0.02);
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 7px;
    }

    .dot.g { background: #CCCCCC; }
    .dot.r { background: var(--red); }


    /* ══ HOW WE OPERATE ══ */
    .operate-section {
      padding: var(--section-space) 0;
      background: var(--navy);
    }

    .operate-intro {
      max-width: 640px;
      margin-bottom: 52px;
    }

    .operate-intro .eyebrow { color: rgba(255,255,255,0.45); }
    .operate-intro .title { color: var(--white); }

    .operate-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .operate-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-top: 3px solid var(--red);
      padding: 40px 36px;
    }

    .operate-num {
      font-family: var(--font-display);
      font-size: 48px;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.08);
      line-height: 1;
      margin-bottom: 16px;
    }

    .operate-heading {
      font-family: var(--font-display);
      font-size: 26px;
      letter-spacing: 0.02em;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .operate-body {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.65);
    }

    @media (max-width: 768px) {
      .operate-grid { grid-template-columns: 1fr; }
    }


    /* ══ SERVICES ══ */
    .services-section {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .services-intro { max-width: 680px; margin-bottom: 52px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid var(--gray-200);
    }

    .svc-card {
      border-right: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      transition: background 0.2s;
      overflow: hidden;
    }

    .svc-card:nth-child(3n)   { border-right: none; }
    .svc-card:nth-child(n+4)  { border-bottom: none; }
    .svc-card:hover            { background: var(--gray-100); }

    .svc-photo {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: var(--navy-mid);
      position: relative;
    }

    .svc-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Placeholder shown when no image loaded */
    .svc-photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    }

    .svc-photo-placeholder span {
      font-family: var(--font-display);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }

    .svc-info { padding: 32px 34px 36px; }

    .svc-num {
      font-family: var(--font-display);
      font-size: 52px;
      letter-spacing: 0.02em;
      color: var(--gray-200);
      line-height: 1;
      margin-bottom: 10px;
    }

    .svc-name {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 0.03em;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .svc-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.68;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .svc-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      border: 1px solid rgba(184,35,42,0.28);
      padding: 3px 8px;
    }


    /* ══ INDUSTRIES ══ */
    .industries-section {
      padding: var(--section-space) 0;
      background: var(--navy);
    }

    .industries-intro {
      max-width: 680px;
      margin-bottom: 52px;
    }

    .industries-intro .eyebrow { color: rgba(255,255,255,0.45); }

    .industries-intro .title { color: var(--white); }

    .industries-intro .body-copy { color: rgba(255,255,255,0.52); }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .industry-item {
      padding: 28px 28px;
      border-right: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: background 0.2s;
    }

    .industry-item:hover { background: rgba(255,255,255,0.04); }

    .industry-item:nth-child(4n) { border-right: none; }
    .industry-item:nth-child(n+5) { border-bottom: none; }

    .industry-icon {
      color: var(--red);
      font-size: 10px;
      flex-shrink: 0;
    }

    .industry-name {
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.02em;
    }

    @media (max-width: 768px) {
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .industry-item:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.08); }
      .industry-item:nth-child(2n) { border-right: none; }
      .industry-item:nth-child(n+7) { border-bottom: none; }
      .industry-item:nth-child(n+5) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    }

    /* ══ THINGS WE'VE HAULED ══ */
    .hauled-section { padding: var(--section-space) 0; background: var(--off-white); }
    .hauled-intro { max-width: 680px; margin-bottom: 40px; }
    .hauled-carousel {
      position: relative;
      width: 100%;
      max-width: 780px;
      margin: 0 auto;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      border-radius: 4px;
      background: var(--gray-100);
    }
    .hauled-slide {
      position: absolute; inset: 0; margin: 0;
      opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
    }
    .hauled-slide.is-active { opacity: 1; pointer-events: auto; }
    .hauled-photo { position: absolute; inset: 0; }
    .hauled-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
    .hauled-photo-placeholder {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      background: var(--gray-100); border: 2px dashed var(--gray-200);
    }
    .hauled-photo-placeholder span {
      font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500);
    }
    .hauled-caption {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 30px 32px 22px;
      background: linear-gradient(to top, rgba(17,25,41,0.85), rgba(17,25,41,0));
      color: var(--white); font-size: 15px; font-weight: 400; letter-spacing: 0.01em;
      z-index: 1;
    }
    .hauled-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.9); border: none; cursor: pointer;
      font-size: 20px; line-height: 1; color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      z-index: 2; transition: background 0.2s;
    }
    .hauled-arrow:hover { background: var(--white); }
    .hauled-prev { left: 16px; }
    .hauled-next { right: 16px; }
    .hauled-dots {
      position: absolute; bottom: 16px; right: 24px;
      display: flex; align-items: center; gap: 7px; z-index: 2;
    }
    .hauled-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.2s, transform 0.2s;
    }
    .hauled-dot.is-active { background: var(--red); transform: scale(1.2); }

    @media (max-width: 768px) {
      .hauled-carousel { aspect-ratio: 4 / 3; }
      .hauled-caption { font-size: 13px; padding: 22px 20px 16px; }
    }


    /* ══ PROOF ══ */
    .proof-section {
      padding: var(--section-space) 0;
      background: var(--navy-deep);
    }

    .proof-section .eyebrow { color: rgba(255,255,255,0.4); }
    .proof-intro { max-width: 680px; margin-bottom: 52px; }
    .proof-intro .body-copy { color: rgba(255,255,255,0.48); }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 60px;
    }

    .proof-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-top: 3px solid var(--red);
      padding: 34px 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .proof-qmark {
      font-family: Georgia, serif;
      font-size: 52px;
      color: var(--red);
      line-height: 0.8;
      opacity: 0.55;
    }

    .proof-quote {
      font-size: 15px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.72;
      color: rgba(255,255,255,0.78);
      flex: 1;
    }

    .proof-name {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.02em;
    }

    .proof-role {
      display: block;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,0.38);
    }

    .proof-note {
      display: block;
      font-size: 11px;
      color: rgba(255,255,255,0.22);
      font-style: italic;
    }

    .legacy-bar {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .leg-stat { display: flex; flex-direction: column; gap: 8px; }

    .leg-num {
      font-family: var(--font-display);
      font-size: 56px;
      letter-spacing: 0.02em;
      color: var(--white);
      line-height: 1;
    }

    .leg-num sup { color: var(--red); font-size: 0.55em; vertical-align: super; }

    .leg-label {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(255,255,255,0.38);
    }


    /* ══ WHY BELLAVANCE ══ */
    .why-section {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .why-section .title { margin-bottom: 52px; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-copy {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }

    .why-copy .body-copy { max-width: none; }

    blockquote {
      border-left: 3px solid var(--red);
      padding: 20px 26px;
      background: var(--off-white);
      font-size: 17px;
      font-weight: 300;
      font-style: italic;
      line-height: 1.7;
      color: var(--navy);
    }

    .asset-badge {
      background: rgba(26,35,64,0.05);
      border: 1px solid rgba(26,35,64,0.1);
      border-left: 3px solid var(--navy);
      padding: 18px 22px;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.62;
      color: var(--navy);
    }

    .asset-badge em { font-style: normal; font-weight: 600; }

    .ryan-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 22px;
      border: 1px solid var(--gray-200);
    }

    .ryan-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .ryan-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ryan-initials {
      font-family: var(--font-display);
      font-size: 20px;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    .ryan-name {
      display: block;
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
    }

    .ryan-role {
      display: block;
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
    }

    .diff-list {
      display: flex;
      flex-direction: column;
    }

    .diff-item {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      padding: 22px 0;
      border-bottom: 1px solid var(--gray-200);
    }

    .diff-item:first-child { border-top: 1px solid var(--gray-200); }

    .diff-n {
      font-family: var(--font-display);
      font-size: 34px;
      letter-spacing: 0.02em;
      color: var(--gray-200);
      line-height: 1;
      flex-shrink: 0;
      width: 44px;
    }

    .diff-body strong {
      display: block;
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: 5px;
      line-height: 1.4;
    }

    .diff-body p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.65;
      color: var(--muted);
    }


    /* ══ COMMITMENT ══ */
    .commitment-section {
      padding: var(--section-space) 0;
      background: var(--off-white);
    }

    .commitment-inner { max-width: 800px; }

    .commitment-box {
      border: 1px solid var(--gray-200);
      border-left: 4px solid var(--red);
      background: var(--white);
      padding: 32px 36px;
      margin: 32px 0;
    }

    .commitment-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .commitment-text {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.72;
      color: var(--navy);
    }

    .commitment-footnote {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
      font-style: italic;
    }


    /* ══ CTA ══ */
    .cta-section {
      padding: var(--section-space-large) 0;
      background: var(--red);
      position: relative;
      overflow: hidden;
    }

    .cta-watermark {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: clamp(100px, 17vw, 200px);
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.065);
      pointer-events: none;
      white-space: nowrap;
      user-select: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .cta-form-col { width: 100%; }

    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cta-form input,
    .cta-form select,
    .cta-form textarea {
      width: 100%;
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      outline: none;
      border-radius: 0;
      appearance: none;
      -webkit-appearance: none;
    }

    .cta-form input::placeholder,
    .cta-form textarea::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .cta-form select option {
      background: var(--red);
      color: var(--white);
    }

    .cta-form input:focus,
    .cta-form select:focus,
    .cta-form textarea:focus {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.18);
    }

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

    .cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 560px) {
      .cta-form-row { grid-template-columns: 1fr; }
    }

    .cta-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
    .cta-tab {
      flex: 1;
      padding: 14px 12px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.7);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-align: center;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cta-tab.is-active { background: var(--white); color: var(--red); border-color: var(--white); }

    .cta-form-panel { display: none; flex-direction: column; gap: 14px; }
    .cta-form-panel.is-active { display: flex; }

    .cta-form-section-title {
      font-family: var(--font-display);
      font-size: 15px;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.85);
      text-transform: uppercase;
      padding-bottom: 8px;
      margin-top: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .cta-form-panel > .cta-form-section-title:first-child { margin-top: 0; }

    .cta-checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
    .cta-chip { cursor: pointer; }
    .cta-chip-input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }
    .cta-chip-box {
      display: inline-block;
      padding: 12px 20px;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 4px;
      color: rgba(255,255,255,0.8);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
      user-select: none;
    }
    .cta-chip-input:checked + .cta-chip-box {
      background: var(--white);
      color: var(--red);
      border-color: var(--white);
      font-weight: 700;
    }
    .cta-chip-input:focus-visible + .cta-chip-box {
      outline: 2px solid var(--white);
      outline-offset: 2px;
    }

    .btn-form-submit {
      background: var(--white);
      color: var(--red);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 16px 28px;
      border: none;
      cursor: pointer;
      width: 100%;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
    }

    .btn-form-submit:hover { background: var(--navy); color: var(--white); }

    .cta-section .eyebrow { color: rgba(255,255,255,0.55); }
    .cta-section .title   { color: var(--white); margin-bottom: 20px; }
    .cta-section .body-copy {
      color: rgba(255,255,255,0.72);
      max-width: 500px;
      margin-bottom: 40px;
    }

    .cta-btns {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-white {
      display: inline-block;
      background: var(--white);
      color: var(--navy);
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 15px 38px;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.2s;
    }

    .btn-white:hover { background: var(--off-white); }

    .btn-outline-white {
      display: inline-block;
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 13px 28px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.36);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .btn-outline-white:hover { color: var(--white); border-color: rgba(255,255,255,0.75); }

    .cta-detail {
      margin-top: 28px;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.04em;
    }


    /* ══ FOOTER ══ */
    footer {
      background: var(--navy-deep);
      padding: 72px 0 0;
    }

    .footer-grid {
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 48px 52px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
    }

    .footer-address { display: inline; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); }

    .footer-social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .footer-social:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

    .footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 48px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .footer-inner .footer-tagline { margin: 8px auto 0; }
    .footer-nav-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin: 22px 0; }
    .footer-nav-row a { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .footer-nav-row a:hover { color: var(--white); }
    .footer-contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; font-size: 14px; color: rgba(255,255,255,0.5); }
    .footer-contact-row a { color: rgba(255,255,255,0.5); text-decoration: none; }
    .footer-contact-row a:hover { color: var(--white); }
    .footer-bottom-line { width: 100%; margin-top: 14px; text-align: center; box-sizing: border-box; }
    .footer-bottom-line p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-bottom-line a { color: rgba(255,255,255,0.55); text-decoration: none; }
    .footer-bottom-line a:hover { color: var(--white); }

    .footer-logo-link {
      display: block;
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 0.07em;
      color: var(--white);
      text-decoration: none;
      margin-bottom: 16px;
    }

    .footer-logo-link span { color: var(--red); }

    .footer-tagline {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.38);
      max-width: 300px;
      margin-bottom: 24px;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-contact a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-contact a:hover { color: var(--white); }

    .footer-col-title {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 22px 48px;
      max-width: var(--wrap);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.04em;
    }


    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .hero-content { padding: 80px 40px 140px; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 768px) {
      .wrap { padding: 0 24px; }
      .problem-grid { grid-template-columns: 1fr; }
      .proof-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .legacy-bar { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 24px 40px; }
      .footer-bottom { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
      .t-row { grid-template-columns: 1fr; }
      .t-cell.left { border-right: none; border-bottom: 1px solid var(--gray-200); }
      .t-header { grid-template-columns: 1fr; }
      .t-hcell.before { display: none; }
      .hero { min-height: auto; flex-direction: column; align-items: stretch; }
      .hero-content { width: 100%; padding: 70px 24px 36px; }
      .hero-kicker { margin-bottom: 28px; }
      .hero-headline { font-size: clamp(44px, 12vw, 60px); line-height: 0.95; margin-bottom: 24px; }
      .hero-sub { max-width: none; margin-bottom: 28px; }
      .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
      .hero-actions .btn-red, .hero-actions .btn-white { width: 100%; text-align: center; }
      .hero-proof { width: 100%; }
      .hero-stat-strip { position: relative; bottom: auto; left: auto; right: auto; width: 100%; padding: 30px 24px; background: var(--navy-deep); backdrop-filter: none; }
      .hero-stat-strip-inner { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-content { padding: 90px 24px 32px; }
      .hero-stat-strip { padding: 18px 20px; }
    }

  .bv-float-cta {
    position: fixed; right: 20px; bottom: 20px; z-index: 999999;
    display: flex; align-items: center; gap: 8px;
    background: #B8232A; color: #fff; text-decoration: none;
    border-radius: 999px; padding: 15px 24px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    box-shadow: 0 6px 22px rgba(0,0,0,0.3);
    transition: background .2s, transform .15s, bottom .15s;
  }
  .bv-float-cta:hover { background: #9B1C20; transform: translateY(-1px); color: #fff; }
  @media (max-width: 600px) {
    .bv-float-cta { right: 12px; bottom: 12px; padding: 13px 18px; font-size: 12.5px; }
  }
