/* =====================================================
   EPlus — Main Stylesheet
   Developer: Danny Breed Technology
   ===================================================== */

/* ── CSS Variables ─────────────────────────────── */
:root {
  --red:         #E0001B;
  --red-dark:    #b0001a;
  --red-light:   #ff1a35;
  --navy:        #0d1b3e;
  --navy-mid:    #142454;
  --navy-light:  #1e3272;
  --gold:        #f5a623;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --gray-100:    #f0f2f7;
  --gray-200:    #e4e8f1;
  --gray-500:    #8892a4;
  --gray-700:    #4a5568;
  --gray-900:    #1a202c;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-heading:'Barlow', sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(13,27,62,.12);
  --shadow-lg:   0 8px 48px rgba(13,27,62,.20);
  --transition:  all .25s ease;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ────────────────────────────────────── */
.ep-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Topbar ────────────────────────────────────── */
.ep-topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-family: var(--font-body);
  padding: 7px 0;
  border-bottom: 2px solid var(--red);
}
.ep-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ep-topbar__left, .ep-topbar__right { display: flex; gap: 20px; align-items: center; }
.ep-topbar__left span, .ep-topbar__right a {
  display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.ep-topbar__right a:hover { color: var(--gold); }
.ep-topbar__left i, .ep-topbar__right i { color: var(--red-light); font-size: 12px; }

/* ── Navbar ────────────────────────────────────── */
.ep-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13,27,62,.10);
  transition: var(--transition);
}
.ep-nav.scrolled { box-shadow: 0 4px 30px rgba(13,27,62,.18); }
.ep-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.ep-nav__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ep-logo-text {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.ep-logo-text span { color: var(--red); }
.ep-logo-sub {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-top: 4px;
}
.ep-nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.ep-nav__links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.ep-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.ep-nav__links a:hover, .ep-nav__links a.active { color: var(--red); }
.ep-nav__links a:hover::after, .ep-nav__links a.active::after { transform: scaleX(1); }
.ep-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Buttons ───────────────────────────────────── */
.ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.ep-btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.ep-btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,0,27,.30);
}
.ep-btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.ep-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.ep-btn--lg { padding: 14px 32px; font-size: 16px; }
.ep-btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.ep-btn--white:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.ep-btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.ep-btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
}

/* ── Hamburger ─────────────────────────────────── */
.ep-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ep-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ───────────────────────────────── */
.ep-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  height: 560px;
}
.ep-slider__track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.ep-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ep-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ep-slide.active .ep-slide__bg { transform: scale(1); }
.ep-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,27,62,.82) 0%,
    rgba(13,27,62,.55) 50%,
    rgba(13,27,62,.1) 100%
  );
}
.ep-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 620px;
}
.ep-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease .2s;
}
.ep-slide.active .ep-slide__badge {
  opacity: 1; transform: translateY(0);
}
.ep-slide__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease .35s;
}
.ep-slide__title span { color: var(--gold); }
.ep-slide.active .ep-slide__title { opacity: 1; transform: translateY(0); }
.ep-slide__desc {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease .5s;
}
.ep-slide.active .ep-slide__desc { opacity: 1; transform: translateY(0); }
.ep-slide__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease .65s;
}
.ep-slide.active .ep-slide__actions { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.ep-slider__prev, .ep-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ep-slider__prev { left: 20px; }
.ep-slider__next { right: 20px; }
.ep-slider__prev:hover, .ep-slider__next:hover {
  background: var(--red);
  border-color: var(--red);
}
.ep-slider__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ep-slider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.ep-slider__dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}

/* ── QUICK HELP SECTION ─────────────────────────── */
.ep-quick-help {
  background: var(--off-white);
  padding: 0;
  position: relative;
  z-index: 5;
}
.ep-quick-help__heading {
  text-align: center;
  padding: 52px 20px 36px;
}
.ep-quick-help__heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px,4vw,36px);
  font-weight: 800;
  color: var(--navy);
}
.ep-quick-help__heading p {
  color: var(--gray-500);
  margin-top: 8px;
  font-size: 16px;
}
.ep-quick-help__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 56px;
}
.ep-qcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.ep-qcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.ep-qcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.ep-qcard:hover::before { opacity: 1; }
.ep-qcard__icon, .ep-qcard__title, .ep-qcard__desc {
  position: relative;
  z-index: 1;
  transition: color .3s ease;
}
.ep-qcard__icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
  transition: var(--transition);
}
.ep-qcard:hover .ep-qcard__icon {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.ep-qcard__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.ep-qcard:hover .ep-qcard__title,
.ep-qcard:hover .ep-qcard__desc { color: var(--white); }
.ep-qcard__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.ep-qcard__arrow {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 16px;
  color: var(--red);
  transition: var(--transition);
  z-index: 1;
}
.ep-qcard:hover .ep-qcard__arrow { color: rgba(255,255,255,.8); transform: translateX(3px); }

/* ── SUBSCRIPTION HIGHLIGHT ─────────────────────── */
.ep-subscribe-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--red-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ep-subscribe-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -150px;
}
.ep-subscribe-cta__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.ep-subscribe-cta__text { flex: 1; }
.ep-subscribe-cta__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.ep-subscribe-cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px,4vw,48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ep-subscribe-cta__text h2 span { color: var(--gold); }
.ep-subscribe-cta__text p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin-bottom: 28px;
}
.ep-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 14px 22px;
  margin-bottom: 28px;
}
.ep-price-badge__label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 4px;
}
.ep-price-badge__amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--gold);
}
.ep-price-badge__period {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.ep-subscribe-cta__visual {
  flex-shrink: 0;
  width: 320px;
}
.ep-subscribe-cta__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Placeholder visual if no image */
.ep-decoder-mock {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.ep-decoder-mock i { font-size: 80px; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.ep-decoder-mock p { color: rgba(255,255,255,.5); font-size: 14px; }

/* ── HOW IT WORKS ────────────────────────────────── */
.ep-how {
  background: var(--white);
  padding: 80px 0;
}
.ep-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.ep-section-head__tag {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ep-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px,4vw,40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.ep-section-head p {
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}
.ep-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.ep-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  z-index: 0;
}
.ep-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ep-step__num {
  width: 84px; height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-200);
  transition: var(--transition);
  box-shadow: 0 0 0 8px var(--white);
}
.ep-step:hover .ep-step__num,
.ep-step.highlighted .ep-step__num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 8px var(--white), 0 0 0 10px rgba(224,0,27,.15);
}
.ep-step__icon {
  font-size: 24px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 6px;
}
.ep-step:hover .ep-step__icon, .ep-step.highlighted .ep-step__icon { color: var(--red); }
.ep-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.ep-step__desc { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

/* ── FEATURES STRIP ─────────────────────────────── */
.ep-features {
  background: var(--gray-100);
  padding: 60px 0;
}
.ep-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ep-feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(13,27,62,.06);
  transition: var(--transition);
}
.ep-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ep-feat__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.ep-feat__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}
.ep-feat__desc { font-size: 13px; color: var(--gray-500); }

/* ── CHANNELS TICKER ────────────────────────────── */
.ep-ticker {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.ep-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ep-ticker__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  overflow: hidden;
}
.ep-ticker__track {
  display: flex;
  gap: 40px;
  animation: ep-scroll 30s linear infinite;
}
.ep-ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
}
.ep-ticker__item i { color: var(--gold); font-size: 12px; }
@keyframes ep-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA BANNER ─────────────────────────────────── */
.ep-cta-banner {
  background: var(--red);
  padding: 56px 0;
}
.ep-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ep-cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px,3.5vw,40px);
  font-weight: 800;
  color: var(--white);
}
.ep-cta-banner__text p { color: rgba(255,255,255,.85); margin-top: 6px; }
.ep-cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────── */
.ep-footer { background: var(--navy); }
.ep-footer__main { padding: 64px 0 40px; }
.ep-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.ep-footer__brand .ep-logo-text { font-size: 44px; }
.ep-footer__brand .ep-logo-sub { color: rgba(255,255,255,.4); }
.ep-footer__brand p {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
}
.ep-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ep-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  transition: var(--transition);
}
.ep-footer__social a:hover { background: var(--red); color: var(--white); }
.ep-footer__col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.ep-footer__col ul li { margin-bottom: 10px; }
.ep-footer__col ul li a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: var(--transition);
}
.ep-footer__col ul li a:hover { color: var(--gold); padding-left: 4px; }
.ep-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 12px;
}
.ep-footer__contact li i { color: var(--red-light); margin-top: 3px; flex-shrink: 0; }
.ep-footer__contact li a { color: rgba(255,255,255,.65); }
.ep-footer__contact li a:hover { color: var(--gold); }
.ep-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.ep-footer__bottom p {
  color: rgba(255,255,255,.35);
  font-size: 13px;
}
.ep-footer__bottom a { color: var(--gold); }

/* ── WhatsApp float ─────────────────────────────── */
.ep-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 9999;
  transition: var(--transition);
}
.ep-whatsapp-float:hover { transform: scale(1.1); background: #128C7E; color: var(--white); }

/* ── Auth Pages ─────────────────────────────────── */
.ep-auth {
  min-height: calc(100vh - 120px);
  background: var(--off-white);
  display: flex;
  align-items: stretch;
}
.ep-auth__left {
  flex: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--red-dark) 100%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ep-auth__left::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -100px;
  left: -80px;
}
.ep-auth__left h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
}
.ep-auth__left h1 span { color: var(--gold); }
.ep-auth__left p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
}
.ep-auth__left-features { list-style: none; position: relative; }
.ep-auth__left-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin-bottom: 10px;
}
.ep-auth__left-features li i { color: var(--gold); }
.ep-auth__right {
  flex: 1;
  padding: 48px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ep-auth__box {
  width: 100%;
  max-width: 440px;
}
.ep-auth__box h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.ep-auth__box p.ep-auth__sub {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Form Styles */
.ep-form-group {
  margin-bottom: 18px;
}
.ep-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.ep-form-group label span.req { color: var(--red); }
.ep-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.ep-form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,0,27,.10);
}
.ep-form-control.is-pin {
  font-size: 28px;
  letter-spacing: 14px;
  text-align: center;
  font-family: monospace;
}
.ep-form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.ep-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ep-input-wrap { position: relative; }
.ep-input-wrap .ep-input-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  cursor: pointer;
  font-size: 15px;
}
.ep-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--gray-500);
  font-size: 13px;
}
.ep-form-divider::before, .ep-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.ep-form-link {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 18px;
}
.ep-form-link a { color: var(--red); font-weight: 600; }

/* Alerts */
.ep-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ep-alert--danger  { background: #fff0f0; border: 1.5px solid #fcc; color: #c0001a; }
.ep-alert--success { background: #f0fff5; border: 1.5px solid #b8f0cf; color: #0a7a3a; }
.ep-alert--info    { background: #f0f5ff; border: 1.5px solid #c0d8ff; color: #1a45a0; }
.ep-alert--warning { background: #fffbf0; border: 1.5px solid #ffe5a0; color: #8a6300; }
.ep-alert i { flex-shrink: 0; margin-top: 2px; }

/* Captcha */
.ep-captcha-box {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.ep-captcha-box.checked { border-color: #22c55e; background: #f0fff5; }
.ep-captcha-box input[type="checkbox"] {
  width: 22px; height: 22px;
  cursor: pointer;
  accent-color: #22c55e;
}
.ep-captcha-box label { margin: 0; cursor: pointer; font-size: 14px; flex: 1; }
.ep-captcha-brand {
  font-size: 10px;
  color: var(--gray-500);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .ep-slider { height: 420px; }
  .ep-slide__content { padding: 0 30px; }
  .ep-quick-help__cards { grid-template-columns: repeat(3, 1fr); }
  .ep-features__grid { grid-template-columns: repeat(2, 1fr); }
  .ep-steps { grid-template-columns: repeat(2, 1fr); }
  .ep-steps::before { display: none; }
  .ep-subscribe-cta__inner { flex-direction: column; }
  .ep-subscribe-cta__visual { width: 100%; max-width: 400px; }
  .ep-footer__grid { grid-template-columns: 1fr 1fr; }
  .ep-auth__left { display: none; }
  .ep-auth__right { padding: 40px 24px; }
}

@media (max-width: 767px) {
  .ep-topbar { display: none; }
  .ep-nav__links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform .35s ease;
  }
  .ep-nav__links.open { transform: translateX(0); }
  .ep-nav__links a { color: var(--white); font-size: 20px; }
  .ep-nav__links a::after { background: var(--gold); }
  .ep-nav__actions .ep-btn:not(.ep-btn--primary) { display: none; }
  .ep-hamburger { display: flex; z-index: 1001; }
  .ep-hamburger.open span { background: var(--white); }
  .ep-slider { height: 340px; }
  .ep-slide__content { padding: 0 20px; max-width: 100%; }
  .ep-slide__title { font-size: 28px; }
  .ep-quick-help__cards { grid-template-columns: 1fr; }
  .ep-features__grid { grid-template-columns: 1fr; }
  .ep-steps { grid-template-columns: 1fr 1fr; }
  .ep-footer__grid { grid-template-columns: 1fr; }
  .ep-cta-banner__inner { flex-direction: column; text-align: center; }
  .ep-form-row { grid-template-columns: 1fr; }
  .ep-auth__right { padding: 28px 16px; }
}