
  *, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  
  :root {
    --blue: #1a56ff;
    --blue-mid: #4f75ff;
    --blue-light: #e8edff;
    --cyan: #00d4ff;
    --dark: #111320;
    --muted: #6b7280;
    --white: #ffffff;
    --off: #f7f8fc;
    --border: #e2e6f0;
  }
  
  body {
    background: var(--white);
    color: var(--dark);
    font-family: 'Inter', system-ui, sans-serif;
  }
  
  /* =========================
     HERO
  ========================= */
  .head {
    background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #0a1a3a 100%);
    position: relative;
    overflow: hidden;
  }
  
  .head::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  
  .head::after {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .main-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 7vw, 7rem);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(26,86,255,0.4);
    background: rgba(26,86,255,0.08);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6b9fff;
    font-weight: 600;
  }
  
  .main-head h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0;
  }
  
  .main-head p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
  }
  
  /* =========================
     CARDS SECTION
  ========================= */
  .second-head {
    background: var(--off);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  }
  
  .usertype {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .usertype a {
    text-decoration: none !important;
    flex: 1;
    display: flex;
  }
  
  /* Common card styles */
  .company,
  .staffingCompany,
  .Indiviudal {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
  }
  
  /* Blue top bar reveal on hover */
  .company::before,
  .staffingCompany::before,
  .Indiviudal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  .company:hover,
  .staffingCompany:hover,
  .Indiviudal:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,86,255,0.12);
  }
  
  .company:hover::before,
  .staffingCompany:hover::before,
  .Indiviudal:hover::before { opacity: 1; }
  
  /* Icon box */
  .card-icon {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  
  .company:hover .card-icon,
  .staffingCompany:hover .card-icon,
  .Indiviudal:hover .card-icon {
    background: var(--blue);
  }
  
  .card-icon i {
    font-size: 1.6rem;
    color: var(--blue) !important;
    transition: color 0.25s ease;
  }
  
  .company:hover .card-icon i,
  .staffingCompany:hover .card-icon i,
  .Indiviudal:hover .card-icon i {
    color: #fff !important;
  }
  
  /* Headings */
  .company h3,
  .staffingCompany h3,
  .Indiviudal h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--dark) !important;
    margin: 0;
    letter-spacing: -0.5px;
    transition: color 0.25s ease;
  }
  
  .company:hover h3,
  .staffingCompany:hover h3,
  .Indiviudal:hover h3 { color: var(--blue) !important; }
  
  /* Desc para */
  .company p,
  .staffingCompany p,
  .Indiviudal p {
    font-size: 13px;
    color: var(--muted) !important;
    line-height: 1.65;
    margin: 0;
    font-weight: 300;
  }
  
  .company p strong,
  .staffingCompany p strong,
  .Indiviudal p strong {
    color: var(--dark) !important;
    font-weight: 600;
  }
  
  /* Lists */
  .company ul,
  .staffingCompany ul,
  .Indiviudal ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .company ul li,
  .staffingCompany ul li,
  .Indiviudal ul li {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--muted) !important;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
    font-weight: 300;
  }
  
  .company ul li::before,
  .staffingCompany ul li::before,
  .Indiviudal ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue) !important;
    font-weight: 700;
    font-size: 13px;
  }
  
  /* =========================
     CTA BUTTON
  ========================= */
  .view {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 2rem;
    background: var(--white);
  }
  
  .pricing {
    padding: 14px 36px;
    background: var(--blue);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(26,86,255,0.35);
  }
  
  .pricing:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,86,255,0.45);
    color: #fff !important;
  }
  
  .pricing i {
    font-size: 15px;
    transition: transform 0.2s ease;
  }
  
  .pricing:hover i { transform: translateX(4px); }
  
  .pricing:active { transform: translateY(0); }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 1024px) {
    .usertype { gap: 1.5rem; }
  }
  
  @media (max-width: 768px) {
    .usertype {
      flex-direction: column;
      align-items: center;
    }
    .usertype a { width: 100%; }
    .main-head h3 { letter-spacing: -1px; }
  }
  
  @media (max-width: 480px) {
    .pricing { width: 100%; justify-content: center; }
    .view { padding: 3rem 1.5rem; }
  }