:root {
  --eol-bg: #0e1325;
  --eol-panel: #141a34;
  --eol-text: #e6eefc;
  --eol-muted: rgba(255, 255, 255, 0.75);
  --eol-accent: #e3c86d;
}

html {
  scroll-behavior: smooth;
}

.eol-acc-wrap {
  background: var(--eol-bg);
  color: var(--eol-text);
}

.eol-acc {
  margin: 0 auto;
}

.eol-acc-item {
  background: var(--eol-panel);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: border-color .28s ease, box-shadow .28s ease;
}
.eol-acc-item .accordion-image {
  padding: 20px;
}
.eol-acc-item .accordion-image img {
  border-radius: 20px;
}
.eol-acc-item.active {
  border-color: var(--eol-accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.eol-acc-header {
  margin: 0;
}
.eol-acc-item.active .eol-acc-header button  {
  color: #CBAA4E !important;
}
.eol-acc-header button {
  background: transparent !important;
  border: 0;
  outline: 0;
}

.eol-acc-trigger {
  appearance: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  cursor: pointer;
  color: var(--eol-text);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.eol-acc-trigger:focus {
  outline: 3px solid rgba(227, 200, 109, 0.14);
  outline-offset: 2px;
  border-radius: 10px;
}

.eol-acc-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--eol-muted);
  transition: transform .32s cubic-bezier(.2, .9, .2, 1);
  flex-shrink: 0;
}

.eol-acc-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.eol-acc-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition-property: max-height, padding;
  transition-timing-function: cubic-bezier(.2, .9, .2, 1);
  color: var(--eol-muted);
  font-size: 15px;
  line-height: 1.6;

}

.eol-acc-item.active .eol-acc-content {
  /* bottom padding set via control; fallback below */
  padding-bottom: 20px;
}

/* Page bg optional; remove if not needed
body { background:#0b1026; }
*/

.eol-card {
  position: relative;
  background: #0f1633;
  color: #e8eefc;
  border: 2px solid #e3c86d;
  border-radius: 18px;
  padding: 28px 28px 26px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
  /*font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;*/
  height: 100%;
}

/* Badge */
.eol-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e3c86d;
  color: #1a1f36;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border: 2px solid #e3c86d;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 16px;
  /* radius - 2 approx */
}

/* Heading */
.eol-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  margin: 8px 0 18px;
}

/* Price row */
.eol-price {
  display: flex;
  align-items: baseline;
  justify-content: left;
  gap: 8px;
  margin: 4px 0 6px;
}

.eol-amount {
  font-size: clamp(52px, 9vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: #e3c86d;
  letter-spacing: -1px;
}

.eol-per {
  font-size: clamp(16px, 2.2vw, 18px);
  opacity: .9;
}

/* Subtext */
.eol-sub {
  text-align: left;
  color: #8fa0c2;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Features */
.eol-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 28px;
  display: grid;
  gap: 10px;
  font-size: 16px;
}
.list-content {
    min-height: 220px;
}

.eol-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
}

.eol-list .eol-tick {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.eol-list .eol-tick svg {
  width: 18px;
  height: 18px;
  stroke: #e3c86d;
  fill: none;
}

/* CTA */
.eol-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #e3c86d;
  color: #1a1f36;
  border: 0;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 24px rgba(227, 200, 109, .25);
  text-decoration: none;
}

.eol-card .eol-cta:hover, .eol-card:hover .eol-cta {
  filter: brightness(1.05);
  background: #fff;
}

.eol-cta:active {
  transform: translateY(1px);
}

/* tighter on small screens */
@media (max-width:420px) {
  .eol-card {
    padding: 24px 18px 20px;
  }

  .eol-list {
    gap: 12px;
  }

  .eol-cta {
    font-size: 16px;
  }
}

/* SCOPED RESET */
.eol-legal,
.eol-legal *,
.eol-legal *::before,
.eol-legal *::after {
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}

.eol-legal .eol-toc h3,
.eol-legal .eol-toc h4 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}

.eol-legal img,
.eol-legal svg {
  display: block;
  max-width: 100%;
}

.eol-legal {
  line-height: 1.6;
}

.eol-legal b,
strong {
  font-weight: 600 !important;
}

.btn-ec {
  text-align: right;
  margin-bottom: 10px;
}

.btn-ec button {
  padding: 0;
  border: 0;
  font-size: 12px;
  color: #f5c622;
}

.btn-ec button:hover,
.btn-ec button:focus {
  color: #efefef;
  background: transparent;
}

/* THEME VARS */
.eol-legal {
  --bg: #0f1220;
  --panel: #141834;
  --text: #e8ecf8;
  --muted: #a9b0c7;
  --brand: #77d4ff;
  --accent: #ffd66e;
  --ok: #5ce1b9;
  --danger: #ff6b6b;
  --link: #c4a839;
  --border: rgba(255, 255, 255, .08);
  --ring: rgba(119, 212, 255, .35);
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
  --radius: 16px;
  --maxw: 1100px;
  color: var(--text);
}

@media (prefers-color-scheme: light) {
  .eol-legal {
    --bg: #f7f8fc;
    --panel: #ffffff;
    --text: #0f1220;
    --muted: #54607a;
    --border: rgba(13, 19, 33, .08);
    --shadow: 0 10px 30px rgba(13, 19, 33, .06);
    --link: #c4a839;
  }
}

/* LAYOUT */
.eol-legal .eol-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
}

.eol-legal .eol-hero {
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(119, 212, 255, .12), transparent 60%),
    linear-gradient(90deg, rgba(255, 214, 110, .10), transparent 40%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.eol-legal .eol-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between
}

.eol-legal .eol-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px
}

.eol-legal .eol-brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: radial-gradient(100% 100% at 0% 0%, var(--brand), var(--accent));
  box-shadow: 0 6px 18px var(--ring);
}

.eol-legal .eol-title {
  margin: 6px 0 2px;
  font-size: clamp(1.2rem, 1.2rem + 1vw, 1.8rem)
}

.eol-legal .eol-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: .98rem
}

.eol-legal .eol-meta {
  color: var(--muted);
  font-size: .9rem
}

.eol-legal .eol-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand);
  color: #081018;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px var(--ring);
  border: 1px solid rgba(255, 255, 255, .12);
}

/* Scope-limited so it won’t affect the whole site */
.eol-legal .elementor-column,
.eol-legal .elementor-widget-wrap {
  overflow: visible !important;
}


/* TOC */
.eol-legal .eol-toc {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  margin: 0 0 12px 0;

  position: -webkit-sticky;
  position: sticky;
  top: 98px;
  z-index: 2;
}

.eol-legal .eol-toc h3 {
  margin: 0 0 8px;
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .25px
}

.eol-legal .eol-toc ol {
  margin: 0;
  padding-left: 18px
}

.eol-legal .eol-toc a {
  color: var(--link);
  text-decoration: none
}

.eol-legal .eol-toc a:hover {
  text-decoration: underline
}

.eol-legal .eol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.eol-legal h3,
.eol-legal h2,
.eol-legal h1,
.eol-legal h4,
.eol-legal h5 {
  font-weight: 600;
}

@media (max-width:768px) {
  .eol-legal .eol-toc {
    position: relative;
    top: 0;
  }

  /* this turns sticky off */
}

@media (min-width: 980px) {
  .eol-legal .eol-grid {
    grid-template-columns: 320px 1fr
  }
}

/* SECTIONS */
.eol-legal .eol-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 6px 8px;
}

.eol-legal details {
  border-radius: 12px;
  overflow: hidden
}

.eol-legal summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.eol-legal summary::-webkit-details-marker {
  display: none
}

.eol-legal .eol-num {

  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(119, 212, 255, .16);
  color: var(--brand);
  border: 1px solid var(--border);
  display: none;
}

.eol-legal .eol-heading {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .2px;
  margin-top: 2px
}

.eol-legal .eol-chev {
  margin-left: auto;
  transition: transform .25s ease;
  opacity: .7
}

.eol-legal details[open] .eol-chev {
  transform: rotate(90deg);
  opacity: 1
}

.eol-legal .eol-content {
  padding: 0 18px 18px 25px;
  color: var(--text)
}

.eol-legal .eol-content p {
  margin: .6rem 0
}

.eol-legal .eol-content ul {
  margin: .4rem 0 1rem 1.2rem;
  padding: 0;
}

.eol-legal .eol-callout {
  padding: 12px 14px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03)
}

.eol-legal .eol-warn {
  background: linear-gradient(0deg, rgba(255, 107, 107, .08), transparent);
  border-color: rgba(255, 107, 107, .4)
}

.eol-legal .eol-ok {
  background: linear-gradient(0deg, rgba(92, 225, 185, .10), transparent);
  border-color: rgba(92, 225, 185, .45);
}

.eol-legal h4 {
  font-size: 1.35rem;
}

/* COUNTERS */
.eol-legal .eol-counter {
  counter-reset: eol-sec
}

.eol-legal .eol-counter details {
  counter-increment: eol-sec
}

.eol-legal .eol-counter summary .eol-heading::before {
  content: counter(eol-sec) ". ";
  color: var(--muted);
  font-weight: 800;
}

#final-acknowledgment .eol-heading::before {
  display: none;
}

.eol-ok .eol-content pre {
  background: #c8c8c826;
  padding: 20px;
  display: block;
}

/* LISTS / INLINE */
.eol-legal .eol-checklist {
  list-style: none;
  padding-left: 0;
  margin: .4rem 0 0
}

.eol-legal .eol-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  margin: 8px 0;
  background: rgba(92, 225, 185, .12);
  border: 1px solid rgba(92, 225, 185, .35)
}

.eol-legal .eol-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #063;
  background: #bff3df
}

.eol-legal kbd {
  font: 600 .85rem ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(127, 127, 127, .15);
  padding: .2em .45em;
  border-radius: 6px;
  border: 1px solid var(--border)
}

.eol-legal a {
  color: var(--link);
  text-decoration: none
}

.eol-legal a:hover {
  text-decoration: underline
}

.eol-legal .eol-small {
  font-size: .92rem;
  color: var(--muted)
}

.eol-legal .eol-section.eol-ok .eol-content {
  padding: 0 20px 20px 20px !important;
}
.eol-toc h2 {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease, margin-bottom 0.3s ease;
  font-size: 20px;
  border-bottom: 1px solid #333131;
  padding-bottom: 13px;
  max-width: 200px;
}
.postion-sticky-activated .eol-toc h2 {
  opacity: 1;
  height: auto;
  margin-bottom: 1.5rem;
}

@keyframes fadeIn {
            from { opacity: 0.8; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Smooth transition for showing/hiding elements */
        .eol-toc h2 {
            opacity: 0;
            height: 0;
            margin-bottom: 0;
            overflow: hidden;
            transition: opacity 0.3s ease, height 0.3s ease, margin-bottom 0.3s ease;
        }
        
        .postion-sticky-activated .eol-toc h2 {
            opacity: 1;
            height: auto;
            margin-bottom: 1.5rem;
        }
/* PRINT */
@media print {

  .eol-legal .eol-hero,
  .eol-legal .eol-toc,
  .eol-legal .eol-cta {
    display: none !important
  }

  .eol-legal details[open] summary,
  .eol-legal .eol-content {
    break-inside: avoid
  }

  .eol-legal details {
    border: 0
  }

  .eol-legal summary {
    padding: 0;
    margin-top: 10px
  }

  .eol-legal .eol-content {
    padding: 0 0 10px 0
  }

  .eol-legal {
    background: #fff;
    color: #000
  }
}


@media (max-width:768px) {
  .eol-legal .eol-toc {
    position: relative;
  }
}

/* EOL Testimonials */

.testimonials-headline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    max-width: 1152px;
    width: 100%;
    margin-bottom: 24px;
}

.testimonials-subtitle {
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #d2b448;
    margin: 0;
}

.testimonials-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #010101;
    text-transform: capitalize;
    margin: 0;
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: flex-start;
    width: 100%;
    max-width: 1280px;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    width: calc(50% - 17px);
    max-width: 623px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
}

.testimonial-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.quote-icon {
    width: 50px;
    height: 36px;
    flex-shrink: 0;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.star-rating {
    width: 128px;
    height: 24px;
    flex-shrink: 0;
}

.star-rating svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #0f1125;
    margin: 0;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #E9EFF5;
    border: none;
    margin: 0;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.profile-name {
    font-size: 20px;
    font-weight: 600;
    color: #0f1125;
    margin: 0;
}

.profile-role {
    font-size: 18px;
    font-weight: 500;
    color: #717276;
    margin: 0;
}
.testimonial-card{
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  animation: .8s ease-out .2s both fadeInUp;
}
.testimonial-card:hover{
  transform: translateY(-8px);
  animation: .8s ease-out .2s both fadeInUp;
  box-shadow: 0 12px 24px #00000008;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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


.view-more-link svg {
    transform: scaleY(-1);
}

.view-more-link:hover {
    filter: drop-shadow(0 0 4px rgba(210, 180, 72, 0.4));
}

.accordion-arrow {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.accordion-arrow svg {
    transform: scaleY(-1);
}

.accordion-item.expanded .accordion-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* EOL Image Widget */
.elementor-widget-eol-image-box .eol-image-box-content {
    width: 100%
}

.accordion-text ul {
    padding-bottom: 15px;
}
@media (min-width: 768px) {
    .elementor-widget-eol-image-box.eol-image-box-position-left .eol-image-box-wrapper,
    .elementor-widget-eol-image-box.eol-image-box-position-right .eol-image-box-wrapper {
        display:flex
    }

    .elementor-widget-eol-image-box.eol-image-box-position-right .eol-image-box-wrapper {
        flex-direction: row-reverse;
        text-align: end
    }

    .elementor-widget-eol-image-box.eol-image-box-position-left .eol-image-box-wrapper {
        flex-direction: row;
        text-align: start
    }

    .elementor-widget-eol-image-box.eol-image-box-position-top .eol-image-box-img {
        margin: auto
    }

    .elementor-widget-eol-image-box.eol-image-box-vertical-align-top .eol-image-box-wrapper {
        align-items: flex-start
    }

    .elementor-widget-eol-image-box.eol-image-box-vertical-align-middle .eol-image-box-wrapper {
        align-items: center
    }

    .elementor-widget-eol-image-box.eol-image-box-vertical-align-bottom .eol-image-box-wrapper {
        align-items: flex-end
    }
}

@media (max-width: 767px) {
    .elementor-widget-eol-image-box .eol-image-box-img {
        margin-bottom:15px;
        margin-left: auto!important;
        margin-right: auto!important
    }
}

.elementor-widget-eol-image-box .eol-image-box-img {
    display: inline-block
}

.elementor-widget-eol-image-box .eol-image-box-img img {
    display: block;
    line-height: 0
}

.elementor-widget-eol-image-box .eol-image-box-title a {
    color: inherit
}

.elementor-widget-eol-image-box .eol-image-box-wrapper {
    text-align: center
}

.elementor-widget-eol-image-box .eol-image-box-description {
    margin: 0
}
.eol-image-box-description ul {
    padding-bottom: 25px;
}
.eol-image-box-content h2 span,
.eol-image-box-content h3 span {
  display: block;
  color: #D2B448;
}
.eol-pricing-toggle {
    display: inline-flex;
    position: relative;
    background: #1a2348;
    border-radius: 25px;
    padding: 4px;
    margin: 0 auto 20px;
    cursor: pointer;
    user-select: none;
}

.eol-pricing-toggle .toggle-option {
    padding: 8px 20px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    color: #8fa0c2;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.eol-pricing-toggle .toggle-option.active {
    color: #1a1f36;
}

.eol-pricing-toggle .toggle-switch {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: #e3c86d;
    border-radius: 22px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.eol-pricing-toggle[data-default="annual"] .toggle-switch {
    transform: translateX(100%);
}

.eol-price-wrapper {
    position: relative;
    min-height: 60px;
}

.eol-price {
    transition: opacity 0.3s ease;
}
