    :root {
      --red: #E8314A;
      --red-dark: #C4253D;
      --red-light: #FFF0F2;
      --navy: #0B1628;
      --navy-mid: #162035;
      --navy-light: #1E2E4A;
      --green: #1AAB78;
      --green-light: #E0F7EE;
      --amber: #F0A500;
      --amber-light: #FEF3DC;
      --purple: #6C5CE7;
      --purple-light: #EEF0FF;
      --upwork: #14A800;
      --upwork-light: #E8F9E5;
      --white: #FFFFFF;
      --off-white: #F8F7F4;
      --text-dark: #0B1628;
      --text-mid: #4A5568;
      --text-light: #8896AB;
      --border: rgba(255,255,255,0.08);
      --border-light: #E8ECF2;
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 16px;
      --radius-sm: 10px;
      --radius-pill: 100px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--off-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── UTILITIES ─── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-body); font-size: 11px; font-weight: 500;
      padding: 4px 12px; border-radius: var(--radius-pill);
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .tag-red { background: var(--red-light); color: var(--red); }
    .tag-green { background: var(--green-light); color: var(--green); }
    .tag-amber { background: var(--amber-light); color: var(--amber); }
    .tag-purple { background: var(--purple-light); color: var(--purple); }
    .tag-navy { background: var(--navy); color: var(--white); }
    .tag-upwork { background: var(--upwork-light); color: var(--upwork); }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-size: 14px; font-weight: 500;
      padding: 13px 24px; border-radius: var(--radius-pill);
      cursor: pointer; border: none; text-decoration: none;
      transition: all 0.2s ease; white-space: nowrap;
    }
    .btn-primary { background: var(--red); color: var(--white); }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,49,74,0.35); }
    .btn-dark { background: var(--navy); color: var(--white); }
    .btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
    .btn-outline:hover { background: var(--navy); color: var(--white); }
    .btn-white { background: var(--white); color: var(--navy); }
    .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
    .btn-upwork { background: var(--upwork); color: var(--white); }
    .btn-upwork:hover { background: #0f8c00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(20,168,0,0.3); }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 16px 0;
      transition: all 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(11,22,40,0.96);
      backdrop-filter: blur(12px);
      padding: 12px 0;
      box-shadow: 0 4px 32px rgba(0,0,0,0.2);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-display); font-size: 22px; font-weight: 800;
      color: var(--white); text-decoration: none; letter-spacing: -0.5px;
    }
    .nav-logo .x { color: var(--red); }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a {
      font-size: 14px; color: rgba(255,255,255,0.75);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      padding: 120px 0 80px;
    }
    .hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      overflow: hidden;
    }
    .hero-blob {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.18;
    }
    .blob-1 { width: 600px; height: 600px; background: var(--red); top: -100px; right: -100px; }
    .blob-2 { width: 400px; height: 400px; background: var(--purple); bottom: -50px; left: -50px; }
    .blob-3 { width: 300px; height: 300px; background: var(--green); top: 40%; right: 30%; }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; position: relative; z-index: 2;
    }
    .hero-eyebrow { margin-bottom: 20px; }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 800; line-height: 1.1;
      color: var(--white); margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-title .accent { color: var(--red); }
    .hero-title .underline-green {
      position: relative; display: inline-block;
    }
    .hero-title .underline-green::after {
      content: '';
      position: absolute; bottom: 2px; left: 0; right: 0;
      height: 4px; background: var(--green); border-radius: 2px;
    }
    .hero-sub {
      font-size: 17px; color: rgba(255,255,255,0.65);
      line-height: 1.65; margin-bottom: 32px; max-width: 480px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
    .hero-pills { display: flex; gap: 8px; flex-wrap: wrap; }
    .hero-pill {
      font-size: 12px; color: rgba(255,255,255,0.55);
      padding: 6px 14px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-pill);
      backdrop-filter: blur(4px);
    }
    .hero-right { position: relative; }
    .hero-card-stack { position: relative; height: 420px; }
    .hero-card {
      position: absolute; border-radius: var(--radius);
      padding: 24px; backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.4s ease;
    }
    .hc-main {
      background: rgba(255,255,255,0.06);
      width: 100%; top: 0; left: 0;
    }
    .hc-fintralis {
      background: linear-gradient(135deg, rgba(232,49,74,0.9), rgba(180,30,52,0.9));
      width: 85%; bottom: 0; right: 0;
    }
    .hc-stat {
      background: rgba(26,171,120,0.15);
      border-color: rgba(26,171,120,0.3);
      width: 55%; top: 50%; right: 0;
      transform: translateY(-50%);
    }
    .hero-card h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
    .hero-card .card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .hero-card .card-sub { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
    .card-metric { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; }
    .card-metric-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
    .card-dots { display: flex; gap: 6px; margin-top: 14px; }
    .card-dot { width: 8px; height: 8px; border-radius: 50%; }

    /* ─── TRUST BAR ─── */
    #trust {
      background: var(--navy-mid);
      padding: 20px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trust-inner { display: flex; align-items: center; gap: 0; }
    .trust-label { font-size: 12px; color: rgba(255,255,255,0.35); white-space: nowrap; margin-right: 32px; text-transform: uppercase; letter-spacing: 0.06em; }
    .trust-logos { display: flex; gap: 10px; flex-wrap: wrap; }
    .trust-chip {
      font-size: 12px; font-weight: 500;
      padding: 6px 16px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-pill);
      color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.04);
    }

    /* ─── SECTIONS COMMON ─── */
    section { padding: 96px 0; }
    .section-eyebrow { margin-bottom: 12px; }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 800; line-height: 1.15;
      color: var(--text-dark); letter-spacing: -0.5px;
      margin-bottom: 14px;
    }
    .section-title.white { color: var(--white); }
    .section-sub {
      font-size: 16px; color: var(--text-mid);
      line-height: 1.65; max-width: 560px;
    }
    .section-sub.white { color: rgba(255,255,255,0.65); }
    .section-header { margin-bottom: 52px; }
    .section-header.centered { text-align: center; }
    .section-header.centered .section-sub { margin: 0 auto; }

    /* ─── SERVICES ─── */
    #services { background: var(--off-white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px; position: relative; overflow: hidden;
      border: 1.5px solid var(--border-light);
      transition: all 0.25s ease; cursor: pointer;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,22,40,0.1); }
    .service-card.featured {
      background: var(--navy);
      border-color: var(--navy);
      grid-column: span 1;
    }
    .service-card.wide { grid-column: span 1; }
    .svc-icon-wrap {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 20px;
    }
    .service-card h3 {
      font-family: var(--font-display); font-size: 19px; font-weight: 700;
      color: var(--text-dark); margin-bottom: 10px; line-height: 1.25;
    }
    .service-card.featured h3 { color: var(--white); }
    .service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
    .service-card.featured p { color: rgba(255,255,255,0.6); }
    .svc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
    .svc-arrow {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--off-white); color: var(--text-dark);
      font-size: 16px; transition: all 0.2s;
    }
    .service-card:hover .svc-arrow { background: var(--red); color: var(--white); }
    .service-card.featured .svc-arrow { background: rgba(255,255,255,0.1); color: var(--white); }
    .service-card.featured:hover .svc-arrow { background: var(--red); }
    .svc-corner {
      position: absolute; top: 20px; right: 20px;
      font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: var(--radius-pill);
    }

    /* ─── AUDIENCE ─── */
    #audience {
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .audience-bg {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .aud-blob {
      position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.12;
    }
    .aud-blob-1 { width: 500px; height: 500px; background: var(--red); top: -150px; right: -100px; }
    .aud-blob-2 { width: 300px; height: 300px; background: var(--green); bottom: -80px; left: 20%; }
    .audience-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; position: relative; z-index: 2;
    }
    .audience-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 28px;
      transition: all 0.25s ease;
    }
    .audience-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.18);
      transform: translateY(-3px);
    }
    .aud-icon { font-size: 28px; margin-bottom: 16px; }
    .audience-card h4 {
      font-family: var(--font-display); font-size: 16px; font-weight: 700;
      color: var(--white); margin-bottom: 8px;
    }
    .audience-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
    .aud-link {
      font-size: 12px; font-weight: 500;
      padding: 5px 12px; border-radius: var(--radius-pill);
      display: inline-block;
    }

    /* ─── ENGAGE ─── */
    #engage { background: var(--off-white); }
    .engage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .engage-card {
      background: var(--white); border-radius: var(--radius);
      padding: 36px 28px; border: 1.5px solid var(--border-light);
      display: flex; flex-direction: column; gap: 0;
      transition: all 0.25s ease; position: relative; overflow: hidden;
    }
    .engage-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,22,40,0.1); }
    .engage-card.featured-engage {
      background: var(--navy); border-color: var(--navy);
    }
    .engage-card.upwork-card {
      border-color: var(--upwork);
    }
    .engage-num {
      font-family: var(--font-display); font-size: 72px; font-weight: 800;
      line-height: 1; color: var(--off-white); margin-bottom: -12px;
      position: relative; z-index: 0;
    }
    .featured-engage .engage-num { color: rgba(255,255,255,0.06); }
    .upwork-card .engage-num { color: rgba(20,168,0,0.08); }
    .engage-icon { font-size: 32px; margin-bottom: 16px; position: relative; z-index: 1; }
    .engage-card h3 {
      font-family: var(--font-display); font-size: 20px; font-weight: 700;
      color: var(--text-dark); margin-bottom: 10px; position: relative; z-index: 1;
    }
    .featured-engage h3 { color: var(--white); }
    .engage-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; flex: 1; position: relative; z-index: 1; }
    .featured-engage p { color: rgba(255,255,255,0.6); }
    .engage-best { margin: 16px 0; position: relative; z-index: 1; }
    .engage-features { margin: 0 0 24px; position: relative; z-index: 1; }
    .engage-feature {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 13px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.4;
    }
    .featured-engage .engage-feature { color: rgba(255,255,255,0.6); }
    .engage-feature-dot {
      width: 16px; height: 16px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 9px; margin-top: 1px;
    }
    .engage-cta { position: relative; z-index: 1; }
    .upwork-badge {
      position: absolute; top: 20px; right: 20px;
      font-family: var(--font-display); font-size: 13px; font-weight: 800;
      color: var(--upwork); letter-spacing: -0.5px;
    }
    .engage-note {
      text-align: center; margin-top: 28px;
      font-size: 14px; color: var(--text-mid);
    }
    .engage-note a { color: var(--red); text-decoration: none; font-weight: 500; }

    /* ─── FINTRALIS ─── */
    #fintralis {
      background: var(--navy); position: relative; overflow: hidden;
    }
    .fintralis-bg { position: absolute; inset: 0; pointer-events: none; }
    .fin-blob-1 { position: absolute; width: 600px; height: 600px; background: var(--red); border-radius: 50%; filter: blur(100px); opacity: 0.1; top: -200px; left: -100px; }
    .fin-blob-2 { position: absolute; width: 400px; height: 400px; background: var(--amber); border-radius: 50%; filter: blur(80px); opacity: 0.1; bottom: -100px; right: -50px; }
    .fintralis-inner { position: relative; z-index: 2; }
    .fintralis-header { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; margin-bottom: 48px; }
    .fintralis-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
    .fin-metric {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 28px;
    }
    .fin-metric-num {
      font-family: var(--font-display); font-size: 40px; font-weight: 800;
      color: var(--white); line-height: 1; margin-bottom: 6px;
    }
    .fin-metric-num.red { color: var(--red); }
    .fin-metric-num.green { color: var(--green); }
    .fin-metric-num.amber { color: var(--amber); }
    .fin-metric-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
    .fintralis-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fin-feature {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-sm); padding: 20px 22px;
      display: flex; gap: 14px; align-items: flex-start;
    }
    .fin-feature-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
    .fin-feature h5 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .fin-feature p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }

    /* ─── PAIN STATS ─── */
    #pain { background: var(--white); }
    .pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
    .pain-card {
      border-radius: var(--radius); padding: 28px;
      border: 1.5px solid var(--border-light); position: relative; overflow: hidden;
    }
    .pain-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
    }
    .pain-card.p-red::before { background: var(--red); }
    .pain-card.p-amber::before { background: var(--amber); }
    .pain-card.p-blue::before { background: #3B82F6; }
    .pain-card.p-green::before { background: var(--green); }
    .pain-num {
      font-family: var(--font-display); font-size: 36px; font-weight: 800;
      line-height: 1; margin-bottom: 8px;
    }
    .pain-num.red { color: var(--red); }
    .pain-num.amber { color: var(--amber); }
    .pain-num.blue { color: #3B82F6; }
    .pain-num.green { color: var(--green); }
    .pain-desc { font-size: 13px; color: var(--text-mid); line-height: 1.55; margin-bottom: 8px; }
    .pain-source { font-size: 11px; color: var(--text-light); }
    .erp-block {
      background: var(--off-white); border-radius: var(--radius);
      padding: 28px 32px;
      display: flex; align-items: center; gap: 32px;
    }
    .erp-block-label { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-dark); white-space: nowrap; }
    .erp-chips { display: flex; gap: 10px; flex-wrap: wrap; }
    .erp-chip {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 18px; border-radius: var(--radius-pill);
      background: var(--white); border: 1.5px solid var(--border-light);
      font-size: 13px; font-weight: 500; color: var(--text-dark);
    }
    .erp-dot { width: 8px; height: 8px; border-radius: 50%; }

    /* ─── PARTNERS ─── */
    #partners { background: var(--off-white); padding: 80px 0; }
    .partners-intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; margin-bottom: 56px;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .partner-card {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex; flex-direction: column;
      gap: 0; transition: all 0.25s ease;
      position: relative; overflow: hidden;
    }
    .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(11,22,40,0.1);
      border-color: transparent;
    }
    .partner-card.gem {
      background: linear-gradient(135deg, #1a3a6b 0%, #0f2447 100%);
      border-color: #1a3a6b;
      grid-column: span 3;
      flex-direction: row; gap: 40px; align-items: center;
      padding: 36px 40px;
    }
    .partner-card.gem:hover { border-color: transparent; }
    .partner-logo-area {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 16px;
    }
    .partner-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }
    .partner-logo-text {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 800;
      letter-spacing: -0.5px;
    }
    .partner-badge {
      position: absolute; top: 16px; right: 16px;
      font-size: 10px; font-weight: 600;
      padding: 3px 10px; border-radius: var(--radius-pill);
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .partner-card h4 {
      font-family: var(--font-display); font-size: 16px;
      font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
    }
    .partner-card.gem h4 { color: var(--white); font-size: 20px; }
    .partner-card p {
      font-size: 13px; color: var(--text-mid); line-height: 1.6;
      margin-bottom: 16px; flex: 1;
    }
    .partner-card.gem p { color: rgba(255,255,255,0.6); margin-bottom: 0; max-width: 480px; }
    .partner-cert {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 500;
      padding: 4px 10px; border-radius: var(--radius-pill);
    }
    .gem-right { flex: 1; }
    .gem-left { flex-shrink: 0; }
    .gem-seal {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
    }
    .gem-stats { display: flex; gap: 32px; margin-top: 20px; }
    .gem-stat-num {
      font-family: var(--font-display); font-size: 24px;
      font-weight: 800; color: var(--white); line-height: 1;
    }
    .gem-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; }
    .partner-color-bar {
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    }
    @media (max-width: 900px) {
      .partners-intro { grid-template-columns: 1fr; gap: 24px; }
      .partners-grid { grid-template-columns: 1fr 1fr; }
      .partner-card.gem { grid-column: span 2; flex-direction: column; gap: 20px; }
    }
    @media (max-width: 600px) {
      .partners-grid { grid-template-columns: 1fr; }
      .partner-card.gem { grid-column: span 1; }
    }

    /* ─── FREE EVAL ─── */
    #eval {
      background: linear-gradient(135deg, #E8F9E5 0%, #D0F4E4 100%);
      border-top: 1px solid rgba(26,171,120,0.2);
    }
    .eval-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .eval-steps { display: flex; flex-direction: column; gap: 20px; }
    .eval-step { display: flex; gap: 16px; align-items: flex-start; }
    .eval-step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--green); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 14px; font-weight: 700;
      flex-shrink: 0;
    }
    .eval-step-content h5 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
    .eval-step-content p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
    .eval-cta-box {
      background: var(--white); border-radius: var(--radius);
      padding: 40px; box-shadow: 0 8px 40px rgba(26,171,120,0.15);
    }
    .eval-cta-box .badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-pill); background: var(--green-light); color: var(--green); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
    .eval-cta-box h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; line-height: 1.25; }
    .eval-cta-box p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 24px; }
    .eval-btn-green { background: var(--green); color: var(--white); }
    .eval-btn-green:hover { background: #168f65; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,171,120,0.35); }

    /* ─── PROCESS ─── */
    #process { background: var(--off-white); }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-grid::before {
      content: ''; position: absolute;
      top: 28px; left: 60px; right: 60px; height: 2px;
      background: linear-gradient(90deg, var(--red), var(--amber), var(--green), var(--purple));
      border-radius: 2px; z-index: 0;
    }
    .process-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
    .process-num {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 18px; font-weight: 800;
      color: var(--white); margin: 0 auto 20px;
    }
    .process-step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
    .process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

    /* ─── FINAL CTA ─── */
    #cta {
      background: var(--navy); padding: 80px 0; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-blob-1 { position: absolute; width: 500px; height: 500px; background: var(--red); border-radius: 50%; filter: blur(100px); opacity: 0.1; top: -200px; left: -100px; }
    .cta-blob-2 { position: absolute; width: 400px; height: 400px; background: var(--purple); border-radius: 50%; filter: blur(80px); opacity: 0.1; bottom: -150px; right: -50px; }
    .cta-inner { position: relative; z-index: 2; }
    .cta-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.15; }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy-mid);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 60px 0 28px;
    }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-brand-logo { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
    .footer-brand-logo .x { color: var(--red); }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 20px; max-width: 260px; }
    .footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
    .footer-social-chip {
      font-size: 12px; font-weight: 500;
      padding: 6px 14px; border-radius: var(--radius-pill);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5);
      text-decoration: none; transition: all 0.2s;
    }
    .footer-social-chip:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
    .footer-social-chip.upwork { border-color: rgba(20,168,0,0.4); color: var(--upwork); }
    .footer-social-chip.upwork:hover { background: rgba(20,168,0,0.12); }
    .footer-col h5 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
    .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.3); }

    /* ─── BLOG ─── */
    #blog { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
    .blog-bg { position: absolute; inset: 0; pointer-events: none; }
    .blog-blob-1 { position: absolute; width: 500px; height: 500px; background: var(--purple); border-radius: 50%; filter: blur(100px); opacity: 0.08; top: -200px; right: -100px; }
    .blog-blob-2 { position: absolute; width: 350px; height: 350px; background: var(--red); border-radius: 50%; filter: blur(80px); opacity: 0.07; bottom: -100px; left: 10%; }
    .blog-header-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 48px; gap: 20px; position: relative; z-index: 2;
    }
    .blog-grid {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr;
      gap: 20px; position: relative; z-index: 2;
    }
    .blog-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      overflow: hidden; display: flex; flex-direction: column;
      transition: all 0.25s ease; cursor: pointer;
    }
    .blog-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.16);
      transform: translateY(-4px);
    }
    .blog-card.featured { background: rgba(255,255,255,0.05); }
    .blog-thumb {
      height: 180px; position: relative;
      display: flex; align-items: center; justify-content: center;
      font-size: 48px; flex-shrink: 0;
    }
    .blog-card.featured .blog-thumb { height: 220px; }
    .blog-thumb-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(11,22,40,0.8) 100%);
    }
    .blog-category {
      position: absolute; top: 14px; left: 14px;
      font-size: 10px; font-weight: 600;
      padding: 4px 10px; border-radius: var(--radius-pill);
      text-transform: uppercase; letter-spacing: 0.06em;
      backdrop-filter: blur(8px);
    }
    .blog-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
    .blog-meta {
      display: flex; align-items: center; gap: 12px;
      font-size: 11px; color: rgba(255,255,255,0.35);
      margin-bottom: 10px;
    }
    .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); }
    .blog-title {
      font-family: var(--font-display); font-size: 16px; font-weight: 700;
      color: var(--white); line-height: 1.35; margin-bottom: 10px; flex: 1;
    }
    .blog-card.featured .blog-title { font-size: 20px; }
    .blog-excerpt {
      font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6;
      margin-bottom: 18px; display: -webkit-box;
      -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .blog-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .blog-author { display: flex; align-items: center; gap: 8px; }
    .blog-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--white);
    }
    .blog-author-name { font-size: 12px; color: rgba(255,255,255,0.5); }
    .blog-read-more {
      font-size: 12px; font-weight: 500; color: var(--red);
      display: flex; align-items: center; gap: 4px;
      transition: gap 0.2s;
    }
    .blog-card:hover .blog-read-more { gap: 8px; }
    .blog-aeo-note {
      margin-top: 32px; padding: 20px 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; gap: 16px;
      position: relative; z-index: 2;
    }
    .blog-aeo-icon { font-size: 22px; flex-shrink: 0; }
    .blog-aeo-note p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
    .blog-aeo-note strong { color: rgba(255,255,255,0.75); }
    @media (max-width: 900px) {
      .blog-grid { grid-template-columns: 1fr; }
      .blog-header-row { flex-direction: column; align-items: flex-start; }
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
    .hero-card-stack { animation: float 6s ease-in-out infinite; }
    [v-cloak] { display: none; }
    .fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .audience-grid { grid-template-columns: 1fr 1fr; }
      .engage-grid { grid-template-columns: 1fr; }
      .fintralis-header { grid-template-columns: 1fr; }
      .fintralis-metrics { grid-template-columns: 1fr 1fr 1fr; }
      .fintralis-features { grid-template-columns: 1fr; }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .eval-inner { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .process-grid::before { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }

    @media (max-width: 600px) {
      section { padding: 64px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .pain-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .erp-block { flex-direction: column; gap: 16px; align-items: flex-start; }
    }
