  :root{
    --brand-navy:#142235;
    --brand-blue:#24476f;
    --brand-accent:#2f80ed;
    --brand-accent-dark:#1f6dd4;
    --brand-gold:#f4b740;
    --page-bg:#f4f7fb;
    --card-bg:#ffffff;
    --text-main:#1e2a36;
    --text-muted:#6b7a8c;
    --border-soft:#e5ebf3;
    --success-bg:#eaf8ef;
    --success-text:#18794e;
    --shadow-soft:0 16px 40px rgba(18, 36, 61, 0.08);
    --shadow-card:0 10px 30px rgba(17, 34, 51, 0.08);
    --radius-xl:22px;
    --radius-lg:16px;
    --radius-md:12px;
  }

  body{
    background:var(--page-bg);
    color:var(--text-main);
  }

  .business-hero{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at top right, rgba(244,183,64,.25), transparent 28%),
      radial-gradient(circle at bottom left, rgba(47,128,237,.18), transparent 30%),
      linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
    color:#fff;
    padding:5rem 0 4rem;
  }

  .business-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,0));
    pointer-events:none;
  }

  .business-hero .hero-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.45rem .9rem;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.01em;
    margin-bottom:1rem;
  }

  .business-hero h1{
    font-size:clamp(2rem, 4vw, 3.3rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:1rem;
  }

  .business-hero p{
    font-size:1.08rem;
    color:rgba(255,255,255,.88);
    max-width:700px;
    margin-bottom:1.75rem;
  }

  .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:.9rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary{
    border-radius:999px;
    padding:.85rem 1.35rem;
    font-weight:700;
    text-decoration:none;
    transition:all .2s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .btn-hero-primary{
    background:#fff;
    color:var(--brand-navy);
    box-shadow:0 10px 22px rgba(0,0,0,.12);
  }

  .btn-hero-primary:hover{
    transform:translateY(-1px);
    color:var(--brand-navy);
  }

  .btn-hero-secondary{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
  }

  .btn-hero-secondary:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
  }

  .section-wrap{
    margin-top:-2rem;
    position:relative;
    z-index:2;
  }

  .glass-panel{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.55);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-soft);
  }

  .page-intro{
    padding:1.35rem 1.4rem;
    margin-bottom:1.5rem;
  }

  .page-intro h2{
    margin:0 0 .35rem;
    font-size:1.25rem;
    font-weight:800;
  }

  .page-intro p{
    margin:0;
    color:var(--text-muted);
  }

  .modern-card{
    background:var(--card-bg);
    border:none;
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-card);
    overflow:hidden;
    height:100%;
  }

  .modern-card .card-header-modern{
    padding:1.2rem 1.35rem;
    background:linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    color:#fff;
  }

  .modern-card .card-header-modern h3,
  .modern-card .card-header-modern h4,
  .modern-card .card-header-modern h5{
    margin:0;
    font-weight:800;
  }

  .modern-card .card-body{
    padding:1.5rem;
  }

  .agreement-grid .col-lg-4,
  .agreement-grid .col-md-6{
    display:flex;
  }

  .link-card{
    position:relative;
    display:flex;
    flex-direction:column;
    width:100%;
    border-radius:var(--radius-xl);
    background:#fff;
    box-shadow:var(--shadow-card);
    border:1px solid var(--border-soft);
    transition:transform .18s ease, box-shadow .18s ease;
    overflow:hidden;
  }

  .link-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(17,34,51,.12);
  }

  .link-card-top{
    padding:1.25rem 1.25rem .8rem;
    background:linear-gradient(180deg, #f9fbfe 0%, #ffffff 100%);
  }

  .link-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(47,128,237,.14), rgba(244,183,64,.18));
    color:var(--brand-blue);
    font-size:1.35rem;
    margin-bottom:1rem;
    font-weight:800;
  }

  .link-card h5{
    font-size:1.1rem;
    font-weight:800;
    margin-bottom:.45rem;
    color:var(--text-main);
  }

  .link-card p{
    color:var(--text-muted);
    margin-bottom:0;
  }

  .link-card-bottom{
    padding:1rem 1.25rem 1.25rem;
    margin-top:auto;
  }

  .badge-soft{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:.35rem .7rem;
    background:#eef5ff;
    color:var(--brand-accent-dark);
    font-size:.8rem;
    font-weight:700;
    margin-bottom:.9rem;
  }

  .btn-modern,
  .btn-modern-outline{
    border:none;
    border-radius:12px;
    padding:.78rem 1rem;
    font-weight:700;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.4rem;
    transition:all .18s ease;
  }

  .btn-modern{
    color:#fff;
    background:linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    box-shadow:0 10px 18px rgba(47,128,237,.22);
  }

  .btn-modern:hover{
    color:#fff;
    transform:translateY(-1px);
  }

  .btn-modern-outline{
    color:var(--brand-blue);
    background:#f3f8ff;
    border:1px solid #d7e6fb;
  }

  .btn-modern-outline:hover{
    color:var(--brand-blue);
    background:#eaf3ff;
  }

  .btn-stack{
    display:grid;
    gap:.65rem;
  }

  .info-note{
    border-radius:16px;
    background:#f8fbff;
    border:1px solid #e4edf9;
    padding:1rem 1.1rem;
    color:var(--text-muted);
    margin-bottom:1.25rem;
  }

  .agreement-text{
    min-height:320px;
    resize:vertical;
    border-radius:14px;
    border:1px solid var(--border-soft);
    background:#fbfcfe;
    padding:1rem;
    font-size:.96rem;
    line-height:1.6;
  }

  .agreement-actions{
    display:flex;
    flex-wrap:wrap;
    gap:.8rem;
    align-items:center;
    justify-content:space-between;
    margin-top:1.2rem;
  }

  .form-label{
    font-weight:700;
    color:#314255;
    margin-bottom:.45rem;
  }

  .form-control,
  .form-select{
    min-height:48px;
    border-radius:12px;
    border:1px solid #d8e2ee;
    box-shadow:none !important;
  }

  textarea.form-control{
    min-height:120px;
  }

  .form-control:focus,
  .form-select:focus{
    border-color:#8cb7f5;
  }

  .invite-layout{
    display:grid;
    gap:1.5rem;
  }

  .invite-split{
    display:grid;
    grid-template-columns:1fr;
    gap:1.25rem;
  }

  @media (min-width: 992px){
    .invite-split{
      grid-template-columns:320px 1fr;
      align-items:start;
    }
  }

  .invite-side{
    background:linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    border:1px solid #dce9fa;
    border-radius:18px;
    padding:1.2rem;
  }

  .invite-side h4{
    font-size:1rem;
    font-weight:800;
    margin-bottom:.75rem;
  }

  .invite-side ul{
    padding-left:1rem;
    margin:0;
    color:var(--text-muted);
  }

  .invite-side li{
    margin-bottom:.45rem;
  }

  .small-muted{
    font-size:.9rem;
    color:var(--text-muted);
  }

  .success-chip{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    padding:.45rem .75rem;
    border-radius:999px;
    background:var(--success-bg);
    color:var(--success-text);
    font-size:.85rem;
    font-weight:700;
  }

  .divider-label{
    display:flex;
    align-items:center;
    gap:.85rem;
    color:var(--text-muted);
    font-weight:700;
    margin:.25rem 0;
  }

  .divider-label:before,
  .divider-label:after{
    content:"";
    flex:1;
    height:1px;
    background:#dfe7f1;
  }

  .empty-state{
    text-align:center;
    padding:2.5rem 1.5rem;
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-card);
  }

  .empty-state h3{
    font-weight:800;
    margin-bottom:.5rem;
  }

  .empty-state p{
    color:var(--text-muted);
    margin-bottom:0;
  }