@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap');

.apm-home-hero-web,
.apm-home-hero-web * {
  box-sizing: border-box;
}

.apm-home-hero-web {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}



html body .apm-home-hero-web {
  position: relative !important;
  width: 100% !important;
  min-height: 760px !important;
  overflow: hidden !important;
  background: #001834 !important;
  color: #ffffff !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* ============================= */
/* HERO SECTION                  */
/* ============================= */

.apm-home-hero-web {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: #001834;
  color: #ffffff;
  border-bottom: 1px solid rgba(143, 168, 204, 0.28);
}

/* ============================= */
/* RIGHT SIDE IMAGE              */
/* ============================= */

.apm-home-hero-web__scene {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
 /* background-image: url("https://agilepm.education/wp-content/uploads/2026/06/hero-photo-1.webp"); */
  background-image: url("https://agilepm.education/wp-content/uploads/2026/06/home-hero4.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ============================= */
/* PREMIUM BLEND / TRANSITION    */
/* ============================= */

.apm-home-hero-web::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      #001834 0%,
      #001834 30%,
      rgba(0, 24, 52, 0.98) 36%,
      rgba(0, 24, 52, 0.90) 43%,
      rgba(0, 24, 52, 0.72) 50%,
      rgba(0, 24, 52, 0.46) 58%,
      rgba(0, 24, 52, 0.22) 68%,
      rgba(0, 24, 52, 0.06) 78%,
      rgba(0, 24, 52, 0.00) 88%
    ),
    radial-gradient(
      circle at 22% 48%,
      rgba(0, 87, 150, 0.20) 0%,
      rgba(0, 87, 150, 0.10) 24%,
      rgba(0, 87, 150, 0.00) 48%
    );
}

.apm-home-hero-web::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 24, 52, 0.08) 0%,
      rgba(0, 24, 52, 0.00) 42%,
      rgba(0, 24, 52, 0.18) 100%
    ),
    linear-gradient(
      270deg,
      rgba(0, 24, 52, 0.18) 0%,
      rgba(0, 24, 52, 0.00) 22%
    );
}

/* ============================= */
/* CONTENT LAYOUT                */
/* ============================= */

.apm-home-hero-web__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-bottom: 110px;
}

.apm-home-hero-web__content {
  width: 52%;
  padding: 56px 42px 48px clamp(90px, 12vw, 230px);
  position: relative;
  z-index: 5;
}

/* ============================= */
/* TITLE                         */
/* ============================= */

.apm-home-hero-web__title {
  margin: 0;
  color: #ffffff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(42px, 3.15vw, 56px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
}

.apm-home-hero-web__title span {
  color: #f0a944;
  font-family: 'Sora', system-ui, sans-serif;
}

.apm-home-hero-web__title-line--first {
  display: inline-block;
  white-space: nowrap;
  color: #ffffff !important;
  font-family: 'Sora', system-ui, sans-serif;
}

/* ============================= */
/* PARAGRAPH                     */
/* ============================= */

.apm-home-hero-web__text {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 22px);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

/* ============================= */
/* BUTTONS                       */
/* ============================= */

.apm-home-hero-web__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.apm-home-hero-web__btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 7px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.apm-home-hero-web__btn--primary {
  background: #f0b347;
  color: #081b3b !important;
  border: 2px solid #f0b347;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 18px rgba(0, 0, 0, 0.16);
}

.apm-home-hero-web__btn--primary:hover {
  background: #e6a73b;
  border-color: #e6a73b;
  color: #081b3b !important;
  transform: translateY(-1px);
}

.apm-home-hero-web__btn--secondary {
  background: rgba(4, 17, 38, 0.30);
  color: #ffffff !important;
  border: 2px solid rgba(240, 179, 71, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.apm-home-hero-web__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #f0b347;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.apm-home-hero-web__btn span {
  font-size: 18px;
  line-height: 1;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ============================= */
/* FEATURES                      */
/* ============================= */

.apm-home-hero-web__features {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}

.apm-home-hero-web__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.apm-home-hero-web__feature-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 2px solid #d59a39;
  color: #d59a39;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Inter', system-ui, sans-serif;
}

.apm-home-hero-web__feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ============================= */
/* BOTTOM STATS BAR              */
/* ============================= */

.apm-home-hero-web__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 0;
}

.apm-home-hero-web__stats-inner {
  width: 100%;
  min-height: 98px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(0, 24, 52, 0.98) 0%,
      rgba(0, 43, 72, 0.96) 34%,
      rgba(0, 63, 86, 0.94) 62%,
      rgba(0, 32, 62, 0.98) 100%
    );

  border-radius: 0;
  border-top: 1px solid rgba(240, 179, 71, 0.34);
  border-left: none;
  border-right: none;
  border-bottom: none;

  box-shadow:
    0 -18px 48px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;

  overflow: hidden;
  backdrop-filter: blur(8px);
}

.apm-home-hero-web__stat {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 28px;
  position: relative;
}

.apm-home-hero-web__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(240, 179, 71, 0.22);
}

.apm-home-hero-web__stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0b347;
}

.apm-home-hero-web__stat-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.apm-home-hero-web__stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.apm-home-hero-web__stat-text strong {
  color: #ffffff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.apm-home-hero-web__stat-text span {
  color: rgba(255, 255, 255, 0.94);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================= */
/* GOLD ARCS                     */
/* ============================= */

.apm-home-hero-web__arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.apm-home-hero-web__arc--1 {
  width: 980px;
  height: 980px;
  left: 46%;
  top: -170px;
  border: 2px solid rgba(214, 154, 57, 0.62);
}

.apm-home-hero-web__arc--2 {
  width: 900px;
  height: 900px;
  left: 49%;
  top: -130px;
  border: 2px solid rgba(214, 154, 57, 0.42);
}

.apm-home-hero-web__arc--3 {
  width: 820px;
  height: 820px;
  left: 52%;
  top: -90px;
  border: 2px solid rgba(214, 154, 57, 0.24);
}

.apm-home-hero-web__arc--4 {
  width: 720px;
  height: 720px;
  left: 55%;
  top: -40px;
  border: 1px solid rgba(214, 154, 57, 0.16);
}

/* ============================= */
/* GOLD DOT GRIDS                */
/* ============================= */

.apm-home-hero-web__dots {
  position: absolute;
  width: 108px;
  height: 108px;
  background-image: radial-gradient(
    rgba(214, 154, 57, 0.78) 1.25px,
    transparent 1.25px
  );
  background-size: 14px 14px;
  opacity: 0.82;
  pointer-events: none;
  z-index: 3;
}

.apm-home-hero-web__dots--top {
  top: 28px;
  left: 38%;
}

.apm-home-hero-web__dots--bottom {
  right: 22px;
  bottom: 118px;
}

/* ============================= */
/* RESPONSIVE - DESKTOP / LARGE  */
/* ============================= */

@media (min-width: 1301px) {
  .apm-home-hero-web__title {
    font-size: clamp(44px, 3.25vw, 56px);
  }
}

/* ============================= */
/* RESPONSIVE - SMALL DESKTOP    */
/* ============================= */

@media (min-width: 1025px) and (max-width: 1300px) {
  .apm-home-hero-web {
    min-height: 740px;
  }

  .apm-home-hero-web__inner {
    min-height: 630px;
  }

  .apm-home-hero-web__content {
    width: 56%;
    padding: 48px 30px 42px clamp(48px, 6vw, 92px);
  }

  .apm-home-hero-web__title {
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .apm-home-hero-web__title-line--first {
    white-space: nowrap;
    color: #ffffff !important;
  }

  .apm-home-hero-web__text {
    font-size: 20px;
    line-height: 1.6;
  }

  .apm-home-hero-web__feature {
    font-size: 17px;
  }

  .apm-home-hero-web__stats {
    padding: 0;
  }

  .apm-home-hero-web__stat {
    gap: 16px;
    padding: 18px 20px;
  }

  .apm-home-hero-web__stat-text span {
    font-size: 15px;
  }

  .apm-home-hero-web__arc--1 {
    width: 860px;
    height: 860px;
    left: 45%;
    top: -140px;
  }

  .apm-home-hero-web__arc--2 {
    width: 790px;
    height: 790px;
    left: 48%;
    top: -105px;
  }

  .apm-home-hero-web__arc--3 {
    width: 710px;
    height: 710px;
    left: 51%;
    top: -65px;
  }
}

/* ============================= */
/* RESPONSIVE - TABLET           */
/* ============================= */

@media (min-width: 768px) and (max-width: 1024px) {
  .apm-home-hero-web {
    min-height: auto;
    height: auto;
    overflow: hidden;
  }

  .apm-home-hero-web__scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 760px;
    opacity: 0.28;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .apm-home-hero-web::before {
    background:
      linear-gradient(
        90deg,
        rgba(0, 24, 52, 0.97) 0%,
        rgba(0, 24, 52, 0.94) 45%,
        rgba(0, 24, 52, 0.82) 100%
      );
  }

  .apm-home-hero-web__inner {
    min-height: 620px;
    padding: 0;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
  }

  .apm-home-hero-web__content {
    width: 100%;
    padding: 48px 24px 40px;
    position: relative;
    z-index: 5;
  }

  .apm-home-hero-web__title {
    font-size: clamp(34px, 4.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .apm-home-hero-web__title-line--first {
    white-space: nowrap;
    color: #ffffff !important;
  }

  .apm-home-hero-web__text {
    font-size: 18px;
    line-height: 1.58;
  }

  .apm-home-hero-web__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
  }

  .apm-home-hero-web__btn {
    width: auto;
    min-width: 0;
    min-height: 50px;
    height: 50px;
    padding: 0 20px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
    letter-spacing: 0.04em;
  }

  .apm-home-hero-web__btn span {
    font-size: 17px;
  }

  .apm-home-hero-web__features {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .apm-home-hero-web__stats {
    position: relative;
    z-index: 6;
    padding: 0;
  }

  .apm-home-hero-web__stats-inner {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

  .apm-home-hero-web__stat {
    min-height: 92px;
  }

  .apm-home-hero-web__stat:nth-child(2)::after {
    display: none;
  }

  .apm-home-hero-web__stat:nth-child(1),
  .apm-home-hero-web__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .apm-home-hero-web__arc--1,
  .apm-home-hero-web__arc--2,
  .apm-home-hero-web__arc--3,
  .apm-home-hero-web__arc--4 {
    opacity: 0.45;
  }
}

/* ============================= */
/* RESPONSIVE - MOBILE           */
/* ============================= */

@media (max-width: 767px) {
  html body .apm-home-hero-web {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden !important;
    background: #001834 !important;
    color: #ffffff !important;
  }

  .apm-home-hero-web__scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 860px;
    opacity: 0.22;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .apm-home-hero-web__inner {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 4;
  }

  .apm-home-hero-web__content {
    width: 100%;
    padding: 56px 20px 44px;
    position: relative;
    z-index: 5;
  }

  .apm-home-hero-web__title {
    font-size: clamp(27px, 7.2vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .apm-home-hero-web__title-line--first {
    white-space: nowrap;
    color: #ffffff !important;
  }

  .apm-home-hero-web__text {
    font-size: 17px;
    line-height: 1.58;
    letter-spacing: -0.005em;
    margin-top: 28px;
  }

  .apm-home-hero-web__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 34px;
  }

  .apm-home-hero-web__btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    height: 52px;
    padding: 0 24px;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .apm-home-hero-web__features {
    margin-top: 42px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .apm-home-hero-web__feature {
    font-size: 16px;
    white-space: normal;
  }

  .apm-home-hero-web__stats {
    padding: 0;
  }

  .apm-home-hero-web__stats-inner {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .apm-home-hero-web__stat {
    min-height: 84px;
    padding: 18px 20px;
  }

  .apm-home-hero-web__stat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .apm-home-hero-web__stat::after {
    display: none !important;
  }

  .apm-home-hero-web__stat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .apm-home-hero-web__stat-icon svg {
    width: 36px;
    height: 36px;
  }

  .apm-home-hero-web__stat-text strong {
    font-size: 28px;
    letter-spacing: -0.035em;
  }

  .apm-home-hero-web__stat-text span {
    font-size: 15px;
  }

  .apm-home-hero-web__dots--top {
    left: auto;
    right: 20px;
    top: 20px;
  }

  .apm-home-hero-web__dots--bottom {
    right: 18px;
    bottom: 18px;
    opacity: 0.45;
  }

  .apm-home-hero-web__arc--1 {
    width: 560px;
    height: 560px;
    left: 34%;
    top: -120px;
  }

  .apm-home-hero-web__arc--2 {
    width: 500px;
    height: 500px;
    left: 40%;
    top: -90px;
  }

  .apm-home-hero-web__arc--3,
  .apm-home-hero-web__arc--4 {
    display: none;
  }
}

/* ============================= */
/* RESPONSIVE - VERY SMALL MOBILE */
/* ============================= */

@media (max-width: 390px) {
  .apm-home-hero-web__title {
    font-size: clamp(22px, 5.8vw, 25px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .apm-home-hero-web__title-line--first {
    white-space: nowrap;
    color: #ffffff !important;
  }
}

/* ============================= */
/* LINK RESET                    */
/* ============================= */

.apm-home-hero-web a,
.apm-home-hero-web a:hover,
.apm-home-hero-web a:focus,
.apm-home-hero-web a:visited,
.apm-home-hero-web__btn,
.apm-home-hero-web__btn:hover,
.apm-home-hero-web__feature,
.apm-home-hero-web__feature span {
  text-decoration: none !important;
}

/* ============================= */
/* FINAL SAFETY OVERRIDES        */
/* ============================= */

.apm-home-hero-web .apm-home-hero-web__title-line--first {
  color: #ffffff !important;
  white-space: nowrap !important;
  font-family: 'Sora', system-ui, sans-serif !important;
}

.apm-home-hero-web .apm-home-hero-web__actions .apm-home-hero-web__btn {
  text-decoration: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

@media (min-width: 768px) {
  .apm-home-hero-web .apm-home-hero-web__actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .apm-home-hero-web .apm-home-hero-web__actions .apm-home-hero-web__btn {
    width: auto !important;
    min-width: 0 !important;
    min-height: 50px !important;
    height: 50px !important;
    padding: 0 20px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    letter-spacing: 0.04em !important;
  }

  .apm-home-hero-web .apm-home-hero-web__btn span {
    font-size: 17px !important;
  }
}

/* ============================= */
/* HERO STATS SVG MOBILE FIX     */
/* ============================= */

.apm-home-hero-web .apm-home-hero-web__stat-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 44px !important;
  color: #f0b347 !important;
}

.apm-home-hero-web .apm-home-hero-web__stat-icon svg {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  display: block !important;
  flex-shrink: 0 !important;
  stroke: currentColor !important;
}

/* ============================= */
/* MOBILE HERO STATS OVERLAP FIX */
/* ============================= */

@media (max-width: 767px) {
  .apm-home-hero-web {
    min-height: auto !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .apm-home-hero-web__inner {
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    padding-bottom: 34px !important;
  }

  .apm-home-hero-web__content {
    width: 100% !important;
    padding: 46px 20px 36px !important;
  }

  .apm-home-hero-web__actions {
    margin-top: 32px !important;
    margin-bottom: 0 !important;
  }

  .apm-home-hero-web__stats {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 6 !important;
    width: 100% !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .apm-home-hero-web__stats-inner {
    grid-template-columns: 1fr !important;
    border-radius: 0 !important;
  }
}