
  :root{
    --navy-950:#071A33;
    --navy-900:#0A2647;
    --navy-800:#123A64;
    --blue-700:#144C8C;
    --blue-600:#1C64B0;
    --sky-500:#2C86C9;
    --sky-300:#6FB1E0;
    --sky-100:#DCEEFB;
    --gold-500:#D4AF37;
    --gold-300:#EAC35C;
    --gold-100:#FBF0D2;
    --ink-900:#0B1B2B;
    --ink-600:#3E4E5E;
    --ink-400:#6C7B8A;
    --line:#E1E8F0;
    --bg:#F5F9FC;
    --white:#FFFFFF;

    --font-display:'Sora', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace;

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:24px;

    --shadow-sm: 0 1px 3px rgba(10,38,71,0.08);
    --shadow-md: 0 12px 32px -12px rgba(10,38,71,0.22);
    --shadow-lg: 0 24px 60px -20px rgba(10,38,71,0.35);

    --container: 1180px;
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:var(--font-body);
    color:var(--ink-900);
    background:var(--bg);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{list-style:none;margin:0;padding:0;}
  button{font-family:inherit;cursor:pointer;}
  h1,h2,h3,h4{font-family:var(--font-display);margin:0;color:var(--navy-900);}
  p{margin:0;}

  .wrap{
    max-width:var(--container);
    margin:0 auto;
    padding:0 24px;
  }

  :focus-visible{
    outline:3px solid var(--gold-500);
    outline-offset:2px;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ===================== NAVBAR ===================== */
  .site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 24px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:var(--font-display);
    font-weight:700;
    font-size:1.05rem;
    color:var(--navy-900);
  }
  .brand img{width:36px;height:36px;border-radius:8px;}
  .brand-name-full{display:inline;}
  .nav-links{
    display:flex;
    align-items:center;
    gap:32px;
  }
  .nav-links a{
    font-size:0.94rem;
    font-weight:500;
    color:var(--ink-600);
    transition:color .2s ease;
    position:relative;
  }
  .nav-links a:hover{color:var(--blue-600);}
  .nav-actions{display:flex;align-items:center;gap:16px;}
  .nav-cta{
    background:var(--navy-900);
    color:var(--white);
    padding:11px 22px;
    border-radius:999px;
    font-weight:600;
    font-size:0.92rem;
    border:none;
    transition:background .2s ease, transform .2s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{background:var(--blue-700); transform:translateY(-1px);}
  .nav-toggle{
    display:none;
    background:none;
    border:none;
    width:40px;height:40px;
    align-items:center;
    justify-content:center;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
    content:'';
    display:block;
    width:22px;height:2px;
    background:var(--navy-900);
    position:relative;
    transition:.25s ease;
  }
  .nav-toggle span::before{position:absolute; top:-7px;}
  .nav-toggle span::after{position:absolute; top:7px;}

  /* ===================== HERO ===================== */
  .hero{
    position:relative;
    background:
      radial-gradient(1100px 600px at 85% -10%, rgba(212,175,55,0.16), transparent 60%),
      linear-gradient(150deg, #FFFAE4 0%, #FFFAE4 55%, #FFFAE4 100%);
    color:var(--ink-900);
    overflow:hidden;
    margin-top: 50px;
  }
  .hero::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(10,38,71,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,38,71,0.05) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:radial-gradient(700px 500px at 20% 30%, black, transparent);
    pointer-events:none;
  }
  .hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:56px;
    padding:88px 24px 96px;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--font-mono);
    font-size:0.76rem;
    letter-spacing:0.09em;
    text-transform:uppercase;
    color:#8A6A1F;
    background:rgba(212,175,55,0.14);
    border:1px solid rgba(212,175,55,0.4);
    padding:7px 14px;
    border-radius:999px;
    margin-bottom:22px;
  }
  .hero-eyebrow::before{
    content:'';
    width:6px;height:6px;
    border-radius:50%;
    background:var(--gold-500);
  }
  .hero h1{
    font-size:clamp(2.3rem, 3.6vw, 3.3rem);
    line-height:1.3;
    font-weight:900;
    color:black;
    letter-spacing:-0.01em;
    max-width:700px;
  }
  .hero h1 .accent{
    background:linear-gradient(100deg, #31C5EA, var(--blue-700));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero-sub{
    margin-top:20px;
    font-size:1.1rem;
    color:var(--ink-600);
    max-width:520px;
    font-weight:400;
  }
  .hero-points{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .hero-point{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:0.98rem;
    color:var(--ink-900);
  }
  .hero-tick{
    flex:none;
    width:24px;height:24px;
    border-radius:50%;
    background:linear-gradient(145deg, #FCAF1B);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px #FCAF1B;
    margin-top:1px;
  }
  .hero-tick svg{width:13px;height:13px;}
  .hero-actions{
    margin-top:38px;
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
  }
  .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(120deg, #FCAF1B);
    color:var(--navy-950);
    font-weight:700;
    font-size:1rem;
    padding:16px 30px;
    border-radius:999px;
    border:none;
    /* box-shadow:0 14px 30px -10px #FCAF1B; */
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 18px 36px -10px rgba(212,175,55,0.65);}
  .btn-primary svg{width:18px;height:18px;transition:transform .2s ease;}
  .btn-primary:hover svg{transform:translateX(3px);}
  .hero-microcopy{font-size:0.85rem;color:var(--ink-400);}

  /* Hero visual: mock invoice card */
  .hero-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .invoice-card{
    position:relative;
    width:100%;
    max-width:400px;
    background:var(--white);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
    padding:26px 24px;
    color:var(--ink-900);
    transform:rotate(-2deg);
  }
  .invoice-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    border-bottom:1px dashed var(--line);
    padding-bottom:16px;
    margin-bottom:16px;
  }
  .invoice-card-head .tag{
    font-family:var(--font-mono);
    font-size:0.68rem;
    letter-spacing:0.06em;
    background:var(--sky-100);
    color:var(--blue-700);
    padding:5px 9px;
    border-radius:6px;
    font-weight:600;
  }
  .invoice-card-head .status{
    font-family:var(--font-mono);
    font-size:0.68rem;
    color:#1E8E5A;
    background:#E3F7EC;
    padding:5px 9px;
    border-radius:6px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:5px;
  }
  .invoice-card-head .status::before{content:'';width:6px;height:6px;border-radius:50%;background:#1E8E5A;}
  .invoice-row{
    display:flex;
    justify-content:space-between;
    font-size:0.83rem;
    color:var(--ink-400);
    padding:9px 0;
    border-bottom:1px solid var(--line);
  }
  .invoice-row span:last-child{color:var(--ink-900); font-weight:600;}
  .invoice-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:16px;
    padding-top:2px;
  }
  .invoice-total .label{font-size:0.78rem;color:var(--ink-400);}
  .invoice-total .amount{font-family:var(--font-display); font-size:1.5rem; font-weight:700; color:var(--navy-900);}
  .invoice-float-badge{
    position:absolute;
    top:-16px;
    right:-14px;
    background:var(--navy-900);
    color:var(--white);
    border-radius:14px;
    padding:11px 15px;
    box-shadow:var(--shadow-md);
    font-family:var(--font-mono);
    font-size:0.72rem;
    display:flex;
    align-items:center;
    gap:7px;
    transform:rotate(3deg);
  }
  .invoice-float-badge svg{width:14px;height:14px;color:var(--gold-300);}
  .invoice-float-chip{
    position:absolute;
    bottom:-18px;
    left:-18px;
    background:var(--white);
    border-radius:14px;
    padding:12px 16px;
    box-shadow:var(--shadow-md);
    display:flex;
    align-items:center;
    gap:10px;
    transform:rotate(2deg);
  }
  .invoice-float-chip .dot{
    width:34px;height:34px;
    border-radius:9px;
    background:linear-gradient(145deg, var(--sky-500), var(--blue-700));
    display:flex;align-items:center;justify-content:center;
    color:var(--white);
    flex:none;
  }
  .invoice-float-chip .dot svg{width:17px;height:17px;}
  .invoice-float-chip .txt{font-size:0.74rem; line-height:1.25;}
  .invoice-float-chip .txt b{display:block; font-size:0.86rem; color:var(--navy-900); font-family:var(--font-display);}

  /* ===================== SECTION SHELL ===================== */
  .section{padding:96px 24px;}
  .section-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 56px;
  }
  .eyebrow{
    display:inline-block;
    font-family:var(--font-mono);
    font-size:0.75rem;
    letter-spacing:0.09em;
    text-transform:uppercase;
    color:var(--blue-700);
    background:var(--sky-100);
    padding:6px 13px;
    border-radius:999px;
    margin-bottom:16px;
    font-weight:600;
  }
  .section-head h2{
    font-size:clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight:800;
    letter-spacing:-0.01em;
  }
  .section-head p{
    margin-top:14px;
    color:var(--ink-400);
    font-size:1.03rem;
  }

  /* ===================== FEATURE CARDS ===================== */
  .features{background:var(--white);}
  .card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
  }
  .feature-card{
    background:#FFFAE4;
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:38px 28px;
    text-align:center;
    position:relative;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .feature-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
    border-color:transparent;
  }
  .feature-card::before{
    content:'';
    position:absolute;
    top:0;left:24px;right:24px;
    height:3px;
    border-radius:0 0 4px 4px;
    /* background:linear-gradient(90deg, var(--sky-500), var(--gold-500)); */
    opacity:0;
    /* transition:opacity .25s ease; */
  }
  .feature-card:hover::before{opacity:1;}
  .feature-icon{
    width:64px;height:64px;
    margin:0 auto 22px;
    border-radius:16px;
    background:linear-gradient(150deg, var(--navy-900), var(--blue-700));
    display:flex;
    align-items:center;
    justify-content:center;
    /* box-shadow:0 10px 24px -8px rgba(10,38,71,0.35); */
  }
  .feature-icon img{width:30px;height:30px;filter:brightness(0) invert(1);}
  .feature-card h3{
    font-size:1.12rem;
    font-weight:700;
    margin-bottom:10px;
  }
  .feature-card p{
    color:var(--ink-400);
    font-size:0.93rem;
  }
  .feature-index{
    font-family:var(--font-mono);
    font-size:0.7rem;
    color:var(--sky-300);
    letter-spacing:0.08em;
    display:block;
    margin-bottom:10px;
  }

  /* ===================== ONBOARDING PROCESS ===================== */
  .process{background:var(--bg);}
  .process-layout{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:64px;
    align-items:start;
  }
  .process-steps{
    position:relative;
    padding:8px 0;
  }
  .process-path{
    position:absolute;
    top:36px;
    bottom:36px;
    left:50%;
    width:2px;
    transform:translateX(-50%);
    background-image:linear-gradient(var(--sky-300) 60%, transparent 0%);
    background-position:top;
    background-size:2px 14px;
    background-repeat:repeat-y;
    z-index:0;
  }
  .step{
    position:relative;
    width:calc(50% - 34px);
    margin-bottom:44px;
    z-index:1;
  }
  .step:last-child{margin-bottom:0;}
  .step:nth-child(odd){margin-right:auto; text-align:right;}
  .step:nth-child(even){margin-left:auto; text-align:left;}
  .step-node{
    position:absolute;
    top:2px;
    width:16px;height:16px;
    border-radius:50%;
    background:var(--white);
    border:3px solid var(--gold-500);
    box-shadow:0 0 0 5px var(--bg), 0 0 0 6px var(--line);
  }
  .step:nth-child(odd) .step-node{right:-42px;}
  .step:nth-child(even) .step-node{left:-42px;}
  .step-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:22px 24px;
    box-shadow:var(--shadow-sm);
  }
  .step:nth-child(odd) .step-card{margin-right:0;}
  .step-num{
    font-family:var(--font-mono);
    font-size:0.75rem;
    font-weight:600;
    color:var(--blue-700);
    letter-spacing:0.06em;
    display:block;
    margin-bottom:6px;
  }
  .step-card h4{font-size:1.02rem; font-weight:700; margin-bottom:6px;}
  .step-card p{font-size:0.89rem; color:var(--ink-400);}

  .process-media{
    position:sticky;
    top:100px;
  }
  .process-media img{
    width:100%;
    /* border-radius:var(--radius-lg); */
    /* box-shadow:var(--shadow-lg); */
  }
  .process-media-placeholder{
    width:100%;
    aspect-ratio:4/5;
    /* border-radius:var(--radius-lg); */
    /* background:linear-gradient(160deg, var(--navy-900), var(--blue-700)); */
    /* box-shadow:var(--shadow-lg); */
    display:flex;
    align-items:center;
    justify-content:center;
    /* color:rgba(255,255,255,0.5); */
    font-family:var(--font-mono);
    font-size:0.85rem;
    text-align:center;
    padding:20px;
  }

  /* ===================== CONFIGURE + FORM ===================== */
  /* .configure{background:var(--white);} */
  /*  
  .configure-layout{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:start;
  }
  .configure-eyebrow{margin-bottom:16px;}
  .configure h2{
    font-size:clamp(1.6rem, 2.3vw, 2.1rem);
    font-weight:800;
    margin-bottom:16px;
    letter-spacing:-0.01em;
  }
  .configure-intro{color:var(--ink-400); font-size:1rem; margin-bottom:32px;}
  .req-list{display:flex; flex-direction:column; gap:18px;}
  .req-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 18px;
    background:var(--bg);
    border:1px solid var(--line);
    border-radius:var(--radius-sm);
  }
  .req-num{
    flex:none;
    width:30px;height:30px;
    border-radius:8px;
    background:var(--navy-900);
    color:var(--gold-300);
    font-family:var(--font-mono);
    font-size:0.78rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .req-item p{font-size:0.95rem; color:var(--ink-900); font-weight:500;}

  .lead-form-wrap{
    background:linear-gradient(160deg, var(--navy-950), var(--blue-700));
    border-radius:var(--radius-lg);
    padding:42px 38px;
    box-shadow:var(--shadow-lg);
    color:var(--white);
  }
  .lead-form-wrap h3{
    color:var(--white);
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:8px;
  }
  .lead-form-wrap .sub{
    color:rgba(255,255,255,0.7);
    font-size:0.92rem;
    margin-bottom:26px;
  }
  .field{margin-bottom:18px;}
  .field label{
    display:block;
    font-size:0.82rem;
    font-weight:600;
    color:rgba(255,255,255,0.85);
    margin-bottom:7px;
  }
  .field input, .field select{
    width:100%;
    padding:13px 14px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.18);
    background:rgba(255,255,255,0.06);
    color:var(--white);
    font-family:var(--font-body);
    font-size:0.94rem;
    transition:border-color .2s ease, background .2s ease;
  }
  .field input::placeholder{color:rgba(255,255,255,0.4);}
  .field input:focus, .field select:focus{
    border-color:var(--gold-300);
    background:rgba(255,255,255,0.1);
    outline:none;
  }
  .field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EAC35C' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
  }
  .field select option{color:var(--ink-900);}
  .form-submit{
    width:100%;
    margin-top:6px;
    background:linear-gradient(120deg, var(--gold-300), var(--gold-500));
    color:var(--navy-950);
    font-weight:700;
    font-size:0.98rem;
    padding:15px;
    border-radius:10px;
    border:none;
    transition:transform .2s ease, box-shadow .2s ease;
    box-shadow:0 10px 24px -8px rgba(212,175,55,0.5);
  }
  .form-submit:hover{transform:translateY(-2px);}
  .form-note{
    margin-top:14px;
    font-size:0.78rem;
    color:rgba(255,255,255,0.5);
    text-align:center;
  } 
    */
   
/* SECTION BACKGROUND */
#einv-section {
    --einv-cream: #FBF5E6;
    --einv-cream-deep: #F3E8CB;
    --einv-navy: #0F2A4A;
    --einv-navy-soft: #1F4368;
    --einv-sky: #2E9FE0;
    --einv-sky-deep: #1477B8;
    --einv-gold: #C79A2E;
    --einv-gold-light: #E8C766;
    --einv-white: #FFFFFF;
    --einv-line: #E4D6A9;
    --einv-text: #253248;
    --einv-text-soft: #5B6B80;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background:
      radial-gradient(1100px 500px at 85% -10%, rgba(46,159,224,0.12), transparent 60%),
      var(--einv-cream);
    color: var(--einv-text);
    padding: 88px 6vw 96px;
    position: relative;
    overflow: hidden;
  }

  #einv-section .einv-h2,
  #einv-section h2.einv-h2 { font-family: 'Sora', sans-serif; }

  /* faint ledger-grid texture in the background, nod to Tally's grid/ledger DNA */
  #einv-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(199,154,46,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(199,154,46,0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    pointer-events: none;
  }

  .einv-wrap {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* ---------- Heading ---------- */
  .einv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--einv-navy);
    color: var(--einv-gold-light);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
  }
  .einv-eyebrow .einv-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--einv-sky);
    box-shadow: 0 0 0 3px rgba(46,159,224,0.25);
  }

  .einv-h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--einv-navy);
    margin: 0 0 14px;
    max-width: 720px;
  }
  .einv-h2 span {
    background: linear-gradient(92deg, var(--einv-sky-deep), var(--einv-sky) 55%, var(--einv-gold) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .einv-sub {
    font-size: 16.5px;
    color: var(--einv-text-soft);
    max-width: 620px;
    margin: 0 0 56px;
    line-height: 1.6;
  }

  /* ---------- Grid layout ---------- */
  .einv-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
  }

  /* ---------- LEFT: process / assistance list ---------- */
  .einv-steps { position: relative; }

  .einv-steps-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--einv-navy);
    margin: 0 0 6px;
  }
  .einv-steps-note {
    font-size: 14px;
    color: var(--einv-text-soft);
    margin: 0 0 28px;
  }

  .einv-steplist {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  /* connecting rail */
  .einv-steplist::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      var(--einv-line) 0 6px,
      transparent 6px 12px
    );
  }

  .einv-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 14px 14px 14px 0;
    border-radius: 14px;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .einv-step:hover {
    background: rgba(255,255,255,0.55);
    transform: translateX(2px);
  }

  .einv-step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--einv-white);
    border: 1.5px solid var(--einv-line);
    color: var(--einv-sky-deep);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(15,42,74,0.06);
  }

  .einv-step-title {
    font-weight: 700;
    color: var(--einv-navy);
    font-size: 15.5px;
    margin: 0 0 4px;
  }
  .einv-step-desc {
    font-size: 13.8px;
    color: var(--einv-text-soft);
    line-height: 1.55;
    margin: 0;
  }
  .einv-step-desc b { color: var(--einv-navy); font-weight: 700; }

  .einv-badge-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed var(--einv-line);
  }
  .einv-badge-strip span {
    font-size: 12px;
    font-weight: 600;
    color: var(--einv-navy-soft);
    background: var(--einv-white);
    border: 1px solid var(--einv-line);
    padding: 6px 12px;
    border-radius: 999px;
  }

  /* ---------- RIGHT: enquiry form card ---------- */
  .einv-formcard {
    background: white;
    border: 1px solid var(--einv-line);
    border-radius: 20px;
    padding: 30px 28px 28px;
    box-shadow: 0 18px 40px -18px rgba(15,42,74,0.28);
    position: relative;
    overflow: hidden;
  }
  .einv-formcard::after {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(46,159,224,0.16), transparent 70%);
  }

  .einv-formcard-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
  }
  .einv-formcard-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--einv-sky), var(--einv-sky-deep));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .einv-formcard-icon svg { width: 18px; height: 18px; }

  .einv-formcard h3 {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--einv-navy);
    margin: 0;
  }
  .einv-formcard-sub {
    font-size: 13.5px;
    color: var(--einv-text-soft);
    margin: 6px 0 22px;
  }

  .einv-field { margin-bottom: 14px; }
  .einv-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--einv-navy-soft);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
  .einv-field input,
  .einv-field select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--einv-text);
    padding: 11px 13px;
    border-radius: 10px;
    border: 1.5px solid #E7E0C9;
    background: #FDFBF3;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    appearance: none;
  }
  .einv-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C79A2E'><path d='M5.5 7.5l4.5 5 4.5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 34px;
  }
  .einv-field input:focus,
  .einv-field select:focus {
    border-color: var(--einv-sky);
    box-shadow: 0 0 0 3px rgba(46,159,224,0.15);
  }
  .einv-field input::placeholder { color: #A9A48C; }

  .einv-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .einv-submit {
    width: 100%;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    padding: 13px 18px;
    border-radius: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--einv-navy);
    background: #FCAF1B;
    box-shadow: 0 10px 22px -8px rgba(199,154,46,0.55);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .einv-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 26px -8px rgba(199,154,46,0.65); }
  .einv-submit:active { transform: translateY(0); }

  .einv-privacy {
    font-size: 11.5px;
    color: var(--einv-text-soft);
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.5;
  }

  .einv-status {
    display: none;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
  }
  .einv-status.einv-status-ok {
    display: block;
    background: rgba(46,159,224,0.12);
    color: var(--einv-sky-deep);
    border: 1px solid rgba(46,159,224,0.3);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .einv-grid { grid-template-columns: 1fr; gap: 40px; }
    #einv-section { padding: 64px 5vw 72px; }
  }
  @media (max-width: 480px) {
    .einv-row2 { grid-template-columns: 1fr; }
    .einv-formcard { padding: 24px 18px; }
  }

  /* ===================== FOOTER ===================== */
  .site-footer{
    background:var(--navy-950);
    color:rgba(255,255,255,0.6);
    padding:56px 24px 28px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:40px;
    padding-bottom:36px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand{display:flex; align-items:center; gap:10px; color:var(--white); font-family:var(--font-display); font-weight:700; margin-bottom:14px;}
  .footer-brand img{width:32px;height:32px;border-radius:7px;}
  .footer-col h5{color:var(--white); font-size:0.85rem; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:16px; font-family:var(--font-mono); font-weight:600;}
  .footer-col ul{display:flex; flex-direction:column; gap:11px;}
  .footer-col a{font-size:0.9rem; transition:color .2s ease;}
  .footer-col a:hover{color:var(--gold-300);}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:24px;
    font-size:0.82rem;
    flex-wrap:wrap;
    gap:12px;
  }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr; padding-top:52px;}
    .hero-content{order:-1;}
    .hero-visual{margin-top:36px;}
    .invoice-card{max-width:340px;}
    .card-grid{grid-template-columns:1fr; gap:20px;}
    .process-layout{grid-template-columns:1fr; gap:48px;}
    .process-media{position:static;}
    .configure-layout{grid-template-columns:1fr; gap:44px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }

  @media (max-width: 760px){
    .nav-links{
      position:fixed;
      top:68px; left:0; right:0;
      background:var(--white);
      flex-direction:column;
      align-items:flex-start;
      gap:0;
      padding:8px 24px 20px;
      border-bottom:1px solid var(--line);
      transform:translateY(-8px);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .nav-links.open{opacity:1; transform:translateY(0); pointer-events:auto;}
    .nav-links a{padding:12px 0; width:100%; border-bottom:1px solid var(--line);}
    .nav-toggle{display:flex;}
    .nav-actions .nav-cta{display:none;}
    .brand-name-full{display:none;}

    .section{padding:64px 20px;}
    .hero-grid{padding:48px 20px 64px;}
    .hero-actions{flex-direction:column; align-items:flex-start;}

    .process-path{left:22px;}
    .step{width:100%; padding-left:52px; text-align:left !important; margin-bottom:32px;}
    .step:nth-child(odd) .step-node, .step:nth-child(even) .step-node{left:14px; right:auto;}

    .footer-grid{grid-template-columns:1fr; gap:28px;}
    .footer-bottom{flex-direction:column; align-items:flex-start;}
  }

  @media (min-width: 1400px){
    .wrap, .hero-grid, .section{max-width:1320px;}
  }
  /* adding logo */
  .hero-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.asp-logo{
    margin-top: -150px;
    margin-bottom:50px;
}

.asp-logo img{
    max-width:180px;
    height:auto;
    display:block;
}
.asp-logo img{
    width:220px;
}
@media (max-width:768px){

    .hero-grid{
        padding-left:20px !important;
        padding-right:20px !important;
    }

}
/* Hide ASP logo on mobile */
@media (max-width:768px){
    .asp-logo{
        display:none;
    }
}
/* faq */
#hjfaq-section {
    --hjfaq-cream: #FBF5E6;
    --hjfaq-navy: #0F2A4A;
    --hjfaq-navy-soft: #1F4368;
    --hjfaq-sky: #2E9FE0;
    --hjfaq-sky-deep: #1477B8;
    --hjfaq-gold: #C79A2E;
    --hjfaq-gold-light: #E8C766;
    --hjfaq-white: #FFFFFF;
    --hjfaq-line: #E7E0C9;
    --hjfaq-text: #000000;   /* solid black, per requirement */

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--hjfaq-cream);
    padding: 88px 6vw 100px;
    position: relative;
    overflow: hidden;
  }

  #hjfaq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(199,154,46,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(199,154,46,0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
    pointer-events: none;
  }

  .hjfaq-wrap {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* ---------- Heading ---------- */
  .hjfaq-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }

  .hjfaq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hjfaq-navy);
    color: var(--hjfaq-gold-light);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
  }
  .hjfaq-eyebrow .hjfaq-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--hjfaq-sky);
    box-shadow: 0 0 0 3px rgba(46,159,224,0.25);
  }

  .hjfaq-h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--hjfaq-navy);
    margin: 0 0 14px;
  }
  .hjfaq-h2 span {
    background: linear-gradient(92deg, var(--hjfaq-sky-deep), var(--hjfaq-sky) 55%, var(--hjfaq-gold) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hjfaq-sub {
    font-size: 16px;
    color: var(--hjfaq-navy-soft);
    line-height: 1.6;
    margin: 0;
  }

  /* ---------- Two-column layout ---------- */
  .hjfaq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .hjfaq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* ---------- FAQ item ---------- */
  .hjfaq-item {
    background: var(--hjfaq-white);
    border: 1.5px solid var(--hjfaq-line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .hjfaq-item.hjfaq-open {
    border-color: var(--hjfaq-sky);
    box-shadow: 0 14px 30px -18px rgba(15,42,74,0.35);
  }

  .hjfaq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Inter', sans-serif;
  }

  .hjfaq-question-text {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--hjfaq-text);   /* solid black */
    line-height: 1.45;
    margin: 0;
  }

  .hjfaq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--hjfaq-cream);
    border: 1.5px solid var(--hjfaq-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
  }
  .hjfaq-icon::before,
  .hjfaq-icon::after {
    content: "";
    position: absolute;
    background: var(--hjfaq-navy);
    border-radius: 2px;
    transition: transform 0.25s ease, background 0.2s ease;
  }
  .hjfaq-icon::before { width: 12px; height: 2px; }
  .hjfaq-icon::after   { width: 2px; height: 12px; }

  .hjfaq-item.hjfaq-open .hjfaq-icon {
    background: var(--hjfaq-gold);
    border-color: var(--hjfaq-gold);
  }
  .hjfaq-item.hjfaq-open .hjfaq-icon::before,
  .hjfaq-item.hjfaq-open .hjfaq-icon::after { background: var(--hjfaq-white); }
  .hjfaq-item.hjfaq-open .hjfaq-icon::after { transform: rotate(90deg) scaleY(0); }

  .hjfaq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }
  .hjfaq-answer {
    padding: 0 20px 20px 20px;
    font-size: 14.5px;
    color: var(--hjfaq-text);   /* solid black */
    line-height: 1.65;
    margin: 0;
  }

  .hjfaq-question:hover .hjfaq-question-text { color: var(--hjfaq-sky-deep); }
  .hjfaq-question:focus-visible {
    outline: 2px solid var(--hjfaq-sky);
    outline-offset: -2px;
  }

  /* ---------- Bottom CTA strip ---------- */
  .hjfaq-cta {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
  }
  .hjfaq-cta p {
    margin: 0;
    font-size: 14.5px;
    color: var(--hjfaq-navy-soft);
    font-weight: 500;
  }
  .hjfaq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--hjfaq-navy);
    background: linear-gradient(92deg, var(--hjfaq-gold-light), var(--hjfaq-gold));
    padding: 11px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 22px -10px rgba(199,154,46,0.55);
    transition: transform 0.15s ease;
  }
  .hjfaq-cta a:hover { transform: translateY(-1px); }

  /* ---------- Responsive ---------- */
  @media (max-width: 860px) {
    .hjfaq-columns { grid-template-columns: 1fr; gap: 14px; }
    #hjfaq-section { padding: 64px 5vw 76px; }
  }
