/* ─── HERO ─── */
.expertod-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  overflow: hidden;

  background-image:
    linear-gradient(
      to left,
      rgba(5, 15, 30, 0.2),
      rgba(5, 15, 30, 0.8)
    ),
    url("../../images/bg_hero.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.expertod-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center,
      transparent 45%,
      rgba(0,0,0,0.15) 70%,
      rgba(0,0,0,0.55) 100%);
      
  pointer-events: none;
}
.expertod-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  box-shadow:
    inset 0 0 120px rgba(7,17,31,0.8),
    inset 0 0 220px rgba(7,17,31,0.6);

  pointer-events: none;
}

#wrapperHeroContent {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(42, 166, 255, 0.35), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 188, 90, 0.22), transparent 26%),
    radial-gradient(circle at 65% 85%, rgba(44, 212, 191, 0.2), transparent 30%);
  opacity: 0.9;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #d8ecff;
}

.hero-content h2 {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
  color: #f4f8ff;
}

.hero-content p {
  margin: 0;
  max-width: 560px;
  font-size: 1.16rem;
  line-height: 1.9;
  color: #e1eaf4;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-btn {
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  background: #ffffff;
  color: #0b1e33;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.hero-image-wrap {
  position: relative;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.04));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(48, 173, 255, .16));
  filter: blur(18px);
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

@media (max-width: 900px) {
  #wrapperHeroContent {
    min-height: auto;
    /* padding: 72px 0 48px; */
    flex-direction: column;
    gap: 50px;

  }
}

@media (max-width: 900px) {
  .expertod-hero {
    min-height: auto;
    /* padding: 72px 0 48px; */
    gap: 50px;
    padding: 30px 50px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    height: 320px;
  }
}


      /* ─── SECTION WRAPPER ─── */
      section {
        padding: 64px 20px;
      }
      .section-inner {
        max-width: 1100px;
        margin: 0 auto;
      }

      .section-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: rgb(1, 47, 58);
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .section-label::before {
        content: "";
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
      }
      .section-title {
        font-size: clamp(26px, 5vw, 40px);
        font-weight: 800;
        letter-spacing: -0.8px;
        color: var(--text-dark);
        margin-bottom: 8px;
      }
      .section-desc {
        font-size: 15px;
        color: var(--text-soft);
        line-height: 1.7;
        margin-bottom: 36px;
      }

      /* ─── CTA STRIP ─── */
      .cta-section {
        padding: 40px 20px;
        background-color: #050914;
      }
      .cta-card {
        max-width: 1100px;
        margin: 0 auto;
        background: linear-gradient(
          120deg,
          rgb(141, 20, 64) 40%,
          rgb(223, 51, 114) 100%
        );
        border-radius: var(--radius-lg);
        padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 64px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
        box-shadow: 0 16px 60px rgba(7, 95, 63, 0.25);
      }

      .cta-text-wrap {
        position: relative;
        z-index: 1;
      }
      .cta-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .cta-title {
        font-size: clamp(18px, 4vw, 28px);
        font-weight: 800;
        color: #fff;
        line-height: 1.3;
        max-width: 400px;
      }
      .cta-title span {
        color: var(--gold-light);
      }

      .btn-cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #1aae51;
        color: #fff;
        border: none;
        border-radius: var(--radius-pill);
        padding: 16px 30px;
        font-size: 15px;
        font-weight: 700;
        font-family: var(--font);
        cursor: pointer;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        white-space: nowrap;
        text-decoration: none;
      }
      .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
      }
      .btn-cta svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
      }

      /* ─── STATS ─── */
      .stats-inner {
        border-radius: 10px;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      @media (min-width: 700px) {
        .stats-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      .stat-card {
        background: rgb(230, 247, 255);
        /* border: 1.5px solid var(--border); */
        border-radius: var(--radius-card);
        padding: 28px 20px;
        text-align: center;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
      }
      .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
      }
      .stat-num {
        font-size: clamp(32px, 7vw, 50px);
        font-weight: 900;
        color: rgb(1, 47, 58);
        letter-spacing: -2px;
        line-height: 1;
        margin-bottom: 6px;
      }
      .stat-num .plus {
        color: rgb(249, 61, 129);
      }
      .stat-desc {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-mid);
      }