.elementor-2667 .elementor-element.elementor-element-cdfbe95{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2667 .elementor-element.elementor-element-5117bac .elementor-heading-title{color:#F9F9F9;}.elementor-2667 .elementor-element.elementor-element-7fa6bc8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2667 .elementor-element.elementor-element-76d47db{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-2667 .elementor-element.elementor-element-493a073{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-2667 .elementor-element.elementor-element-493a073 .elementor-divider-separator{width:100%;}.elementor-2667 .elementor-element.elementor-element-493a073 .elementor-divider{padding-block-start:50px;padding-block-end:50px;}.elementor-2667 .elementor-element.elementor-element-29d62d8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2667 .elementor-element.elementor-element-9999e1b{font-family:"Roboto", Sans-serif;font-weight:400;color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-a9e9263 *//* Global Reset */


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #221516;
  color: #ffffff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}


/* Pricing Container */


.mei-pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  
  position: relative;
  overflow: hidden;
}

.mei-pricing-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.5; }
}

/* Header Section */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(220, 38, 38, 0.3);
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(145deg, #2d1518 0%, #1f0f12 100%);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  border: 2px solid #ffdd7e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

/* Popular Card */
.pricing-card.popular {
  border: 2px solid #dc2626;
  transform: scale(1.05);
  background: linear-gradient(145deg, #3d1b1f 0%, #2d1518 100%);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.popular-badge {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6); }
}

/* Plan Duration */
.plan-duration {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  margin-top: 10px;
}

/* Device Selector */
.device-.elementor-2667 .elementor-element.elementor-element-a9e9263 {
  margin-bottom: 25px;
}

.device-.elementor-2667 .elementor-element.elementor-element-a9e9263 label {
  display: block;
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.device-dropdown {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.device-dropdown:hover {
  border-color: #dc2626;
  background-color: rgba(220, 38, 38, 0.1);
}

.device-dropdown:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.device-dropdown option {
  background: #1f0f12;
  color: #ffffff;
  padding: 10px;
}

/* Price Display */
.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 25px 0 10px;
  transition: transform 0.2s ease;
}

.currency {
  font-size: 1.8rem;
  color: #fca5a5;
  margin-right: 5px;
  margin-top: 8px;
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(220, 38, 38, 0.4);
}

.cents {
  font-size: 2rem;
  color: #fca5a5;
  margin-top: 8px;
  font-weight: 600;
}

.price-period {
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.monthly-equiv {
  color: #22c55e;
  font-weight: 600;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  color: #d1d5db;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.5;
  padding-left: 5px;
  transition: all 0.3s ease;
}

.features-list li:hover {
  color: #ffffff;
  padding-left: 10px;
}

.check-icon {
  color: #22c55e;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  font-style: normal;
}

.check-icon.highlight {
  color: #facc15;
  background: rgba(250, 204, 21, 0.15);
}

.features-list .highlight {
  color: #facc15;
  font-weight: 600;
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button .arrow {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: scale(1) translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 30px 25px;
  }
  
  .amount {
    font-size: 3.5rem;
  }
  
  .plan-duration {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mei-pricing-container {
    padding: 40px 15px;
  }
  
  .pricing-title {
    font-size: 1.75rem;
  }
  
  .pricing-card {
    padding: 25px 20px;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .features-list li {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Modal container */
.mei-modal{ position:fixed; inset:0; display:none; z-index:99999; }
.mei-modal.is-open{ display:block; }

.mei-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

/* Panel */
.mei-modal-panel{
  position:relative;
  width:min(880px, 94vw);
  margin: clamp(14px, 6vh, 56px) auto;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(255,0,70,.22), transparent 60%),
    radial-gradient(900px 480px at 90% 30%, rgba(255,0,70,.16), transparent 60%),
    rgba(12,12,16,.96);
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
  transform: translateY(10px);
  animation: meiPop .18s ease-out forwards;
}

@keyframes meiPop { to { transform: translateY(0); } }

.mei-modal-close{
  position:absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff; font-size: 22px;
  cursor:pointer;
  display:grid; place-items:center;
}
.mei-modal-close:hover{ background: rgba(255,255,255,.10); }

/* Header */
.mei-modal-header{
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mei-modal-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: 12px;
}
.mei-modal-title{
  margin: 12px 0 6px;
  color:#fff;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .2px;
}
.mei-modal-subtitle{
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

/* Form */
.mei-form{ padding: 18px 22px 22px; }
.mei-form-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.mei-field{ display:flex; flex-direction:column; gap:8px; }
.mei-field-full{ grid-column: 1 / -1; }

.mei-field label{
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.req{ color: #ff2b5b; }

.mei-field input,
.mei-field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.mei-field input::placeholder,
.mei-field textarea::placeholder{ color: rgba(255,255,255,.45); }

.mei-field input:focus,
.mei-field textarea:focus{
  border-color: rgba(255,43,91,.55);
  box-shadow: 0 0 0 4px rgba(255,43,91,.16);
}

/* Payment radios */
.mei-radio-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mei-radio{
  flex: 1 1 140px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  user-select:none;
}
.mei-radio input{ accent-color: #ff2b5b; }
.mei-radio:hover{ background: rgba(255,255,255,.10); }
.mei-radio span{ color: rgba(255,255,255,.9); font-size: 14px; }

/* Summary */
.mei-summary{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.mei-summary-item{
  flex:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.mei-summary-item strong{ color:#fff; }

/* Submit */
.mei-submit{
  width:100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: none;
  border-radius: 18px;
  cursor:pointer;
  color:#fff;
  background: linear-gradient(90deg, #ff153f, #b3001d);
  box-shadow: 0 18px 50px rgba(255, 21, 63, .22);
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:center;
}
.mei-submit-main{ font-weight: 800; font-size: 15px; letter-spacing:.2px; }
.mei-submit-sub{ font-size: 12px; opacity:.9; }

.mei-status{
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  min-height: 18px;
}

/* Trust line */
.mei-trust{
  margin-top: 10px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.mei-trust .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #ff2b5b;
  box-shadow: 0 0 0 4px rgba(255,43,91,.15);
}

/* Responsive */
@media (max-width: 720px){
  .mei-form-grid{ grid-template-columns: 1fr; }
  .mei-modal-panel{
    width: min(520px, 94vw);
    margin: 10px auto;
  }
}

/* Small screens: make it feel like a bottom sheet */
@media (max-width: 420px){
  .mei-modal-panel{
    margin: 0 auto;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .mei-modal-header{ padding-top: 64px; }
}

/* Modal container */
.mei-modal { position: fixed; inset: 0; display: none; z-index: 99999; }
.mei-modal.is-open { display: block; }

.mei-modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

/* Panel (scrollable) */
.mei-modal-panel{
  position: relative;
  width: min(880px, 94vw);
  margin: clamp(12px, 6vh, 56px) auto;
  border-radius: 22px;
  overflow: hidden;

  /* allow internal scrolling */
  max-height: calc(100vh - 24px);
  overflow-y: auto;

  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(255,0,70,.22), transparent 60%),
    radial-gradient(900px 480px at 90% 30%, rgba(255,0,70,.16), transparent 60%),
    rgba(12,12,16,.96);
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
  transform: translateY(10px);
  animation: meiPop .18s ease-out forwards;
}

@keyframes meiPop { to { transform: translateY(0); } }

.mei-modal-close{
  position: sticky; /* stays visible when scrolling */
  top: 10px;
  margin-left: auto;
  margin-right: 10px;
  margin-top: 10px;

  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff; font-size: 22px;
  cursor:pointer;
  display:grid; place-items:center;
  z-index: 2;
}
.mei-modal-close:hover{ background: rgba(255,255,255,.10); }

/* Header */
.mei-modal-header{
  padding: 10px 22px 14px; /* reduced because close is sticky */
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mei-modal-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: 12px;
}
.mei-modal-title{
  margin: 12px 0 6px;
  color:#fff;
  font-size: clamp(18px, 2.2vw, 24px);
}
.mei-modal-subtitle{ margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }

/* Form */
.mei-form{ padding: 18px 22px 22px; }
.mei-form-grid{ display:grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.mei-field{ display:flex; flex-direction:column; gap:8px; }
.mei-field-full{ grid-column: 1 / -1; }
.mei-field label{ color: rgba(255,255,255,.85); font-size: 13px; }
.req{ color: #ff2b5b; }

.mei-field input, .mei-field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.mei-field input:focus, .mei-field textarea:focus{
  border-color: rgba(255,43,91,.55);
  box-shadow: 0 0 0 4px rgba(255,43,91,.16);
}
.mei-field input::placeholder, .mei-field textarea::placeholder{ color: rgba(255,255,255,.45); }

/* Payment */
.mei-radio-row{ display:flex; gap:10px; flex-wrap:wrap; }
.mei-radio{
  flex: 1 1 180px;
  display:flex; align-items:center; gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  user-select:none;
}
.mei-radio input{ accent-color: #ff2b5b; }
.mei-radio:hover{ background: rgba(255,255,255,.10); }
.mei-pay{ display:flex; align-items:center; gap:10px; color: rgba(255,255,255,.92); font-size: 14px; }

.mei-icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:grid; place-items:center;
}
.mei-icon svg{ width: 22px; height: 22px; color: #fff; opacity: .95; }
.mei-icon-paypal svg{ color: #7aa7ff; }
.mei-icon-card svg{ color: #ffd27a; }

/* Summary */
.mei-summary{
  margin-top: 14px;/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-9999e1b */h3{
   color: #f2e394
}/* End custom CSS */