

/* ================= EXTRACTED FROM ORIGINAL FILE ================= */

:root {
      --ed-black: #111111;
      --ed-white: #ffffff;
      --ed-orange: #f58220;
      --ed-yellow: #ffc400;
      --ed-red: #e53920;
      --ed-red-yellow: linear-gradient(90deg, #e53920, #f58220, #ffc400);
      --ed-text: #151515;
      --ed-muted: #666666;
      --ed-soft: #f7f7f7;
      --ed-border: #eeeeee;
      --ed-container: 1400px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      font-family: "Manrope", sans-serif;
      color: var(--ed-text);
      background: #ffffff;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button,
    input {
      font-family: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .ed-container {
      max-width: var(--ed-container);
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* ================= TOP MARQUEE ================= */

    .ed-marquee-bar {
      height: 38px;
      background: #ffffff;
      border-bottom: 1px solid #eeeeee;
      overflow: hidden;
      display: flex;
      align-items: center;
      z-index: 1002;
      position: relative;
    }

    .ed-marquee-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: edMarqueeMove 34s linear infinite;
    }

    .ed-marquee-bar:hover .ed-marquee-track {
      animation-play-state: paused;
    }

    .ed-marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding-right: 52px;
      font-size: 13px;
      color: #222222;
    }

    .ed-marquee-item i {
      color: var(--ed-orange);
      font-size: 13px;
    }

    .ed-marquee-item b {
      font-weight: 600;
      color: var(--ed-red);
    }

    @keyframes edMarqueeMove {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ================= HEADER ================= */

    .ed-header-wrap {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ffffff;
      border-bottom: 1px solid #eeeeee;
    }

    .ed-header {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .ed-logo {
      min-width: 150px;
      display: inline-flex;
      align-items: center;
    }

    .ed-logo img {
      max-width: 150px;
      height: auto;
    }

    .ed-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-left: auto;
    }

    .ed-nav-item {
      position: relative;
      padding: 29px 0;
      font-size: 14.5px;
      color: #151515;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: color .25s ease;
    }

    .ed-nav-item i {
      font-size: 11px;
      margin-left: 6px;
      transition: transform .25s ease;
    }

    .ed-nav-item:hover {
      color: var(--ed-orange);
    }

    .ed-nav-item:hover i {
      transform: rotate(180deg);
    }

    .ed-header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ed-header-btn {
      border: 1px solid #111111;
      background: #111111;
      color: #ffffff;
      padding: 10px 17px;
      border-radius: 2px;
      font-size: 13.5px;
      font-weight: 600;
      white-space: nowrap;
      transition: all .25s ease;
    }

    .ed-header-btn:hover {
      background: var(--ed-orange);
      border-color: var(--ed-orange);
      color: #ffffff;
      transform: translateY(-1px);
    }

    .ed-mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid #eeeeee;
      background: #ffffff;
      color: #111111;
      border-radius: 2px;
      align-items: center;
      justify-content: center;
      font-size: 19px;
    }

    /* ================= MEGA MENU ================= */

    .ed-mega-panel {
      position: absolute;
      top: 100%;
      left: 24px;
      right: 24px;
      max-width: calc(var(--ed-container) - 48px);
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #eeeeee;
      border-top: 3px solid var(--ed-orange);
      border-radius: 3px;
      box-shadow: 0 28px 90px rgba(0, 0, 0, .10);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(14px);
      z-index: 1100;
      overflow: hidden;
      transition: all .25s ease;
    }

    .ed-header-wrap.ed-mega-open .ed-mega-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .ed-mega-inner {
      display: grid;
      grid-template-columns: 245px 1fr;
      min-height: 355px;
    }

    .ed-mega-sidebar {
      background: #111111;
      color: #ffffff;
      padding: 20px 0;
    }

    .ed-mega-side-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255,255,255,.58);
      padding: 0 24px 12px;
    }

    .ed-mega-side-link {
      position: relative;
      padding: 13px 24px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all .22s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #ffffff;
    }

    .ed-mega-side-link::after {
      content: "";
      position: absolute;
      left: 24px;
      bottom: 6px;
      width: 38px;
      height: 1px;
      background: var(--ed-orange);
      transition: width .25s ease;
    }

    .ed-mega-side-link:hover,
    .ed-mega-side-link.active {
      background: rgba(255,255,255,.08);
    }

    .ed-mega-side-link:hover::after,
    .ed-mega-side-link.active::after {
      width: 68px;
    }

    .ed-mega-content {
      padding: 28px 34px;
      background: #ffffff;
    }

    .ed-mega-pane {
      display: none;
    }

    .ed-mega-pane.active {
      display: block;
    }

    .ed-mega-title-row {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .ed-mega-title {
      font-size: 24px;
      line-height: 1.15;
      color: #111111;
      margin: 0 0 7px;
      font-weight: 600;
      letter-spacing: -.6px;
    }

    .ed-mega-title::after {
      content: "";
      display: block;
      width: 68px;
      height: 2px;
      margin-top: 10px;
      background: var(--ed-red-yellow);
    }

    .ed-mega-subtitle {
      margin: 0;
      max-width: 560px;
      color: #666666;
      font-size: 13.5px;
      line-height: 1.6;
    }

    .ed-mega-cta {
      color: #ffffff;
      background: #111111;
      padding: 10px 15px;
      border-radius: 2px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      transition: all .25s ease;
    }

    .ed-mega-cta:hover {
      color: #ffffff;
      background: var(--ed-orange);
      transform: translateY(-1px);
    }

    .ed-mega-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .ed-mega-card {
      border: 1px solid #eeeeee;
      padding: 18px;
      border-radius: 3px;
      background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
      transition: all .28s ease;
      min-height: 135px;
      position: relative;
      overflow: hidden;
    }

    .ed-mega-card::before {
      content: "";
      position: absolute;
      width: 82px;
      height: 82px;
      right: -42px;
      top: -42px;
      background: rgba(245, 130, 32, .08);
      border-radius: 50%;
      transition: all .3s ease;
    }

    .ed-mega-card:hover {
      transform: translateY(-4px);
      border-color: rgba(245, 130, 32, .42);
      box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
    }

    .ed-mega-card:hover::before {
      transform: scale(1.35);
    }

    .ed-mega-card-icon {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(245, 130, 32, .10);
      color: var(--ed-orange);
      border-radius: 2px;
      margin-bottom: 13px;
      position: relative;
      z-index: 2;
    }

    .ed-mega-card h4 {
      font-size: 15px;
      line-height: 1.35;
      font-weight: 600;
      margin: 0 0 7px;
      color: #151515;
      position: relative;
      z-index: 2;
    }

    .ed-mega-card p {
      font-size: 13px;
      color: #666666;
      line-height: 1.5;
      margin: 0;
      position: relative;
      z-index: 2;
    }

    .ed-course-mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .ed-course-mini-group h4 {
      color: #111111;
      font-size: 14px;
      font-weight: 600;
      margin: 0 0 12px;
    }

    .ed-course-mini-group h4::after {
      content: "";
      display: block;
      width: 36px;
      height: 2px;
      margin-top: 8px;
      background: var(--ed-orange);
    }

    .ed-course-mini-group ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .ed-course-mini-group li {
      border-bottom: 1px solid #eeeeee;
    }

    .ed-course-mini-group a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #151515;
      font-size: 13px;
      padding: 8px 0;
      transition: all .22s ease;
    }

    .ed-course-mini-group a i {
      font-size: 11px;
      color: var(--ed-orange);
      opacity: 0;
      transform: translateX(-5px);
      transition: all .22s ease;
    }

    .ed-course-mini-group a:hover {
      color: var(--ed-orange);
      padding-left: 5px;
    }

    .ed-course-mini-group a:hover i {
      opacity: 1;
      transform: translateX(0);
    }

    /* ================= HERO SLIDER ================= */

    .ed-hero-slider {
      position: relative;
      height: 560px;
      overflow: hidden;
      background: #111111;
    }

    .ed-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: scale(1.02);
      transition: opacity .7s ease, visibility .7s ease, transform 1.2s ease;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      color: #ffffff;
    }

    .ed-slide.active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      z-index: 2;
    }

    .ed-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.16) 100%);
      z-index: 1;
    }

    .ed-slide::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 100px;
      background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
      z-index: 2;
      pointer-events: none;
    }

    .ed-slide .ed-container {
      position: relative;
      z-index: 3;
      width: 100%;
    }

    .ed-slide-content {
      max-width: 720px;
      text-align: left;
      padding-bottom: 35px;
    }

    .ed-slide-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 11px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 2px;
      font-size: 13px;
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
    }

    .ed-slide-kicker i {
      color: var(--ed-orange);
    }

    .ed-slide h1 {
      font-size: clamp(38px, 5vw, 52px);
      line-height: 1.02;
      font-weight: 600;
      max-width: 740px;
      letter-spacing: -2.6px;
      margin: 0 0 16px;
    }

    .ed-slide p {
      max-width: 570px;
      font-size: 16px;
      line-height: 1.65;
      opacity: .92;
      margin: 0 0 24px;
    }

    .ed-hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .ed-hero-btn {
      padding: 12px 20px;
      background: var(--ed-orange);
      color: #ffffff;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 600;
      transition: all .25s ease;
    }

    .ed-hero-btn.alt {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.34);
      color: #ffffff;
      backdrop-filter: blur(8px);
    }

    .ed-hero-btn:hover {
      color: #ffffff;
      transform: translateY(-2px);
    }

    .ed-slider-controls {
      position: absolute;
      left: 50%;
      bottom: 86px;
      transform: translateX(-50%);
      width: 100%;
      max-width: var(--ed-container);
      padding-left: 24px;
      padding-right: 24px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      pointer-events: none;
    }

    .ed-slider-arrow {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.10);
      color: #ffffff;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      transition: all .25s ease;
      pointer-events: auto;
    }

    .ed-slider-arrow:hover {
      background: var(--ed-orange);
      border-color: var(--ed-orange);
      color: #ffffff;
    }

    .ed-slider-dots {
      position: absolute;
      left: 50%;
      bottom: 40px;
      transform: translateX(-50%);
      width: 100%;
      max-width: var(--ed-container);
      padding-left: 24px;
      padding-right: 24px;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ed-slider-dot {
      width: 32px;
      height: 3px;
      border: none;
      background: rgba(255,255,255,.38);
      border-radius: 0;
      padding: 0;
      transition: all .28s ease;
    }

    .ed-slider-dot.active {
      width: 52px;
      background: var(--ed-orange);
    }

    /* ================= SEARCH SECTION ================= */

    .ed-search-section {
      background: #ffffff;
      position: relative;
      z-index: 30;
      padding: 0 0 30px;
      margin-top: -48px;
    }

    .ed-search-shell {
      max-width: var(--ed-container);
      margin: 0 auto;
      padding: 0 24px;
    }

    .ed-search-box {
      background: rgba(255,255,255,.98);
      border: 1px solid #eeeeee;
      box-shadow: 0 22px 62px rgba(0, 0, 0, .10);
      border-radius: 4px;
      padding: 14px;
      display: grid;
      grid-template-columns: 180px 1fr 190px 175px;
      gap: 10px;
      align-items: center;
      backdrop-filter: blur(14px);
    }

    .ed-search-dropdown {
      position: relative;
    }

    .ed-program-select {
      width: 100%;
      height: 52px;
      background: #111111;
      color: #ffffff;
      border: none;
      border-radius: 2px;
      padding: 0 18px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .ed-program-select i {
      font-size: 12px;
      transition: transform .25s ease;
    }

    .ed-search-dropdown.active .ed-program-select i {
      transform: rotate(180deg);
    }

    .ed-dropdown-menu {
      position: absolute;
      left: 0;
      top: calc(100% + 8px);
      width: 100%;
      background: #ffffff;
      border: 1px solid #eeeeee;
      box-shadow: 0 16px 42px rgba(0,0,0,.10);
      border-radius: 3px;
      padding: 6px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      z-index: 60;
      transition: all .22s ease;
    }

    .ed-search-dropdown.active .ed-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .ed-dropdown-option {
      width: 100%;
      border: none;
      background: #ffffff;
      color: #151515;
      text-align: left;
      padding: 10px 11px;
      border-radius: 2px;
      font-size: 13.5px;
      display: flex;
      align-items: center;
      gap: 9px;
      transition: all .2s ease;
    }

    .ed-dropdown-option i {
      color: var(--ed-orange);
      font-size: 13px;
    }

    .ed-dropdown-option:hover,
    .ed-dropdown-option.active {
      background: #f7f7f7;
      color: var(--ed-orange);
    }

    .ed-search-input-wrap {
      position: relative;
      height: 52px;
      border: 1px solid #dddddd;
      background: #ffffff;
      border-radius: 2px;
    }

    .ed-search-input-wrap input {
      width: 100%;
      height: 100%;
      border: none;
      outline: none;
      padding: 0 56px 0 18px;
      font-size: 14px;
      color: #151515;
      border-radius: 2px;
      background: #ffffff;
    }

    .ed-search-input-wrap button {
      position: absolute;
      right: 0;
      top: 0;
      width: 54px;
      height: 100%;
      border: none;
      background: transparent;
      color: var(--ed-orange);
      font-size: 19px;
    }

    .ed-callback-btn,
    .ed-phone-btn {
      height: 52px;
      border: none;
      border-radius: 2px;
      font-size: 13.5px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .ed-callback-btn {
      background: var(--ed-red-yellow);
      color: #111111;
    }

    .ed-phone-btn {
      background: #111111;
      color: #ffffff;
    }

    .ed-search-popular {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 11px;
      padding-left: 2px;
      color: #666666;
      font-size: 12.5px;
    }

    .ed-search-popular span {
      color: #111111;
      font-weight: 600;
    }

    .ed-search-popular a {
      border: 1px solid #eeeeee;
      padding: 5px 9px;
      border-radius: 2px;
      background: #ffffff;
      color: #444444;
      transition: all .22s ease;
    }

    .ed-search-popular a:hover {
      color: var(--ed-orange);
      border-color: rgba(245, 130, 32, .45);
    }

    /* ================= PROGRAMS SECTION - IMPROVED COMPACT ================= */

    .ed-programs-section {
      position: relative;
      background: #ffffff;
      padding: 36px 0 44px;
      overflow: hidden;
      color: #151515;
    }

    .ed-programs-bg-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(#eeeeee 1px, transparent 1px),
        linear-gradient(90deg, #eeeeee 1px, transparent 1px);
      background-size: 46px 46px;
      opacity: .30;
      mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
    }

    .ed-programs-head {
      margin-bottom: 16px;
    }

    .ed-programs-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #666666;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .ed-programs-kicker span {
      width: 34px;
      height: 2px;
      background: var(--ed-red-yellow);
      display: inline-block;
    }

    .ed-programs-title-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 24px;
      align-items: end;
    }

    .ed-programs-title-row h2 {
      max-width: 780px;
      font-size: clamp(34px, 4.4vw, 54px);
      line-height: .98;
      letter-spacing: -2.6px;
      font-weight: 600;
      margin: 0 0 12px;
      color: #111111;
    }

    .ed-programs-title-row p {
      max-width: 820px;
      font-size: 15px;
      line-height: 1.58;
      color: #666666;
      margin: 0;
    }

    .ed-price-card {
      background: #111111;
      color: #ffffff;
      border-radius: 3px;
      padding: 18px;
      min-height: 125px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
    }

    .ed-price-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(229,57,32,.34), rgba(245,130,32,.25), rgba(255,196,0,.16));
      opacity: .95;
    }

    .ed-price-card span,
    .ed-price-card strong,
    .ed-price-card small {
      position: relative;
      z-index: 2;
    }

    .ed-price-card span {
      color: rgba(255,255,255,.74);
      font-size: 12px;
      margin-bottom: 6px;
    }

    .ed-price-card strong {
      font-size: 24px;
      line-height: 1.08;
      font-weight: 600;
      letter-spacing: -1px;
      margin-bottom: 6px;
    }

    .ed-price-card small {
      color: rgba(255,255,255,.72);
      font-size: 12px;
      line-height: 1.4;
    }

    .ed-program-tabs-wrap {
      margin: 22px 0 17px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      border: 1px solid #eeeeee;
      background: rgba(255,255,255,.92);
      padding: 6px;
      border-radius: 3px;
      box-shadow: 0 12px 34px rgba(0,0,0,.045);
      backdrop-filter: blur(10px);
    }

    .ed-program-tab {
      border: none;
      background: transparent;
      color: #151515;
      padding: 8px 14px;
      border-radius: 2px;
      font-size: 13px;
      font-weight: 600;
      transition: all .22s ease;
    }

    .ed-program-tab:hover,
    .ed-program-tab.active {
      background: #111111;
      color: #ffffff;
    }

    .ed-programs-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .ed-program-card {
      background: #ffffff;
      border: 1px solid #eeeeee;
      border-radius: 3px;
      overflow: hidden;
      transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .ed-program-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 46px rgba(0, 0, 0, .08);
      border-color: rgba(245,130,32,.46);
    }

    .ed-program-card.is-hidden {
      display: none !important;
    }

    .ed-program-img {
      height: 132px;
      position: relative;
      overflow: hidden;
      background: #f7f7f7;
    }

    .ed-program-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(.08);
      transform: scale(1.02);
      transition: all .4s ease;
    }

    .ed-program-card:hover .ed-program-img img {
      transform: scale(1.07);
      filter: grayscale(0);
    }

    .ed-program-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.32));
    }

    .ed-program-badge {
      position: absolute;
      left: 10px;
      bottom: 10px;
      z-index: 3;
      background: var(--ed-red-yellow);
      color: #111111;
      padding: 5px 8px;
      border-radius: 2px;
      font-size: 11px;
      font-weight: 700;
    }

    .ed-program-body {
      padding: 15px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .ed-track-label {
      color: #f58220;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 7px;
    }

    .ed-program-body h3 {
      font-size: 17px;
      line-height: 1.18;
      letter-spacing: -.45px;
      font-weight: 600;
      color: #111111;
      margin: 0 0 11px;
    }

    .ed-featured-text {
      color: #666666;
      font-size: 13px;
      line-height: 1.55;
      margin: -2px 0 10px;
    }

    .ed-course-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 13px;
    }

    .ed-course-tags span {
      border: 1px solid #eeeeee;
      background: #f7f7f7;
      color: #444444;
      padding: 5px 7px;
      border-radius: 2px;
      font-size: 11.5px;
      line-height: 1.2;
    }

    .ed-program-link {
      margin-top: auto;
      color: #111111;
      font-size: 12.5px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .22s ease;
    }

    .ed-program-link i {
      color: #f58220;
      font-size: 11px;
      transition: transform .22s ease;
    }

    .ed-program-link:hover {
      color: #f58220;
    }

    .ed-program-link:hover i {
      transform: translateX(4px);
    }

    .ed-program-featured {
      grid-column: span 2;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
    }

    .ed-program-featured .ed-program-img {
      height: 100%;
      min-height: 228px;
    }

    .ed-program-featured .ed-program-body {
      background: #111111;
      padding: 20px;
    }

    .ed-program-featured .ed-track-label {
      color: #f58220;
    }

    .ed-program-featured h3 {
      color: #ffffff;
      font-size: 24px;
    }

    .ed-program-featured .ed-featured-text {
      color: rgba(255,255,255,.72);
    }

    .ed-program-featured .ed-course-tags span {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.14);
      color: rgba(255,255,255,.82);
    }

    .ed-program-featured .ed-program-link {
      color: #ffffff;
    }

    .ed-programs-bottom.ed-programs-highlight {
      margin-top: 18px;
      position: relative;
      overflow: hidden;
      border: 1px solid #eeeeee;
      background: #111111;
      border-radius: 3px;
      padding: 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 250px;
      align-items: center;
      gap: 22px;
      box-shadow: 0 22px 58px rgba(0,0,0,.10);
      isolation: isolate;
    }

    .ed-programs-highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(229,57,32,.26), rgba(245,130,32,.22), rgba(255,196,0,.12)),
        radial-gradient(circle at 15% 20%, rgba(245,130,32,.26), transparent 32%),
        radial-gradient(circle at 88% 80%, rgba(255,196,0,.16), transparent 28%);
      z-index: -2;
    }

    .ed-programs-highlight::after {
      content: "";
      position: absolute;
      inset: 1px;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: .42;
      z-index: -1;
      animation: edGridFloat 9s linear infinite;
    }

    .ed-highlight-orb {
      position: absolute;
      width: 190px;
      height: 190px;
      right: -60px;
      top: -70px;
      background: var(--ed-red-yellow);
      border-radius: 50%;
      opacity: .18;
      filter: blur(2px);
      animation: edOrbPulse 4s ease-in-out infinite;
    }

    .ed-highlight-left,
    .ed-highlight-right {
      position: relative;
      z-index: 2;
    }

    .ed-highlight-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.82);
      padding: 6px 9px;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 12px;
      backdrop-filter: blur(10px);
    }

    .ed-highlight-label i {
      color: #f58220;
    }

    .ed-programs-highlight h3 {
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.02;
      letter-spacing: -1.5px;
      font-weight: 600;
      color: #ffffff;
      margin: 0 0 10px;
      max-width: 760px;
    }

    .ed-programs-highlight p {
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.58;
      margin: 0;
      max-width: 720px;
    }

    .ed-highlight-right {
      display: grid;
      gap: 10px;
      justify-items: stretch;
    }

    .ed-highlight-stat {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      padding: 14px;
      border-radius: 3px;
      backdrop-filter: blur(10px);
    }

    .ed-highlight-stat span {
      display: block;
      color: rgba(255,255,255,.62);
      font-size: 12px;
      margin-bottom: 5px;
    }

    .ed-highlight-stat strong {
      display: block;
      color: #ffffff;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -1px;
      font-weight: 600;
    }

    .ed-main-program-btn {
      width: 100%;
      justify-content: center;
      background: #ffffff;
      color: #111111;
      padding: 12px 16px;
      border-radius: 2px;
      font-size: 13px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .22s ease;
    }

    .ed-main-program-btn:hover {
      background: #f58220;
      color: #ffffff;
      transform: translateY(-2px);
    }

    @keyframes edGridFloat {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 30px 30px;
      }
    }

    @keyframes edOrbPulse {
      0%, 100% {
        transform: scale(1);
        opacity: .16;
      }

      50% {
        transform: scale(1.12);
        opacity: .25;
      }
    }

    /* ================= MOBILE MENU ================= */

    .ed-mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .52);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all .25s ease;
    }

    .ed-mobile-menu.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .ed-mobile-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(430px, 92vw);
      height: 100%;
      background: #ffffff;
      transform: translateX(100%);
      transition: transform .35s ease;
      padding: 22px;
      overflow-y: auto;
    }

    .ed-mobile-menu.active .ed-mobile-panel {
      transform: translateX(0);
    }

    .ed-mobile-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid #eeeeee;
    }

    .ed-mobile-head img {
      max-width: 135px;
    }

    .ed-mobile-close {
      width: 40px;
      height: 40px;
      border: 1px solid #eeeeee;
      background: #ffffff;
      color: #111111;
      border-radius: 2px;
    }

    .ed-mobile-link,
    .ed-mobile-accordion-btn {
      width: 100%;
      padding: 15px 0;
      border: none;
      background: transparent;
      border-bottom: 1px solid #eeeeee;
      color: #151515;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
    }

    .ed-mobile-sub {
      display: none;
      padding: 12px 0 18px 14px;
      border-bottom: 1px solid #eeeeee;
    }

    .ed-mobile-sub a {
      display: block;
      padding: 8px 0;
      color: #666666;
      font-size: 14px;
    }

    .ed-mobile-sub a:hover {
      color: var(--ed-orange);
    }

    .ed-mobile-cta {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }

    .ed-mobile-cta a {
      text-align: center;
      padding: 13px 15px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 600;
    }

    .ed-mobile-cta .primary {
      background: #111111;
      color: #ffffff;
    }

    .ed-mobile-cta .secondary {
      background: var(--ed-red-yellow);
      color: #111111;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1199px) {
      .ed-nav {
        gap: 20px;
      }

      .ed-header-btn {
        display: none;
      }

      .ed-search-box {
        grid-template-columns: 165px 1fr 175px 165px;
      }

      .ed-programs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .ed-program-featured {
        grid-column: span 3;
      }
    }

    @media (max-width: 991px) {
      .ed-header {
        min-height: 72px;
      }

      .ed-nav,
      .ed-header-actions {
        display: none;
      }

      .ed-mobile-toggle {
        display: inline-flex;
      }

      .ed-mega-panel {
        display: none;
      }

      .ed-hero-slider {
        height: 500px;
      }

      .ed-slide h1 {
        letter-spacing: -1.8px;
      }

      .ed-search-section {
        margin-top: 0;
        padding: 24px 0 34px;
      }

      .ed-search-box {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
      }

      .ed-program-select,
      .ed-search-input-wrap,
      .ed-callback-btn,
      .ed-phone-btn {
        width: 100%;
      }

      .ed-search-popular {
        justify-content: center;
      }

      .ed-programs-section {
        padding: 38px 0;
      }

      .ed-programs-title-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .ed-price-card {
        max-width: 390px;
      }

      .ed-programs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .ed-program-featured {
        grid-column: span 2;
      }

      .ed-programs-bottom.ed-programs-highlight {
        grid-template-columns: 1fr;
      }

      .ed-highlight-right {
        max-width: 330px;
      }
    }

    @media (max-width: 575px) {
      .ed-container,
      .ed-search-shell {
        padding-left: 16px;
        padding-right: 16px;
      }

      .ed-logo img {
        max-width: 135px;
      }

      .ed-marquee-item {
        font-size: 12px;
        padding-right: 36px;
      }

      .ed-hero-slider {
        height: 500px;
      }

      .ed-slide::before {
        background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.62));
      }

      .ed-slide-content {
        padding-bottom: 56px;
      }

      .ed-slide h1 {
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -1.4px;
      }

      .ed-slide p {
        font-size: 15px;
        line-height: 1.6;
      }

      .ed-slider-controls {
        justify-content: flex-start;
        bottom: 76px;
        padding-left: 16px;
        padding-right: 16px;
      }

      .ed-slider-arrow {
        width: 38px;
        height: 38px;
      }

      .ed-slider-dots {
        bottom: 34px;
        padding-left: 16px;
        padding-right: 16px;
      }

      .ed-slider-dot {
        width: 26px;
      }

      .ed-slider-dot.active {
        width: 42px;
      }

      .ed-programs-section {
        padding: 32px 0;
      }

      .ed-programs-title-row h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
      }

      .ed-programs-title-row p {
        font-size: 14px;
        line-height: 1.55;
      }

      .ed-price-card {
        width: 100%;
        min-height: 118px;
        padding: 16px;
      }

      .ed-price-card strong {
        font-size: 22px;
      }

      .ed-program-tabs-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 20px 0 16px;
      }

      .ed-program-tab {
        width: 100%;
        padding: 8px 10px;
        font-size: 12.5px;
      }

      .ed-programs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .ed-program-featured {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
      }

      .ed-program-featured .ed-program-img,
      .ed-program-img {
        height: 145px;
        min-height: auto;
      }

      .ed-program-featured h3 {
        font-size: 21px;
      }

      .ed-programs-bottom.ed-programs-highlight {
        padding: 18px;
      }

      .ed-programs-highlight h3 {
        font-size: 26px;
        letter-spacing: -1.1px;
      }

      .ed-programs-highlight p {
        font-size: 13.5px;
      }

      .ed-highlight-right {
        max-width: 100%;
      }
    }

:root {
    --ed-black: #111111;
    --ed-white: #ffffff;
    --ed-orange: #f58220;
    --ed-yellow: #ffc400;
    --ed-red: #e53920;
    --ed-gradient: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    --ed-text: #151515;
    --ed-muted: #666666;
    --ed-soft: #f7f7f7;
    --ed-border: #eeeeee;
    --ed-container: 1400px;
  }

  * {
    box-sizing: border-box;
  }

  .ed-theme-section,
  .ed-theme-section * {
    font-family: "Manrope", sans-serif;
  }

  .ed-theme-container {
    width: 100%;
    max-width: var(--ed-container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 2;
  }

  .ed-theme-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ed-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 13px;
  }

  .ed-theme-kicker span {
    width: 36px;
    height: 2px;
    background: var(--ed-gradient);
    display: inline-block;
  }

  .ed-theme-btn-primary,
  .ed-theme-btn-secondary {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border: none;
    transition: all .25s ease;
    cursor: pointer;
  }

  .ed-theme-btn-primary {
    background: var(--ed-orange);
    color: #ffffff;
  }

  .ed-theme-btn-primary:hover {
    background: var(--ed-black);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-theme-btn-secondary {
    background: rgba(255,255,255,.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.34);
    backdrop-filter: blur(10px);
  }

  .ed-theme-btn-secondary:hover {
    background: #ffffff;
    color: var(--ed-black);
    transform: translateY(-2px);
  }

  /* =========================================================
  CORPORATE TRAINING SECTION
  ========================================================= */

  .edct-corporate-section {
  position: relative;
  width: 100%;
  padding: 0 0 48px;
  background: #ffffff;
  color: var(--ed-text);
  overflow: hidden;
}

.edct-corporate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#eeeeee 1px, transparent 1px),
    linear-gradient(90deg, #eeeeee 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .24;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

/* FULL WIDTH HERO */
.edct-hero-full {
  position: relative;
  width: 100%;
  min-height: 390px;
  overflow: hidden;
  background: #111111;
  display: flex;
  align-items: center;
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
}

/* Background image is full width */
.edct-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: edctZoom 10s ease-in-out infinite alternate;
}

/* Full width overlay */
.edct-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.68) 42%,
      rgba(0,0,0,.24) 100%
    ),
    linear-gradient(135deg, rgba(229,57,32,.28), rgba(245,130,32,.18), rgba(255,196,0,.08));
}

/* Container sits above full background */
.edct-hero-full .ed-theme-container {
  position: relative;
  z-index: 3;
  min-height: 390px;
  display: flex;
  align-items: center;
}

/* Content remains container aligned */
.edct-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 56px 0;
  color: #ffffff;
}

.edct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.edct-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--ed-gradient);
  display: inline-block;
}

.edct-hero-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: .98;
  letter-spacing: -2.5px;
  font-weight: 600;
}

.edct-hero-content p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15.5px;
  line-height: 1.68;
  font-weight: 400;
  max-width: 610px;
}

.edct-hero-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Badge also aligned inside container */
.edct-floating-badge {
  position: absolute;
  right: 24px;
  bottom: 34px;
  z-index: 4;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 3px;
  padding: 15px 16px;
  min-width: 170px;
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
  animation: edctFloat 4.5s ease-in-out infinite;
}

.edct-floating-badge strong {
  display: block;
  color: var(--ed-orange);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.edct-floating-badge span {
  display: block;
  margin-top: 6px;
  color: #111111;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}
  .edct-stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 24px 0;
  }

  .edct-stat {
    position: relative;
    text-align: left;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--ed-border);
    border-radius: 3px;
    box-shadow: 0 16px 44px rgba(0,0,0,.045);
    transition: all .25s ease;
    overflow: hidden;
  }

  .edct-stat::before {
    content: "";
    position: absolute;
    width: 82px;
    height: 82px;
    right: -42px;
    top: -42px;
    background: rgba(245,130,32,.10);
    border-radius: 50%;
    transition: all .25s ease;
  }

  .edct-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(245,130,32,.42);
    box-shadow: 0 20px 55px rgba(0,0,0,.075);
  }

  .edct-stat:hover::before {
    transform: scale(1.35);
  }

  .edct-stat h3,
  .edct-stat span {
    display: inline-block;
    margin: 0;
    color: #111111;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: .9;
    font-weight: 600;
    letter-spacing: -3px;
    position: relative;
    z-index: 2;
  }

  .edct-stat span {
    color: var(--ed-orange);
    margin-left: 2px;
  }

  .edct-stat p {
    margin: 13px 0 0;
    color: var(--ed-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    position: relative;
    z-index: 2;
  }

  .edct-info-card {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
  }

  .edct-info-image {
    min-height: 360px;
    overflow: hidden;
    background: #111111;
  }

  .edct-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.95);
    transition: .7s ease;
  }

  .edct-info-card:hover .edct-info-image img {
    transform: scale(1.06);
  }

  .edct-info-content {
    padding: 38px;
    background:
      linear-gradient(135deg, rgba(245,130,32,.07), transparent 38%),
      #ffffff;
  }

  .edct-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,130,32,.10);
    color: var(--ed-orange);
    border: 1px solid rgba(245,130,32,.18);
    padding: 7px 10px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .edct-card-label::before {
    content: "✦";
    color: var(--ed-red);
  }

  .edct-info-content h3 {
    margin: 0;
    color: #111111;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -1.7px;
    font-weight: 600;
    max-width: 760px;
  }

  .edct-info-content p {
    margin: 17px 0 0;
    color: var(--ed-muted);
    font-size: 15px;
    line-height: 1.68;
    max-width: 760px;
  }

  .edct-points {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .edct-points div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--ed-border);
    background: #ffffff;
    border-radius: 3px;
    transition: .25s ease;
  }

  .edct-points div:hover {
    transform: translateX(4px);
    border-color: rgba(245,130,32,.34);
    background: #fffaf5;
  }

  .edct-points b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 2px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
  }

  .edct-points span {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
  }
  
  @media (max-width: 767px) {
  .edct-corporate-section {
    padding: 0 0 38px;
  }

  .edct-hero-full {
    min-height: 500px;
    align-items: flex-start;
  }

  .edct-hero-full .ed-theme-container {
    min-height: 500px;
    align-items: flex-start;
  }

  .edct-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.70) 58%,
        rgba(0,0,0,.32) 100%
      ),
      linear-gradient(135deg, rgba(245,130,32,.28), transparent 54%);
  }

  .edct-hero-content {
    padding: 36px 0;
  }

  .edct-hero-content h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }

  .edct-hero-content p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .edct-hero-actions {
    align-items: stretch;
  }

  .edct-floating-badge {
    right: 16px;
    bottom: 18px;
    left: 16px;
    min-width: unset;
  }
}

  <!-- =========================================================
EDUCITY FIXED CALLBACK CHATBOX
Bottom Right | Minimize for 1 Day | Educity Theme
========================================================= -->

<style>
  :root {
    --ed-black: #111111;
    --ed-white: #ffffff;
    --ed-orange: #f58220;
    --ed-yellow: #ffc400;
    --ed-red: #e53920;
    --ed-gradient: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    --ed-text: #151515;
    --ed-muted: #666666;
    --ed-border: #eeeeee;
  }

  .edu-callback-widget,
  .edu-callback-widget * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
  }

  .edu-callback-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
  }

  .edu-callback-box {
    width: 390px;
    max-width: calc(100vw - 32px);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transform-origin: bottom right;
    animation: eduWidgetOpen .28s ease both;
  }

  .edu-callback-widget.is-minimized .edu-callback-box {
    display: none;
  }

  .edu-widget-head {
    position: relative;
    background: #111111;
    color: #ffffff;
    padding: 16px 16px 14px;
    overflow: hidden;
  }

  .edu-widget-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 18%, rgba(245,130,32,.34), transparent 34%),
      linear-gradient(135deg, rgba(229,57,32,.18), rgba(245,130,32,.12), rgba(255,196,0,.08));
    pointer-events: none;
  }

  .edu-widget-head-content {
    position: relative;
    z-index: 2;
    padding-right: 42px;
  }

  .edu-widget-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.76);
    margin-bottom: 7px;
  }

  .edu-widget-kicker span {
    width: 24px;
    height: 2px;
    display: inline-block;
    background: var(--ed-gradient);
  }

  .edu-widget-head h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -1.1px;
    font-weight: 600;
  }

  .edu-widget-head p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 12.8px;
    line-height: 1.45;
    max-width: 320px;
  }

  .edu-widget-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 4;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.08);
    color: #ffffff;
    border-radius: 3px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .22s ease;
  }

  .edu-widget-close:hover {
    background: #ffffff;
    color: #111111;
  }

  .edu-callback-form {
    padding: 14px;
    background: #ffffff;
    max-height: min(68vh, 620px);
    overflow-y: auto;
  }

  .edu-callback-form::-webkit-scrollbar {
    width: 5px;
  }

  .edu-callback-form::-webkit-scrollbar-track {
    background: #f2f2f2;
  }

  .edu-callback-form::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 99px;
  }

 

  .edu-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .edu-phone-row {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 8px;
  }

  .edu-field {
    position: relative;
    margin-bottom: 8px;
  }

  .edu-field input,
  .edu-field select,
  .edu-field textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #151515;
    padding: 17px 11px 8px;
    font-size: 13px;
    outline: none;
    border-radius: 3px;
    transition: .22s ease;
    font-family: inherit;
  }

  .edu-field textarea {
    resize: vertical;
    min-height: 74px;
  }

  .edu-field select {
    appearance: auto;
    cursor: pointer;
    color: #151515;
  }

  .edu-code-field select {
    height: 45px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    background: #ffffff;
  }

  .edu-field label {
    position: absolute;
    left: 11px;
    top: 13px;
    font-size: 13px;
    color: #777777;
    pointer-events: none;
    transition: .22s ease;
    background: #ffffff;
    padding: 0 3px;
  }

  .edu-field input:focus,
  .edu-field select:focus,
  .edu-field textarea:focus {
    border-color: rgba(245,130,32,.66);
    box-shadow: 0 0 0 3px rgba(245,130,32,.08);
  }

  .edu-field input:focus + label,
  .edu-field input:valid + label,
  .edu-field textarea:focus + label,
  .edu-field textarea:valid + label,
  .edu-field select:focus + label,
  .edu-field select:valid + label {
    top: -7px;
    font-size: 10.5px;
    color: var(--ed-orange);
    font-weight: 700;
  }

  .edu-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #444444;
    font-size: 12.2px;
    margin: 8px 0 10px;
    line-height: 1.4;
    cursor: pointer;
  }

  .edu-check input {
    width: 14px;
    height: 14px;
    accent-color: var(--ed-orange);
    margin-top: 2px;
  }

  .edu-captcha {
    width: 100%;
    min-height: 58px;
    border: 1px solid #dddddd;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
  }

  .edu-captcha-box {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #222222;
    font-size: 12.8px;
    cursor: pointer;
  }

  .edu-captcha-box input {
    display: none;
  }

  .edu-captcha-box span {
    width: 24px;
    height: 24px;
    border: 2px solid #666666;
    background: #ffffff;
    display: inline-block;
    position: relative;
  }

  .edu-captcha-box input:checked + span {
    border-color: var(--ed-orange);
    background: var(--ed-orange);
  }

  .edu-captcha-box input:checked + span::after {
    content: "✓";
    position: absolute;
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    left: 4px;
    top: -1px;
  }

  .edu-captcha-mini {
    text-align: center;
    color: #777777;
    font-size: 9px;
  }

  .edu-captcha-mini strong {
    display: block;
    font-size: 20px;
    color: #111111;
    line-height: 1;
  }

  .edu-submit-btn {
    width: 100%;
    border: none;
    background: var(--ed-orange);
    color: #ffffff;
    height: 46px;
    border-radius: 3px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(245,130,32,.23);
    transition: .25s ease;
  }

  .edu-submit-btn:hover {
    background: #111111;
    transform: translateY(-2px);
  }

  .edu-submit-btn b {
    transition: .25s ease;
  }

  .edu-submit-btn:hover b {
    transform: translateX(4px);
  }

  .edu-form-message {
    display: none;
    margin: 10px 0 0;
    padding: 10px 11px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 12.8px;
  }

  .edu-form-message.success {
    display: block;
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
  }

  .edu-form-message.error {
    display: block;
    background: #fff1f1;
    color: #c01048;
    border: 1px solid #ffc9d6;
  }

  /* Minimized bubble */
  .edu-widget-bubble {
    display: none;
    align-items: center;
    gap: 10px;
    border: none;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 14px 10px 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    cursor: pointer;
    transition: all .25s ease;
  }

  .edu-callback-widget.is-minimized .edu-widget-bubble {
    display: inline-flex;
  }

  .edu-widget-bubble:hover {
    transform: translateY(-2px);
    background: var(--ed-orange);
  }

  .edu-bubble-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--ed-gradient);
    color: #ffffff;
    font-size: 16px;
  }

  .edu-bubble-text {
    display: grid;
    text-align: left;
  }

  .edu-bubble-text strong {
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
  }

  .edu-bubble-text span {
    font-size: 11.5px;
    color: rgba(255,255,255,.72);
    margin-top: 2px;
  }

  @keyframes eduWidgetOpen {
    from {
      opacity: 0;
      transform: translateY(18px) scale(.96);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @media (max-width: 575px) {
    .edu-callback-widget {
      right: 12px;
      bottom: 12px;
      left: 12px;
    }

    .edu-callback-box {
      width: 100%;
      max-width: 100%;
    }

    .edu-callback-form {
      max-height: 68vh;
    }

    .edu-form-grid,
    .edu-phone-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .edu-widget-head h3 {
      font-size: 22px;
    }

    .edu-widget-bubble {
      margin-left: auto;
    }
  }

/* =========================================================
  ANIMATIONS
  ========================================================= */

  @keyframes edctZoom {
    from {
      transform: scale(1.04);
    }

    to {
      transform: scale(1.1);
    }
  }

  @keyframes edctFloat {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes eduFloat {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-12px);
    }
  }

  @keyframes eduPersonFloat {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes eduShine {
    0% {
      transform: translateX(-120%);
    }

    45%, 100% {
      transform: translateX(120%);
    }
  }

  /* =========================================================
  RESPONSIVE
  ========================================================= */

  @media (max-width: 1100px) {
    .edct-stats-wrap {
      grid-template-columns: repeat(2, 1fr);
    }

    .edct-info-card {
      grid-template-columns: 1fr;
    }

    .edct-info-image {
      min-height: 320px;
    }

    .edu-callback-container {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .edu-callback-right {
      min-height: auto;
    }

    .edu-image-card {
      height: 490px;
    }
  }

  @media (max-width: 767px) {
    .ed-theme-container,
    .edu-callback-container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .edct-corporate-section {
      padding: 32px 0 38px;
    }

    .edct-hero {
      min-height: 500px;
      align-items: flex-start;
    }

    .edct-hero-overlay {
      background:
        linear-gradient(180deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.70) 58%, rgba(0,0,0,.32) 100%),
        linear-gradient(135deg, rgba(245,130,32,.28), transparent 54%);
    }

    .edct-hero-content {
      padding: 34px 22px;
    }

    .edct-hero-content h2 {
      font-size: 38px;
      letter-spacing: -1.7px;
    }

    .edct-hero-content p {
      font-size: 14.5px;
      line-height: 1.62;
    }

    .edct-hero-actions {
      align-items: stretch;
    }

    .ed-theme-btn-primary,
    .ed-theme-btn-secondary {
      width: 100%;
    }

    .edct-floating-badge {
      right: 18px;
      bottom: 18px;
      left: 18px;
      min-width: unset;
    }

    .edct-stats-wrap {
      grid-template-columns: 1fr;
      padding: 18px 0;
      gap: 10px;
    }

    .edct-stat {
      text-align: left;
      padding: 18px;
    }

    .edct-stat h3,
    .edct-stat span {
      font-size: 54px;
    }

    .edct-info-content {
      padding: 26px 20px;
    }

    .edct-info-image {
      min-height: 245px;
    }

    .edct-points div {
      grid-template-columns: 1fr;
    }

    .edu-callback-section {
      padding: 36px 0 46px;
    }

    .edu-callback-left h2 {
      font-size: 36px;
      letter-spacing: -1.7px;
    }

    .edu-callback-desc {
      font-size: 14.5px;
      line-height: 1.6;
    }

    .edu-highlight-card {
      padding: 15px;
      flex-direction: column;
    }

    .edu-highlight-card h4 {
      font-size: 16px;
    }

    .edu-callback-form {
      padding: 14px;
    }

    .edu-form-grid,
    .edu-phone-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .edu-captcha {
      width: 100%;
    }

    .edu-image-card {
      height: 420px;
    }

    .edu-person-placeholder {
      transform: scale(.74);
      margin-top: 26px;
    }

    .edu-floating-box {
      min-width: 110px;
      padding: 10px 11px;
    }

    .edu-box-1 {
      left: 0;
      top: 80px;
    }

    .edu-box-2 {
      right: 0;
      bottom: 95px;
    }

    .edu-box-3 {
      left: 30px;
      bottom: 0;
    }
  }

  @media (max-width: 420px) {
    .edu-person-placeholder {
      transform: scale(.64);
    }

    .edu-image-card {
      height: 380px;
    }

    .edu-floating-box strong {
      font-size: 18px;
    }

    .edu-floating-box span {
      font-size: 11px;
    }
  }

.ed-category-section {
    position: relative;
    background: #ffffff;
    padding: 52px 0 58px;
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    color: #151515;
  }

  .ed-category-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(#eeeeee 1px, transparent 1px),
      linear-gradient(90deg, #eeeeee 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .30;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  }

  .ed-category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .ed-category-head {
    margin-bottom: 28px;
  }

  .ed-category-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 13px;
  }

  .ed-category-kicker span {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    display: inline-block;
  }

  .ed-category-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
  }

  .ed-category-title-row h2 {
    max-width: 850px;
    margin: 0 0 12px;
    color: #111111;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: .98;
    letter-spacing: -2.6px;
    font-weight: 600;
  }

  .ed-category-title-row p {
    max-width: 760px;
    margin: 0;
    color: #666666;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .ed-category-main-btn {
    min-height: 46px;
    padding: 0 18px;
    background: #111111;
    color: #ffffff;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s ease;
  }

  .ed-category-main-btn:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .ed-category-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: all .28s ease;
    box-shadow: 0 14px 38px rgba(0,0,0,.035);
  }

  .ed-category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,130,32,.46);
    box-shadow: 0 24px 64px rgba(0,0,0,.09);
  }

  .ed-category-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
  }

  .ed-category-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #111111;
  }

  .ed-category-featured .ed-category-image {
    height: 100%;
    min-height: 270px;
  }

  .ed-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(.12);
    transform: scale(1.02);
    transition: all .45s ease;
  }

  .ed-category-card:hover .ed-category-image img {
    transform: scale(1.08);
    filter: grayscale(0);
  }

  .ed-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent, rgba(0,0,0,.42)),
      linear-gradient(135deg, rgba(229,57,32,.18), rgba(245,130,32,.12), rgba(255,196,0,.06));
  }

  .ed-category-image span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #111111;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
  }

  .ed-category-content {
    padding: 17px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
  }

  .ed-category-featured .ed-category-content {
    background: #111111;
    padding: 24px;
  }

  .ed-category-label {
    color: #f58220;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .ed-category-content h3 {
    margin: 0;
    color: #111111;
    font-size: 19px;
    line-height: 1.18;
    letter-spacing: -.6px;
    font-weight: 600;
  }

  .ed-category-featured h3 {
    color: #ffffff;
    font-size: 29px;
    letter-spacing: -1.2px;
  }

  .ed-category-content p {
    margin: 11px 0 0;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .ed-category-featured p {
    color: rgba(255,255,255,.68);
    font-size: 14px;
  }

  .ed-category-bottom {
    margin-top: auto;
    padding-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .ed-category-bottom strong {
    color: #111111;
    font-size: 13.5px;
    font-weight: 700;
  }

  .ed-category-featured .ed-category-bottom strong {
    color: #ffffff;
  }

  .ed-category-bottom i {
    width: 34px;
    height: 34px;
    border-radius: 2px;
    background: rgba(245,130,32,.10);
    color: #f58220;
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: all .25s ease;
  }

  .ed-category-card:hover .ed-category-bottom i {
    background: #f58220;
    color: #ffffff;
    transform: translateX(3px);
  }

  @media (max-width: 1199px) {
    .ed-category-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ed-category-featured {
      grid-column: span 3;
    }
  }

  @media (max-width: 991px) {
    .ed-category-section {
      padding: 42px 0 48px;
    }

    .ed-category-title-row {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .ed-category-main-btn {
      width: max-content;
    }

    .ed-category-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ed-category-featured {
      grid-column: span 2;
    }
  }

  @media (max-width: 575px) {
    .ed-category-container {
      padding: 0 16px;
    }

    .ed-category-title-row h2 {
      font-size: 34px;
      letter-spacing: -1.5px;
    }

    .ed-category-title-row p {
      font-size: 14.5px;
      line-height: 1.58;
    }

    .ed-category-main-btn {
      width: 100%;
      justify-content: center;
    }

    .ed-category-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .ed-category-featured {
      grid-column: span 1;
      display: flex;
      flex-direction: column;
    }

    .ed-category-featured .ed-category-image,
    .ed-category-image {
      height: 155px;
      min-height: auto;
    }

    .ed-category-featured .ed-category-content {
      padding: 18px;
    }

    .ed-category-featured h3 {
      font-size: 24px;
    }
  }

.ed-affiliation-section {
    position: relative;
    background: #eaf5fb;
    padding: 70px 0;
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    color: #151515;
  }

  .ed-affiliation-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.48) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.48) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .45;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  }

  .ed-affiliation-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -130px;
    background: radial-gradient(circle, rgba(245,130,32,.18), transparent 65%);
    pointer-events: none;
  }

  .ed-affiliation-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(229,57,32,.10), transparent 65%);
    pointer-events: none;
  }

  .ed-affiliation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .ed-affiliation-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 46px;
    align-items: center;
  }

  .ed-affiliation-left {
    position: relative;
  }

  .ed-affiliation-icon {
    width: 78px;
    height: 78px;
    border: 2px solid rgba(17,17,17,.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(17,17,17,.32);
    font-size: 34px;
    margin-bottom: 18px;
    background: rgba(255,255,255,.28);
  }

  .ed-affiliation-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .ed-affiliation-kicker span {
    width: 34px;
    height: 2px;
    display: inline-block;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
  }

  .ed-affiliation-left h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    font-weight: 600;
  }

  .ed-affiliation-left p {
    margin: 16px 0 0;
    color: #666666;
    font-size: 14.5px;
    line-height: 1.7;
  }

  .ed-affiliation-controls {
    display: flex;
    gap: 8px;
    margin-top: 24px;
  }

  .ed-aff-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,17,17,.12);
    background: #ffffff;
    color: #111111;
    border-radius: 2px;
    display: grid;
    place-items: center;
    transition: all .25s ease;
    cursor: pointer;
  }

  .ed-aff-btn:hover {
    background: #f58220;
    border-color: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-affiliation-right {
    min-width: 0;
  }

  .ed-affiliation-window {
    overflow: hidden;
    width: 100%;
    padding: 4px;
  }

  .ed-affiliation-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 64px) / 5);
    gap: 16px;
    transition: transform .45s ease;
    will-change: transform;
  }

  .ed-affiliation-card {
    height: 138px;
    background: #ffffff;
    border: 1px solid rgba(17,17,17,.06);
    border-radius: 4px;
    display: grid;
    place-items: center;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(0,0,0,.045);
    transition: all .28s ease;
    position: relative;
    overflow: hidden;
  }

  .ed-affiliation-card::before {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    right: -44px;
    top: -44px;
    background: rgba(245,130,32,.08);
    border-radius: 50%;
    transition: all .28s ease;
  }

  .ed-affiliation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,130,32,.36);
    box-shadow: 0 22px 54px rgba(0,0,0,.085);
  }

  .ed-affiliation-card:hover::before {
    transform: scale(1.35);
  }

  .ed-affiliation-card img {
    position: relative;
    z-index: 2;
    max-width: 150px;
    max-height: 68px;
    object-fit: contain;
    filter: saturate(.95);
  }

  @media (max-width: 1199px) {
    .ed-affiliation-track {
      grid-auto-columns: calc((100% - 32px) / 3);
    }
  }

  @media (max-width: 991px) {
    .ed-affiliation-section {
      padding: 52px 0;
    }

    .ed-affiliation-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .ed-affiliation-left {
      max-width: 620px;
    }

    .ed-affiliation-track {
      grid-auto-columns: calc((100% - 16px) / 2);
    }
  }

  @media (max-width: 575px) {
    .ed-affiliation-section {
      padding: 42px 0;
    }

    .ed-affiliation-container {
      padding: 0 16px;
    }

    .ed-affiliation-icon {
      width: 64px;
      height: 64px;
      font-size: 28px;
    }

    .ed-affiliation-left h2 {
      font-size: 32px;
      letter-spacing: -1.4px;
    }

    .ed-affiliation-left p {
      font-size: 14px;
    }

    .ed-affiliation-track {
      grid-auto-columns: 100%;
      gap: 12px;
    }

    .ed-affiliation-card {
      height: 130px;
    }
  }

.ed-real-feedback-section {
    position: relative;
    background:
      linear-gradient(180deg, #ffffff 0%, #fffaf6 48%, #ffffff 100%);
    padding: 58px 0 64px;
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    color: #151515;
  }

  .ed-real-feedback-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(#eeeeee 1px, transparent 1px),
      linear-gradient(90deg, #eeeeee 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .23;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  }

  .ed-real-feedback-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    background: radial-gradient(circle, rgba(245,130,32,.16), transparent 66%);
    pointer-events: none;
  }

  .ed-real-feedback-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -160px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(229,57,32,.08), transparent 66%);
    pointer-events: none;
  }

  .ed-real-feedback-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .ed-real-feedback-head {
    margin-bottom: 30px;
  }

  .ed-real-feedback-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 13px;
  }

  .ed-real-feedback-kicker span {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    display: inline-block;
  }

  .ed-real-feedback-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
  }

  .ed-real-feedback-title-row h2 {
    max-width: 890px;
    margin: 0 0 12px;
    color: #111111;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: .98;
    letter-spacing: -2.8px;
    font-weight: 600;
  }

  .ed-real-feedback-title-row p {
    max-width: 760px;
    margin: 0;
    color: #666666;
    font-size: 15.5px;
    line-height: 1.68;
  }

  .ed-real-feedback-main-btn {
    min-height: 46px;
    padding: 0 18px;
    background: #111111;
    color: #ffffff;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s ease;
  }

  .ed-real-feedback-main-btn:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-real-feedback-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
    align-items: stretch;
  }

  /* LEFT FEATURE CARD */

  .ed-real-feedback-feature {
    background: rgba(255,255,255,.86);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0,0,0,.065);
  }

  .ed-feature-img {
    height: 300px;
    overflow: hidden;
    background: #111111;
    position: relative;
  }

  .ed-feature-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent, rgba(0,0,0,.38)),
      linear-gradient(135deg, rgba(245,130,32,.16), transparent 50%);
  }

  .ed-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: all .5s ease;
  }

  .ed-real-feedback-feature:hover .ed-feature-img img {
    transform: scale(1.07);
  }

  .ed-feature-content {
    padding: 24px;
    background: #ffffff;
  }

  .ed-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f58220;
    background: rgba(245,130,32,.09);
    border: 1px solid rgba(245,130,32,.16);
    border-radius: 2px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .ed-feature-content h3 {
    margin: 0;
    color: #111111;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 600;
  }

  .ed-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
  }

  .ed-feature-stats div {
    background: #fffaf6;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 14px;
  }

  .ed-feature-stats strong {
    display: block;
    color: #111111;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 7px;
  }

  .ed-feature-stats span {
    color: #666666;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 600;
  }

  /* RIGHT PANEL */

  .ed-real-feedback-panel {
    position: relative;
    background:
      linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,250,246,.90));
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 22px 60px rgba(0,0,0,.065);
    overflow: hidden;
  }

  .ed-real-feedback-panel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    opacity: .12;
  }

  .ed-feedback-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
  }

  .ed-feedback-topbar span {
    display: block;
    color: #f58220;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .ed-feedback-topbar h3 {
    margin: 0;
    color: #111111;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 600;
  }

  .ed-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .ed-live-pill b {
    width: 7px;
    height: 7px;
    background: #f58220;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(245,130,32,.22);
  }

  .ed-testimonial-window {
    position: relative;
    z-index: 2;
    height: 445px;
    overflow: hidden;
    margin-top: 16px;
  }

  .ed-testimonial-window::before,
  .ed-testimonial-window::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 5;
    pointer-events: none;
  }

  .ed-testimonial-window::before {
    top: 0;
    background: linear-gradient(180deg, #fffaf6, transparent);
  }

  .ed-testimonial-window::after {
    bottom: 0;
    background: linear-gradient(0deg, #fffaf6, transparent);
  }

  .ed-testimonial-track {
    display: grid;
    gap: 12px;
  }

  .ed-testimonial-card {
    position: relative;
    background: rgba(255,255,255,.92);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 12px 34px rgba(0,0,0,.045);
    transition: all .25s ease;
  }

  .ed-testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245,130,32,.42);
    box-shadow: 0 18px 48px rgba(0,0,0,.075);
  }

  .ed-testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .ed-testimonial-user img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
  }

  .ed-testimonial-user h4 {
    margin: 0;
    color: #111111;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.2;
  }

  .ed-testimonial-user span {
    display: block;
    color: #777777;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
  }

  .ed-testimonial-card p {
    margin: 0;
    color: #444444;
    font-size: 14px;
    line-height: 1.62;
  }

  .ed-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-top: 13px;
    color: #f58220;
    font-size: 12px;
  }

  .ed-feedback-bottom-strip {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ed-feedback-bottom-strip div {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 12px;
    color: #333333;
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ed-feedback-bottom-strip i {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 2px;
    background: #f58220;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 10px;
  }

  @media (max-width: 1100px) {
    .ed-real-feedback-title-row,
    .ed-real-feedback-layout {
      grid-template-columns: 1fr;
    }

    .ed-real-feedback-main-btn {
      width: max-content;
    }

    .ed-feature-img {
      height: 260px;
    }
  }

  @media (max-width: 767px) {
    .ed-real-feedback-section {
      padding: 42px 0 48px;
    }

    .ed-real-feedback-container {
      padding: 0 16px;
    }

    .ed-real-feedback-title-row h2 {
      font-size: 34px;
      letter-spacing: -1.5px;
    }

    .ed-real-feedback-title-row p {
      font-size: 14.5px;
      line-height: 1.6;
    }

    .ed-real-feedback-main-btn {
      width: 100%;
      justify-content: center;
    }

    .ed-feature-stats,
    .ed-feedback-bottom-strip {
      grid-template-columns: 1fr;
    }

    .ed-feedback-topbar {
      flex-direction: column;
    }

    .ed-real-feedback-panel,
    .ed-feature-content {
      padding: 16px;
    }

    .ed-testimonial-window {
      height: 415px;
    }
  }

.ed-faq-minimal-section {
    position: relative;
    background:
      linear-gradient(180deg, #ffffff 0%, #fffaf6 52%, #ffffff 100%);
    padding: 58px 0 64px;
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    color: #151515;
  }

  .ed-faq-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(#eeeeee 1px, transparent 1px),
      linear-gradient(90deg, #eeeeee 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .22;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  }

  .ed-faq-minimal-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    background: radial-gradient(circle, rgba(245,130,32,.15), transparent 66%);
    pointer-events: none;
  }

  .ed-faq-minimal-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -140px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(229,57,32,.08), transparent 66%);
    pointer-events: none;
  }

  .ed-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .ed-faq-head {
    margin-bottom: 30px;
  }

  .ed-faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 13px;
  }

  .ed-faq-kicker span {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
    display: inline-block;
  }

  .ed-faq-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
  }

  .ed-faq-title-row h2 {
    max-width: 850px;
    margin: 0 0 12px;
    color: #111111;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: .98;
    letter-spacing: -2.8px;
    font-weight: 600;
  }

  .ed-faq-title-row p {
    max-width: 760px;
    margin: 0;
    color: #666666;
    font-size: 15.5px;
    line-height: 1.68;
  }

  .ed-faq-head-btn {
    min-height: 46px;
    padding: 0 18px;
    background: #111111;
    color: #ffffff;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s ease;
  }

  .ed-faq-head-btn:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-faq-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 18px;
    align-items: start;
  }

  /* LEFT HELP CARD */

  .ed-faq-help {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0,0,0,.06);
    position: sticky;
    top: 96px;
  }

  .ed-faq-help-img {
    height: 260px;
    overflow: hidden;
    background: #111111;
    position: relative;
  }

  .ed-faq-help-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent, rgba(0,0,0,.38)),
      linear-gradient(135deg, rgba(245,130,32,.16), transparent 50%);
  }

  .ed-faq-help-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: all .5s ease;
  }

  .ed-faq-help:hover .ed-faq-help-img img {
    transform: scale(1.07);
  }

  .ed-faq-help-content {
    padding: 24px;
    background: #ffffff;
  }

  .ed-faq-help-content span {
    display: inline-flex;
    color: #f58220;
    background: rgba(245,130,32,.09);
    border: 1px solid rgba(245,130,32,.16);
    border-radius: 2px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .ed-faq-help-content h3 {
    margin: 0;
    color: #111111;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 600;
  }

  .ed-faq-help-content p {
    margin: 15px 0 0;
    color: #666666;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .ed-faq-help-content a {
    margin-top: 20px;
    min-height: 44px;
    padding: 0 16px;
    background: #f58220;
    color: #ffffff;
    border-radius: 2px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: all .25s ease;
  }

  .ed-faq-help-content a:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* FAQ LIST */

  .ed-faq-list {
    display: grid;
    gap: 10px;
  }

  .ed-faq-item {
    background: rgba(255,255,255,.92);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0 12px 34px rgba(0,0,0,.04);
    overflow: hidden;
    transition: all .25s ease;
  }

  .ed-faq-item:hover {
    border-color: rgba(245,130,32,.36);
    box-shadow: 0 18px 44px rgba(0,0,0,.065);
  }

  .ed-faq-item.active {
    border-color: rgba(245,130,32,.48);
    background: #ffffff;
  }

  .ed-faq-question {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
    color: #111111;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
  }

  .ed-faq-question b {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 2px;
    background: rgba(245,130,32,.10);
    color: #f58220;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 400;
    transition: all .25s ease;
  }

  .ed-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .ed-faq-answer-inner {
    padding: 0 20px 20px;
    color: #666666;
    font-size: 14.5px;
    line-height: 1.72;
    max-width: 850px;
  }

  .ed-faq-answer-inner strong {
    color: #111111;
    font-weight: 700;
  }

  .ed-faq-item.active .ed-faq-question b {
    background: #f58220;
    color: #ffffff;
    transform: rotate(45deg);
  }

  .ed-faq-bottom-strip {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ed-faq-bottom-strip div {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 12px 34px rgba(0,0,0,.04);
  }

  .ed-faq-bottom-strip strong {
    display: block;
    color: #111111;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .ed-faq-bottom-strip span {
    display: block;
    color: #666666;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .ed-faq-title-row,
    .ed-faq-layout {
      grid-template-columns: 1fr;
    }

    .ed-faq-help {
      position: relative;
      top: auto;
    }

    .ed-faq-head-btn {
      width: max-content;
    }

    .ed-faq-help-img {
      height: 240px;
    }
  }

  @media (max-width: 768px) {
    .ed-faq-minimal-section {
      padding: 42px 0 48px;
    }

    .ed-faq-container {
      padding: 0 16px;
    }

    .ed-faq-title-row h2 {
      font-size: 34px;
      letter-spacing: -1.5px;
    }

    .ed-faq-title-row p {
      font-size: 14.5px;
      line-height: 1.6;
    }

    .ed-faq-head-btn {
      width: 100%;
      justify-content: center;
    }

    .ed-faq-help-content,
    .ed-faq-question {
      padding: 16px;
    }

    .ed-faq-answer-inner {
      padding: 0 16px 16px;
      font-size: 14px;
    }

    .ed-faq-bottom-strip {
      grid-template-columns: 1fr;
    }
  }

.ed-founder-section {
    width: 100%;
    background: #030303;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0;
    font-family: "Manrope", sans-serif;
  }

  .ed-founder-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 28% 70%, rgba(245,130,32,.08), transparent 28%),
      radial-gradient(circle at 78% 25%, rgba(255,196,0,.04), transparent 26%);
    pointer-events: none;
  }

  .ed-founder-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .ed-founder-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: end;
    min-height: 430px;
    gap: 60px;
  }

  .ed-founder-image-wrap {
    position: relative;
    height: 430px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .ed-founder-image-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -80px;
    width: 420px;
    height: 180px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,255,255,.14), transparent 66%);
    filter: blur(8px);
    pointer-events: none;
  }

  .ed-founder-img {
    position: relative;
    z-index: 2;
    max-height: 479px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) contrast(1.08);
  }

  .ed-founder-content {
    padding: 72px 0 68px;
    max-width: 680px;
  }

  .ed-founder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .ed-founder-kicker span {
    width: 34px;
    height: 2px;
    display: inline-block;
    background: linear-gradient(90deg, #e53920, #f58220, #ffc400);
  }

  .ed-founder-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 28px);
    line-height: 1.12;
    letter-spacing: -.8px;
    font-weight: 500;
    max-width: 760px;
  }

  .ed-founder-content p {
    margin: 24px 0 0;
    max-width: 680px;
    color: rgba(255,255,255,.52);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
  }

  .ed-founder-btn {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    background: #101b48;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
  }

  .ed-founder-btn:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(245,130,32,.22);
  }

  @media (max-width: 991px) {
    .ed-founder-grid {
      grid-template-columns: 1fr;
      gap: 0;
      min-height: auto;
    }

    .ed-founder-image-wrap {
      height: 360px;
      order: 2;
    }

    .ed-founder-img {
      max-height: 340px;
    }

    .ed-founder-content {
      order: 1;
      padding: 52px 0 20px;
      max-width: 100%;
    }

    .ed-founder-content h2 {
      font-size: 30px;
      line-height: 1.32;
    }
  }

  @media (max-width: 575px) {
    .ed-founder-container {
      padding: 0 16px;
    }

    .ed-founder-content {
      padding: 42px 0 16px;
    }

    .ed-founder-kicker {
      margin-bottom: 18px;
    }

    .ed-founder-content h2 {
      font-size: 26px;
      line-height: 1.34;
      letter-spacing: -.6px;
    }

    .ed-founder-content p {
      font-size: 14px;
      line-height: 1.75;
      margin-top: 18px;
    }

    .ed-founder-btn {
      width: 100%;
      margin-top: 22px;
    }

    .ed-founder-image-wrap {
      height: 310px;
    }

    .ed-founder-img {
      max-height: 300px;
    }
  }

/* ================= FOOTER CTA ================= */

  .ed-footer-cta-section {
    position: relative;
    background: #ffffff;
    padding: 80px 0 0;
    overflow: hidden;
  }

  .ed-footer-cta-section .ed-container,
  .ed-main-footer .ed-container,
  .ed-footer-bottom .ed-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .ed-footer-cta {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    min-height: 260px;
    background: #111111;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.10);
  }

  .ed-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, rgba(229,57,32,.26), rgba(245,130,32,.20), rgba(255,196,0,.08)),
      linear-gradient(90deg, transparent, rgba(255,255,255,.05));
    pointer-events: none;
  }

  .ed-footer-cta-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
  }

  .ed-footer-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.05);
    transform: scale(1.02);
    transition: transform .55s ease;
  }

  .ed-footer-cta:hover .ed-footer-cta-image img {
    transform: scale(1.08);
  }

  .ed-footer-cta-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.14), rgba(0,0,0,.44));
  }

  .ed-footer-cta-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
  }

  .ed-footer-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    padding: 8px 11px;
    border-radius: 2px;
    backdrop-filter: blur(10px);
  }

  .ed-footer-cta-kicker i {
    color: #f58220;
  }

  .ed-footer-cta-content h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -2.4px;
    font-weight: 500;
    margin: 0 0 14px;
    max-width: 620px;
  }

  .ed-footer-cta-content p {
    color: rgba(255,255,255,.72);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 24px;
  }

  .ed-whatsapp-cta {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #111111;
    border-radius: 2px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    transition: all .25s ease;
  }

  .ed-whatsapp-cta i {
    color: #f58220;
    font-size: 20px;
  }

  .ed-whatsapp-cta:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .ed-whatsapp-cta:hover i {
    color: #ffffff;
  }

  /* ================= MAIN FOOTER ================= */

  .ed-main-footer {
    position: relative;
    background: #111111;
    color: #ffffff;
    padding: 150px 0 70px;
    overflow: hidden;
  }

  .ed-footer-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .36;
    animation: edFooterGridMove 12s linear infinite;
    pointer-events: none;
  }

  .ed-main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 20%, rgba(245,130,32,.20), transparent 28%),
      radial-gradient(circle at 90% 80%, rgba(255,196,0,.10), transparent 24%);
    pointer-events: none;
  }

  .ed-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .95fr 1.15fr 1.2fr;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255,255,255,.025);
  }

  .ed-footer-col {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.10);
  }

  .ed-footer-col:last-child {
    border-right: none;
  }

  .ed-footer-col h3 {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 22px;
    letter-spacing: -.4px;
  }

  .ed-footer-col h3::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 3px;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #e53920, #f58220, #ffc400);
  }

  .ed-footer-col p {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 22px;
  }

  .ed-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ed-footer-col li {
    margin-bottom: 10px;
  }

  .ed-footer-col li a,
  .ed-footer-map-link {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.45;
    transition: all .22s ease;
  }

  .ed-footer-col li a:hover,
  .ed-footer-map-link:hover {
    color: #f58220;
    padding-left: 4px;
  }

  .ed-footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }

  .ed-footer-map-link i {
    font-size: 12px;
    color: #f58220;
  }

  .ed-contact-block {
    margin-bottom: 18px;
  }

  .ed-contact-block span {
    display: block;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    margin-bottom: 5px;
  }

  .ed-contact-block a {
    display: inline-block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.5px;
    transition: color .22s ease;
  }

  .ed-contact-block a:hover {
    color: #f58220;
  }

  .ed-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }

  .ed-footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: #ffffff;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s ease;
  }

  .ed-footer-social a:hover {
    background: #f58220;
    border-color: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* ================= FOOTER BOTTOM ================= */

  .ed-footer-bottom {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    padding: 24px 0;
  }

  .ed-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .ed-footer-bottom p {
    margin: 0;
    color: #666666;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .ed-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .ed-footer-bottom-links a {
    color: #444444;
    font-size: 13.5px;
    transition: color .22s ease;
  }

  .ed-footer-bottom-links a:hover {
    color: #f58220;
  }

  /* ================= FLOATING WHATSAPP ================= */

  .ed-floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1600;
    width: 54px;
    height: 54px;
    background: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
    transition: all .25s ease;
  }

  .ed-floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(245,130,32,.35);
    animation: edWhatsappPulse 1.8s ease-in-out infinite;
  }

  .ed-floating-whatsapp:hover {
    background: #f58220;
    color: #ffffff;
    transform: translateY(-3px);
  }

  @keyframes edFooterGridMove {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 52px 52px;
    }
  }

  @keyframes edWhatsappPulse {
    0%, 100% {
      transform: scale(.94);
      opacity: .7;
    }

    50% {
      transform: scale(1.1);
      opacity: .18;
    }
  }

  @media (max-width: 1199px) {
    .ed-footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ed-footer-col {
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .ed-footer-col:nth-child(2) {
      border-right: none;
    }

    .ed-footer-col:nth-child(3),
    .ed-footer-col:nth-child(4) {
      border-bottom: none;
    }
  }

  @media (max-width: 991px) {
    .ed-footer-cta-section {
      padding-top: 60px;
    }

    .ed-footer-cta {
      grid-template-columns: 1fr;
    }

    .ed-footer-cta-image {
      min-height: 240px;
    }

    .ed-footer-cta-content {
      padding: 34px;
    }

    .ed-main-footer {
      margin-top: -40px;
      padding-top: 110px;
    }
  }

  @media (max-width: 575px) {
    .ed-footer-cta-section .ed-container,
    .ed-main-footer .ed-container,
    .ed-footer-bottom .ed-container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .ed-footer-cta-content h2 {
      font-size: 34px;
      letter-spacing: -1.4px;
    }

    .ed-footer-cta-content {
      padding: 26px;
    }

    .ed-whatsapp-cta {
      width: 100%;
      justify-content: center;
    }

    .ed-footer-grid {
      grid-template-columns: 1fr;
    }

    .ed-footer-col {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,.10);
      padding: 30px 24px;
    }

    .ed-footer-col:last-child {
      border-bottom: none;
    }

    .ed-footer-col h3::before {
      left: -24px;
    }

    .ed-contact-block a {
      font-size: 19px;
    }

    .ed-footer-bottom-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .ed-floating-whatsapp {
      left: 16px;
      bottom: 16px;
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
  }

/* ================= ABOUT US PAGE ================= */
.ed-about-hero {
  position: relative;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  padding: 120px 0 92px;
}
.ed-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.46)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  z-index: 1;
}
.ed-about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
  z-index: 2;
}
.ed-about-hero .ed-container { position: relative; z-index: 3; }
.ed-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.ed-about-kicker i { color: var(--ed-orange); }
.ed-about-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 600;
  margin: 0 0 18px;
}
.ed-about-hero p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  margin: 0;
}
.ed-about-section { background:#ffffff; padding: 76px 0; }
.ed-about-grid {
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items:center;
}
.ed-about-image {
  border-radius: 3px;
  overflow:hidden;
  border:1px solid #eeeeee;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.ed-about-image img { width:100%; height:460px; object-fit:cover; }
.ed-about-label {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#666666;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}
.ed-about-label span { width:34px; height:2px; display:inline-block; background: var(--ed-red-yellow); }
.ed-about-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height:.98;
  letter-spacing:-2.4px;
  font-weight:600;
  color:#111111;
  margin:0 0 18px;
}
.ed-about-content p {
  color:#666666;
  font-size:15px;
  line-height:1.75;
  margin:0 0 15px;
}
.ed-about-points {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}
.ed-about-point {
  border:1px solid #eeeeee;
  background: linear-gradient(180deg,#ffffff,#fafafa);
  border-radius:3px;
  padding:18px;
}
.ed-about-point i { color: var(--ed-orange); font-size:22px; margin-bottom:12px; }
.ed-about-point h3 { font-size:16px; line-height:1.25; font-weight:600; margin:0 0 7px; color:#111111; }
.ed-about-point p { font-size:13px; line-height:1.55; margin:0; }
.ed-about-values { background:#f7f7f7; padding:76px 0; }
.ed-about-values-head { max-width:760px; margin-bottom:28px; }
.ed-about-values-head h2 { font-size: clamp(34px,4vw,52px); line-height:.98; letter-spacing:-2.4px; font-weight:600; margin:0 0 14px; color:#111111; }
.ed-about-values-head p { color:#666666; line-height:1.7; margin:0; }
.ed-about-values-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:14px; }
.ed-about-value-card { background:#ffffff; border:1px solid #eeeeee; border-radius:3px; padding:22px; min-height:185px; transition:all .25s ease; }
.ed-about-value-card:hover { transform:translateY(-4px); border-color:rgba(245,130,32,.45); box-shadow:0 18px 46px rgba(0,0,0,.08); }
.ed-about-value-card span { display:inline-flex; width:38px; height:38px; align-items:center; justify-content:center; border-radius:2px; background:rgba(245,130,32,.10); color:var(--ed-orange); margin-bottom:15px; }
.ed-about-value-card h3 { font-size:17px; line-height:1.25; font-weight:600; margin:0 0 8px; color:#111111; }
.ed-about-value-card p { color:#666666; font-size:13.5px; line-height:1.6; margin:0; }
@media (max-width: 991px) { .ed-about-grid, .ed-about-values-grid { grid-template-columns:1fr 1fr; } .ed-about-image img { height:360px; } }
@media (max-width: 575px) { .ed-about-hero { padding:90px 0 70px; } .ed-about-hero h1 { letter-spacing:-1.8px; } .ed-about-grid, .ed-about-points, .ed-about-values-grid { grid-template-columns:1fr; } .ed-about-section, .ed-about-values { padding:48px 0; } }


/* ================= HOTFIX: FONT AWESOME + CALLBACK TOGGLE ================= */
.fa-solid.fa-minus::before,
.fas.fa-minus::before { content: "\f068"; }
.fa-solid.fa-plus::before,
.fas.fa-plus::before { content: "\2b"; }
.fa-solid.fa-headset::before,
.fas.fa-headset::before { content: "\f590"; }
.fa-solid.fa-bars::before,
.fas.fa-bars::before { content: "\f0c9"; }
.fa-solid.fa-xmark::before,
.fas.fa-xmark::before { content: "\f00d"; }
.fa-solid.fa-phone::before,
.fas.fa-phone::before { content: "\f095"; }
.fa-brands.fa-whatsapp::before,
.fab.fa-whatsapp::before { content: "\f232"; }

.edu-widget-close,
.edu-widget-bubble {
  pointer-events: auto !important;
}

.edu-widget-close i,
.edu-widget-bubble i,
.ed-mobile-toggle i,
.ed-mobile-close i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  line-height: 1 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.edu-widget-close i {
  color: currentColor !important;
  font-size: 13px !important;
}

.edu-widget-bubble i {
  color: #ffffff !important;
}
