.elementor-2013 .elementor-element.elementor-element-ebd0c7d{--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-2013 .elementor-element.elementor-element-ebd0c7d:not(.elementor-motion-effects-element-type-background), .elementor-2013 .elementor-element.elementor-element-ebd0c7d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}body.elementor-page-2013:not(.elementor-motion-effects-element-type-background), body.elementor-page-2013 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E9E9E9;}/* Start custom CSS for container, class: .elementor-element-ebd0c7d *//* ======================================================
   0. VARIABLES / ROOT
====================================================== */
:root {
  --primary: #4A4194;
  --secondary: #8A6BB9;
  --dark: #1e1e2f;
  --muted: #6b6f8a;
  --light: #f5f4ff;
  --white: #ffffff;
  --muted-light: #8a8fb0;
  --cta-text: #e2e5ff;
}

/* ======================================================
   1. GLOBAL / BASE
====================================================== */
.mtowl-container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
  font-family: Inter, system-ui, sans-serif;
}

h1, h2, h3 {
  color: var(--dark);
  margin-bottom: 16px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

span { font-weight: 500; }

.mtowl-muted {
  color: var(--muted-light);
  margin-bottom: 24px;
}

.highlight {
  font-weight: 600;
  color: var(--primary);
}

/* ======================================================
   2. BUTTONS
====================================================== */
.mtowl-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mtowl-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.mtowl-btn.secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.mtowl-btn.large { font-size: 18px; }
.mtowl-btn.xl { font-size: 20px; padding: 18px 36px; }

.mtowl-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ======================================================
   3. GRID SYSTEM
====================================================== */
.grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid.reverse {
  direction: rtl;
}

.grid.reverse > * {
  direction: ltr;
}

/* ======================================================
   4. IMAGE STYLES
====================================================== */
.mtowl-section-image img,
.mtowl-hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ======================================================
   5. HERO SECTION
====================================================== */
.mtowl-beta-hero {
  position: relative;
  min-height: 550px; /* slightly shorter for higher content */
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, var(--light), var(--white));
  overflow: hidden;
  padding: 20px 20px 80px 20px; /* top padding reduced to 20px, bottom stays */
}


.hero-grid {
  align-items: center;
  gap: 60px;
}

.mtowl-hero-text {
  max-width: 600px;
  text-align: left;
}

.mtowl-beta-hero h1 {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--dark);
}

.mtowl-hero-text span {
  color: var(--primary);
}

.mtowl-hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin: 20px 0 32px;
}

.mtowl-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mtowl-hero-trust {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted-light);
  flex-wrap: wrap;
}

/* HERO IMAGE */
.mtowl-hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 600px;
}

.mtowl-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mtowl-hero-image img:hover {
  transform: scale(1.05);
}

/* ======================================================
   6. BENEFITS
====================================================== */
.mtowl-benefits {
  background: #fafaff;
  text-align: center;
}

.mtowl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.mtowl-benefit-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mtowl-benefit-card.featured {
  border: 2px solid var(--secondary);
}

.mtowl-benefits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.mtowl-benefits-inline span {
  background: #f1f0ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ======================================================
   7. TRUST / DARK CTA
====================================================== */
.mtowl-trust,
.mtowl-no-card {
  background: linear-gradient(135deg, var(--primary), #293D7F);
  color: var(--white);
  text-align: center;
}

.mtowl-trust p,
.mtowl-no-card p {
  color: var(--cta-text);
}

/* ======================================================
   8. PREVIEW / ABOUT
====================================================== */
.mtowl-about { background: #fafafa; }
.mtowl-beta-preview { background: #ffffff; }

.mtowl-preview-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.mtowl-preview-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

.mtowl-section-number {
  font-size: 48px;
  font-weight: 800;
  color: #d6d8ef;
}

/* ======================================================
   9. FINAL CTA
====================================================== */
.mtowl-final-cta {
  text-align: center;
  background: radial-gradient(circle, var(--light), var(--white));
}

/* ======================================================
   10. ACCORDION LAYOUT
====================================================== */
.mtowl-accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.mtowl-accordion-image {
  position: sticky;
  top: 120px;
}

.mtowl-accordion-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* ======================================================
   11. ACCORDION
====================================================== */
.mtowl-accordion {
  margin-top: 32px;
}

.mtowl-accordion details {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid #ececf4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.mtowl-accordion details[open] {
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(138,107,185,0.25);
}

.mtowl-accordion summary {
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.mtowl-accordion summary::-webkit-details-marker { display: none; }

.mtowl-accordion .num {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
}

.mtowl-accordion .title {
  flex: 1;
  font-weight: 600;
  color: var(--dark);
}

.mtowl-accordion .icon {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

details[open] .icon { transform: rotate(45deg); }

.mtowl-accordion .content {
  padding: 0 26px 26px;
  animation: accordionFade 0.35s ease;
}

.mtowl-accordion p,
.mtowl-accordion li {
  color: #5f6385;
  line-height: 1.7;
}

.mtowl-accordion ul,
.mtowl-accordion ol {
  margin-left: 18px;
}

/* ======================================================
   12. NO CREDIT CARD CTA
====================================================== */
.mtowl-no-card .mtowl-heading,
.mtowl-no-card .mtowl-heading span {
  color: #ffffff;
}

.mtowl-no-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.mtowl-form {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.mtowl-form iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 16px;
}

.mtowl-no-card-promo {
  text-align: left;
}

.mtowl-no-card-promo h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.mtowl-no-card-promo p {
  font-size: 17px;
  color: var(--cta-text);
  margin-bottom: 24px;
}

.mtowl-no-card-promo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.4);
}

.mtowl-no-card .mtowl-benefits-inline span {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

/* ======================================================
   13. ANIMATIONS
====================================================== */
@keyframes accordionFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================================
   14. RESPONSIVE
====================================================== */
@media (max-width: 900px) {
  .mtowl-accordion-layout,
  .mtowl-no-card-grid {
    grid-template-columns: 1fr;
  }

  .mtowl-no-card-promo {
    text-align: center;
  }

  .mtowl-form iframe {
    height: 560px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mtowl-hero-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .mtowl-hero-text h1 {
    font-size: clamp(28px, 6vw, 48px);
  }

  .mtowl-hero-text p {
    font-size: 16px;
  }

  .mtowl-hero-actions {
    justify-content: center;
  }

  .mtowl-hero-trust {
    justify-content: center;
  }

  .mtowl-shape-future .mtowl-container {
    grid-template-columns: 1fr;
  }

  .mtowl-shape-future .mtowl-section-text {
    text-align: center;
  }

  .mtowl-shape-future .mtowl-benefits-inline {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .grid.reverse {
    direction: ltr;
  }
}

.mtowl-badge.light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff; /* Make text white */
}

/* ======================================================
   15. SHAPE THE FUTURE
====================================================== */
.mtowl-shape-future {
  padding: 100px 20px;
  background: #fafaff;
}

.mtowl-shape-future .mtowl-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.mtowl-shape-future .mtowl-section-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

/* IMAGE OVERLAY */
.mtowl-shape-future .mtowl-section-image.overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(138, 107, 185, 0.15); /* Light violet overlay */
  pointer-events: none;
  z-index: 1;
  border-radius: inherit; /* matches parent */
}

/* IMAGE HOVER EFFECT */
.mtowl-shape-future .mtowl-section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: transform 0.4s ease;
}

.mtowl-shape-future .mtowl-section-image img:hover {
  transform: scale(1.05);
}

.mtowl-shape-future .mtowl-section-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1e1e2f;
}

.mtowl-shape-future .mtowl-section-text h2 span {
  color: #4A4194;
}

.mtowl-shape-future .mtowl-section-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.mtowl-shape-future .mtowl-benefits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.mtowl-shape-future .mtowl-benefits-inline span {
  background: #f1f0ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #4A4194;
}

.mtowl-shape-future .mtowl-btn {
  font-size: 18px;
  padding: 14px 32px;
}
/* PROMO CONTAINER */
.mtowl-no-card-promo {
  text-align: center;
}

/* MODERN BACKGROUND CARD */
.mtowl-promo-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 10;
  margin: 32px auto; /* CENTERED */
  border-radius: 20px;
  overflow: hidden;

  /* Modern gradient + glass */
  background: linear-gradient(
    135deg,
    rgba(74, 65, 148, 0.25),
    rgba(138, 107, 185, 0.25)
  );
  backdrop-filter: blur(10px);

  box-shadow:
    0 25px 60px rgba(74, 65, 148, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* SLIDES */
.promo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center; /* 🎯 ADDED – true center */

  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

/* ACTIVE SLIDE */
.promo-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* OPTIONAL GLOW */
.mtowl-promo-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}/* End custom CSS */