/* Import brand font */
  @import url('https://fonts.googleapis.com/css2?family=Kodchasan:wght@300;400;600;700&display=swap');

  .h2hpl-hero {
    font-family: 'Kodchasan', system-ui, sans-serif;
    background: radial-gradient(circle at top left, rgba(46, 182, 198, 0.22), transparent 55%),
                radial-gradient(circle at bottom right, rgba(9, 12, 23, 0.95), #05060a 65%);
    color: #f4feff;
    border-radius: 24px;
    padding: 2.75rem 2.4rem;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
  }

  .h2hpl-hero-inner {
    display: flex;
    gap: 2.4rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .h2hpl-hero-text {
    flex: 1 1 320px;
    max-width: 620px;
  }

  .h2hpl-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9de9f3;
    margin-bottom: 0.75rem;
  }

  .h2hpl-hero-title {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    line-height: 1.15;
    margin: 0 0 0.8rem;
  }

  .h2hpl-hero-highlight {
    color: #2EB6C6;
    text-shadow: 0 0 16px rgba(46, 182, 198, 0.85);
  }

  .h2hpl-hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 34rem;
    color: #d4ecf1;
    margin-bottom: 1.4rem;
  }

  .h2hpl-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
    font-size: 0.9rem;
    color: #9fd3de;
    margin-bottom: 1.75rem;
  }

  .h2hpl-meta-pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(9, 19, 30, 0.8);
    border: 1px solid rgba(87, 189, 204, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .h2hpl-meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #2EB6C6;
  }

  .h2hpl-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
  }

  .h2hpl-btn-primary,
  .h2hpl-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease-out;
    cursor: pointer;
    white-space: nowrap;
  }

  .h2hpl-btn-primary {
    background-image: linear-gradient(135deg, #2EB6C6, #5DF0FF);
    color: #041218;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }

  .h2hpl-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
    filter: brightness(1.05);
  }

  .h2hpl-btn-ghost {
    border: 1px solid rgba(151, 222, 233, 0.75);
    color: #d6f7ff;
    background: rgba(4, 16, 22, 0.6);
  }

  .h2hpl-btn-ghost:hover {
    background: rgba(14, 48, 60, 0.9);
    border-color: #2EB6C6;
  }

  .h2hpl-btn-subtext {
    font-size: 0.82rem;
    opacity: 0.82;
  }

  .h2hpl-hero-visual {
    flex: 0 0 260px;
    max-width: 320px;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .h2hpl-hero-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(46, 182, 198, 0.6), transparent 70%);
    filter: blur(6px);
    transform: translateY(10px);
  }

  .h2hpl-hero-image-wrap {
    position: relative;
    z-index: 1;
    padding: 1.4rem 1.2rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(160deg, rgba(10, 18, 26, 0.95), rgba(14, 38, 53, 0.96));
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(92, 214, 228, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .h2hpl-hero-image-wrap img {
    max-height: 210px;
    width: auto;
    display: block;
  }

  .h2hpl-hero-chip {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9de9f3;
    opacity: 0.85;
  }

  .h2hpl-hero-rating {
    font-size: 0.78rem;
    color: #d9f9ff;
  }

  .h2hpl-star {
    font-size: 0.86rem;
    margin-right: 2px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .h2hpl-hero-inner { flex-direction: column; }
    .h2hpl-hero-visual { order: -1; margin-bottom: 1.3rem; }
  }