 /* ========== BANNER ========== */
 .ep-banner {
     position: relative;
     width: 100%;
     min-height: 320px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.06) 50%, rgba(5, 150, 105, 0.04) 100%);
     border-bottom: 1px solid var(--glass-border);
     backdrop-filter: blur(3px);
 }

 .ep-banner-content {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 60px 24px;
     animation: epFadeInUp 0.8s ease-out both;
 }

 .ep-banner-tag {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 20px;
     background: rgba(217, 119, 6, 0.1);
     border: 1px solid rgba(217, 119, 6, 0.25);
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     color: var(--accent-gold);
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 24px;
     animation: epFadeInUp 0.8s 0.15s ease-out both;
 }

 .ep-banner-tag .pulse-dot {
     width: 6px;
     height: 6px;
     background: var(--accent-gold);
     border-radius: 50%;
     animation: epPulse 2s ease-in-out infinite;
 }

 .ep-banner-title {
     font-size: clamp(36px, 6vw, 64px);
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -2px;
     margin-bottom: 16px;
     background: linear-gradient(85deg, #059669 25%, #d97706 50%, #059669 75%);
     background-size: 300% 100%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: epShimmer 4s ease-in-out infinite, epFadeInUp 0.8s 0.25s ease-out both;
 }

 .ep-banner-subtitle {
     font-size: clamp(16px, 1.5vw, 20px);
     color: var(--text-secondary);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
     animation: epFadeInUp 0.8s 0.35s ease-out both;
 }

 .ep-banner-line {
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
     border-radius: 2px;
     margin: 24px auto 0;
     animation: epExpandLine 0.8s 0.5s ease-out both;
 }

 /* ========== CONTENT ========== */
 .ep-content {
     max-width: 1280px;
     margin: 0 auto;
     padding: 80px 24px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: start;
 }

 /* Image side */
 .ep-image-side {
     position: relative;
     animation: epFadeInUp 0.8s 0.4s ease-out both;
 }

 .ep-image-wrapper {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     border: 1px solid var(--glass-border);
     background: var(--glass-bg);
     box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
     transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .ep-image-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
     z-index: 2;
 }

 .ep-image-wrapper:hover {
     transform: translateY(-6px);
     box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
     border-color: var(--glass-border-hover);
 }

 .ep-image-wrapper img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .ep-image-wrapper:hover img {
     transform: scale(1.05);
 }

 /* Decorative ring */
 .ep-image-ring {
     position: absolute;
     inset: -16px;
     border: 2px dashed rgba(5, 150, 105, 0.12);
     border-radius: 32px;
     animation: slowRotate 30s linear infinite;
     pointer-events: none;
 }

 /* List side */
 .ep-list-side {
     animation: epFadeInUp 0.8s 0.5s ease-out both;
 }

 .ep-benefits-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .ep-benefit-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     padding: 16px 20px;
     background: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(10px);
     border-radius: 16px;
     border: 1px solid var(--glass-border);
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
     opacity: 0;
     transform: translateY(20px);
     animation: epFadeInUp 0.5s ease-out forwards;
     transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .ep-benefit-item:hover {
     transform: translateX(6px);
     box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
     border-color: rgba(5, 150, 105, 0.2);
     background: rgba(255, 255, 255, 0.95);
 }

 .ep-benefit-item:nth-child(1) {
     animation-delay: 0.6s;
 }

 .ep-benefit-item:nth-child(2) {
     animation-delay: 0.72s;
 }

 .ep-benefit-item:nth-child(3) {
     animation-delay: 0.84s;
 }

 .ep-benefit-item:nth-child(4) {
     animation-delay: 0.96s;
 }

 .ep-benefit-item:nth-child(5) {
     animation-delay: 1.08s;
 }

 .ep-benefit-item:nth-child(6) {
     animation-delay: 1.20s;
 }

 .ep-benefit-item:nth-child(7) {
     animation-delay: 1.32s;
 }

 .ep-check {
     flex-shrink: 0;
     width: 22px;
     height: 22px;
     background: linear-gradient(135deg, var(--primary-green), var(--light-green));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 2px;
     box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
     animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
     transform: scale(0);
 }

 .ep-benefit-item:nth-child(1) .ep-check {
     animation-delay: 0.75s;
 }

 .ep-benefit-item:nth-child(2) .ep-check {
     animation-delay: 0.87s;
 }

 .ep-benefit-item:nth-child(3) .ep-check {
     animation-delay: 0.99s;
 }

 .ep-benefit-item:nth-child(4) .ep-check {
     animation-delay: 1.11s;
 }

 .ep-benefit-item:nth-child(5) .ep-check {
     animation-delay: 1.23s;
 }

 .ep-benefit-item:nth-child(6) .ep-check {
     animation-delay: 1.35s;
 }

 .ep-benefit-item:nth-child(7) .ep-check {
     animation-delay: 1.47s;
 }

 @keyframes checkPop {
     from {
         transform: scale(0);
     }

     to {
         transform: scale(1);
     }
 }

 .ep-check svg {
     width: 12px;
     height: 12px;
     stroke: #fff;
     stroke-width: 3;
     stroke-linecap: round;
     stroke-linejoin: round;
     fill: none;
 }

 .ep-benefit-text {
     font-size: 15px;
     line-height: 1.6;
     color: var(--text-secondary);
     font-weight: 400;
 }

 /* ========== ANIMATIONS ========== */
 @keyframes epFadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes epShimmer {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 @keyframes epPulse {

     0%,
     100% {
         opacity: 0.8;
         transform: scale(1);
     }

     50% {
         opacity: 0.4;
         transform: scale(1.2);
     }
 }

 @keyframes epExpandLine {
     from {
         width: 0;
         opacity: 0;
     }

     to {
         width: 60px;
         opacity: 1;
     }
 }

 @keyframes slowRotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 /* ========== RESPONSIVE ========== */
 @media (max-width: 1024px) {
     .ep-content {
         grid-template-columns: 1fr;
         gap: 48px;
         padding: 60px 24px;
     }

     .ep-image-wrapper {
         max-width: 600px;
         margin: 0 auto;
     }
 }

 @media (max-width: 768px) {
     .ep-banner {
         min-height: 260px;
     }

     .ep-content {
         padding: 40px 20px;
     }


 }

 @media (max-width: 480px) {

     .ep-content {
         padding: 32px 16px;
     }

     .ep-benefit-item {
         padding: 14px 16px;
     }

     .ep-benefit-text {
         font-size: 14px;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     .ep-banner-content,
     .ep-banner-tag,
     .ep-banner-title,
     .ep-banner-subtitle,
     .ep-banner-line,
     .ep-image-side,
     .ep-list-side,
     .ep-benefit-item,
     .ep-check {
         animation: none;
         opacity: 1;
         transform: none;
     }

     .blob {
         animation: none;
     }

     .ep-image-ring {
         animation: none;
     }
 }