/* ===============================
   HERO SECTION CLEANED
   =============================== */
   .pb-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-inverse);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    padding: var(--space-12) var(--space-4);
    overflow: hidden;
  }
  
  .pb-hero-home {
    min-height: 90vh;
  }
  
  /* Overlay (blue → pink gradient) */
  .pb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(33, 150, 243, 0.85) 0%,   /* blue */
      rgba(233, 30, 99, 0.85) 100%   /* pink */
    );
    z-index: 1;
  }
  
  /* Inner content */
  .pb-hero-inner {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    margin: 0 auto;
  }
  
  .pb-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text-inverse);
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  
  .pb-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: var(--space-6);
    color: var(--color-text-inverse);
    opacity: 0.95;
  }
  
  /* Buttons */
  /* .pb-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }
  
  .pb-hero-buttons .btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  */

  .pb-hero-buttons .btn-outline {
    color: var(--font-color-p-light);
  }
  .pb-hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--color-bg);
    border: 2px solid var(--color-border-primary);
  }
  /*
  .pb-hero-buttons .btn-outline {
    border: 2px solid var(--color-bg);
    color: var(--color-bg);
    background: transparent;
  }
  .pb-hero-buttons .btn-outline:hover {
    background: var(--color-bg);
    color: var(--color-brand-primary);
  } */

  .pb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(15, 45, 87, 0.1),
      rgba(233, 30, 99, 0.1)
    );
    z-index: 1;
    pointer-events: none;
  }
  .pb-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    box-shadow: inset 0 0 200px rgba(255,255,255,0.5); /* white glow */
  }
  
  
  
  /* Wave at bottom */
  .pb-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
  }
  .pb-hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
  }
  