  /* ===== Reset minimal pentru această secțiune ===== */
  .es-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
 
  .es-section {
    width: 100%;
    max-width: 1280px;
    margin: 10px auto 10px;
    padding: 0 0px;
  }
 
  /* ============================================================
     BANNER / SLIDER
     ============================================================ */
  .es-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 380;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 35, 95, 0.12);
    background: #f4f6fa;
  }
 
  .es-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
 
  .es-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 7%;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
 
  .es-slide.active {
    opacity: 1;
    z-index: 1;
  }
 
  /* Overlay întunecat pentru lizibilitatea textului */
  .es-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 25, 70, 0.65) 0%, rgba(10, 25, 70, 0.25) 60%, rgba(10, 25, 70, 0) 100%);
    z-index: 1;
  }
 
  .es-slide-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    animation: esSlideIn 0.9s ease-out;
  }
 
  @keyframes esSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
 
  .es-slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
 
  .es-slide-title {
    font-size: clamp(22px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	color: #fff;
  }
 
  .es-slide-subtitle {
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 22px;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  }
 
  .es-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0a4ed8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
 
  .es-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    background: #f0f6ff;
  }
 
  .es-slide-btn::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
  }
 
  .es-slide-btn:hover::after {
    transform: translateX(4px);
  }
 
  /* ===== Săgeți de navigație ===== */
  .es-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0a4ed8;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
 
  .es-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
  }
 
  .es-arrow.prev { left: 18px; }
  .es-arrow.next { right: 18px; }
 
  /* ===== Dots ===== */
  .es-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
  }
 
  .es-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
 
  .es-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
  }
 /* ============================================================
     HERO LAYOUT (MENIU + SLIDER)
     ============================================================ */
  .es-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: stretch;
  }

  /* ============================================================
     MENIU CATEGORII
     ============================================================ */
  .es-menu {
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .es-menu-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7591;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 8px 8px;
    margin: 0;
    border-bottom: 1px solid #eef1f7;
    margin-bottom: 4px;
  }

  .es-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: #0f2358;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.25s ease;
    position: relative;
  }

  .es-menu-item:hover {
    background: #f4f7ff;
    transform: translateX(3px);
  }

	.es-menu-icon {
		flex-shrink: 0;
		width: 24px;
		height: 24px;
		background: #efefef;
		border-radius: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #0047d2;
		transition: transform 0.3s ease;
  }

  .es-menu-item:hover .es-menu-icon {
    transform: rotate(-6deg) scale(1.05);
  }

  .es-menu-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
  }

  .es-menu-text {
    flex: 1;
    min-width: 0;
  }

  .es-menu-arrow {
    color: #b8c1d9;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.25s ease;
  }

  .es-menu-item:hover .es-menu-arrow {
    color: #0a4ed8;
    transform: translateX(2px);
  }
  /* ============================================================
     SECȚIUNEA CU BENEFICII
     ============================================================ */
  .es-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
  }
 
  .es-benefit {
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    cursor: default;
  }
 
  .es-benefit:hover {
    transform: translateY(-3px);
    border-color: #0a4ed8;
    box-shadow: 0 10px 24px rgba(10, 78, 216, 0.12);
  }
 
  .es-benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a4ed8 0%, #1e6bff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
  }
 
  .es-benefit:hover .es-benefit-icon {
    transform: rotate(-6deg) scale(1.05);
  }
 
  .es-benefit-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }
 
  .es-benefit-text {
    flex: 1;
    min-width: 0;
  }
 
  .es-benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f2358;
    margin-bottom: 3px;
    line-height: 1.3;
  }
 
  .es-benefit-desc {
    font-size: 13px;
    color: #6b7591;
    line-height: 1.4;
  }
 
  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 992px) {
    .es-benefits {
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 768px) {
      .es-section .es-menu {
      display: none !important;
    }

    .es-section .es-hero {
      grid-template-columns: 1fr;
    }
    .es-slider {
      aspect-ratio: 16 / 10;
    }
 
    .es-slide {
      padding: 0 6%;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
 
    .es-slide::before {
      background: linear-gradient(180deg, rgba(10, 25, 70, 0.3) 0%, rgba(10, 25, 70, 0.7) 100%);
    }
 
    .es-slide-content {
      max-width: 100%;
    }
 
    .es-arrow {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }
 
    .es-arrow.prev { left: 10px; }
    .es-arrow.next { right: 10px; }
 
    .es-benefit {
      padding: 16px 14px;
    }
 
    .es-benefit-icon {
      width: 42px;
      height: 42px;
    }
 
    .es-benefit-icon svg {
      width: 22px;
      height: 22px;
    }
  }
 
  @media (max-width: 480px) {
    .es-benefits {
      grid-template-columns: 1fr;
      gap: 12px;
    }
 
    .es-slider {
      aspect-ratio: 4 / 3;
      border-radius: 10px;
    }
 
    .es-slide-tag {
      font-size: 10px;
      padding: 4px 10px;
    }
  }
  
  /* ============================================================
     CATEGORII MARI (cu imagini)
     ============================================================ */
  .es-categories-section {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    box-sizing: border-box;
  }

  .es-categories-section *,
  .es-categories-section *::before,
  .es-categories-section *::after {
    box-sizing: border-box;
  }

  .es-categories-header {
    text-align: center;
    margin-bottom: 28px;
  }

  .es-categories-title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: #0f2358;
    margin: 0 0 6px;
    line-height: 1.2;
  }

  .es-categories-subtitle {
    font-size: 15px;
    color: #6b7591;
    margin: 0;
    line-height: 1.4;
  }

  .es-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .es-category-card {
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 35, 95, 0.04);
  }

  .es-category-card:hover {
    transform: translateY(-4px);
    border-color: #0a4ed8;
    box-shadow: 0 14px 30px rgba(10, 78, 216, 0.14);
  }

  .es-category-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f6fa;
  }

  .es-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .es-category-card:hover .es-category-image img {
    transform: scale(1.06);
  }

  .es-category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-top: 1px solid #eef1f7;
  }

  .es-category-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0a4ed8 0%, #1e6bff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
  }

  .es-category-card:hover .es-category-icon {
    transform: rotate(-6deg) scale(1.05);
  }

  .es-category-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .es-category-name {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #0f2358;
    line-height: 1.3;
    min-width: 0;
  }

  /* TABLET */
  @media (max-width: 992px) {
    .es-categories-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  /* MOBILE */
  @media (max-width: 600px) {
    .es-categories-section {
      margin: 30px auto;
    }

    .es-categories-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .es-category-label {
      padding: 12px 12px;
      gap: 10px;
    }

    .es-category-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
    }

    .es-category-icon svg {
      width: 17px;
      height: 17px;
    }

    .es-category-name {
      font-size: 13px;
      line-height: 1.25;
    }
  }