/* ------- Mobile optimizations (tables, cover alignment, soft background) ------- */

/*hero-video width */
#hero-video {
  width: 100%;
}

/* Align hero/cover elements to the left on small screens */
@media (max-width: 768px) {
  .hero .wrap {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .hero .left,
  .hero .right,
  .hero .wrap,
  .hero .section-tight,
  .hero .kicker,
  .hero h1,
  .hero h2,
  .hero p,
  .hero .btn,
  .hero .muted {
    text-align: left !important;
  }

  /* Announce strip align left on mobile */
  .announce .inner,
  .announce .pill,
  .announce .spots,
  .announce .timer,
  .announce .muted {
    text-align: left;
  }
}

/* Demo table (preview) responsive styles */
.demo .table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.demo .table table {
  width: 100%;
  border-collapse: collapse;
}

/* Stack rows into cards on small screens */
@media (max-width: 640px) {
  .demo .table table thead {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
  }
  .demo .table table,
  .demo .table tbody,
  .demo .table tr,
  .demo .table td {
    display: block;
    width: 100%;
  }
  .demo .table tr {
    background: var(--card-dark, #0f172a); /* dark slate */
    color: var(--ink-on-dark, #e5e7eb);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(2, 6, 23, 0.25);
  }
  .demo .table td {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
  }
  .demo .table td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* Use data-label attr for headers on cells */
  .demo .table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-dim, #94a3b8);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
  /* Improve visibility of buttons on dark cards */
  .demo .table .view {
    background: var(--accent, #1EE592);
    color: #052e2b;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
  }
}

/* Comparison table responsiveness */
.cmp {
  width: 100%;
  border-collapse: collapse;
}

/* Only scroll the comparison table wrapper */
.compare .wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp th,
.cmp td {
  text-align: left;
}

@media (max-width: 768px) {
  /* Simple, normal table that scrolls horizontally */
  .compare .wrap { overflow-x: auto; }
  .cmp { min-width: 760px; }
  .cmp th, .cmp td { white-space: normal; padding: 10px 12px; }
}

/* Slight tweaks for mobile cards and spacing */
@media (max-width: 480px) {
  .section-tight { gap: 10px; }
}
.owl-unbox :root, :root {
  --bg: #0b0e12;
  --bg-elev: #12161c;
  --bg-soft: #151a22;
  --card: #161b24;
  --ink: #e8eef7;
  --ink-dim: #b6c0d0;
  --ink-muted: #8894a6;
  --primary: #1EE592;
  --primary-ink: #062a1d;
  --accent: #FF8A00;
  --warning: #ff5a5f;
  --brand: #2cc36b;
  --brand-2: #45a9ff;
  --ok: #3ed598;
  --bad: #ff6b6b;
  --link: #5fb0ff;
  --border: #263042;
  --shadow: rgba(0,0,0,.5);
  --shadow-soft: rgba(0,0,0,.25);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --w: clamp(320px, 94vw, var(--maxw));
}

*, *::before, *::after { box-sizing: border-box; }
.owl-unbox html, .owl-unbox body, html, body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; }
 .owl-unbox a { color: var(--link); text-decoration: none; }
 .owl-unbox a:hover { text-decoration: underline; }
.owl-unbox .container { width: var(--w); margin: 0 auto; }

.hide { display: none !important; }
.muted { color: var(--ink-muted); }
.dim { color: var(--ink-dim); }
.pill { border-radius: 999px; padding: 6px 10px; }
.shadow { box-shadow: 0 10px 24px var(--shadow); }
.shadow-soft { box-shadow: 0 6px 18px var(--shadow-soft); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.elev { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.center { text-align: center; }
.right { text-align: right; }
.nowrap { white-space: nowrap; }
.split { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.stack-lg { display: flex; flex-direction: column; gap: 18px; }
.stack-xl { display: flex; flex-direction: column; gap: 28px; }
hr { border: 0; height: 1px; background: var(--border); margin: 24px 0; }

/* Enforce dark typography inside the embed to beat theme overrides */
.owl-unbox, .owl-unbox p, .owl-unbox li, .owl-unbox h1, .owl-unbox h2, .owl-unbox h3,
.owl-unbox h4, .owl-unbox h5, .owl-unbox h6, .owl-unbox summary, .owl-unbox td,
.owl-unbox th, .owl-unbox label, .owl-unbox small, .owl-unbox button {
  color: var(--ink) !important;
}
.owl-unbox .muted { color: var(--ink-muted) !important; }
.owl-unbox .dim { color: var(--ink-dim) !important; }

/* Neutralize theme white backgrounds inside the embed, but keep our styled sections */
.owl-unbox section:not(.hero):not(.trust-band):not(.pricing):not(.compare) {
  background: transparent !important;
}
.owl-unbox .container { background: transparent !important; }

.owl-unbox .announce { background: #090c10; border-bottom: 1px solid var(--border); color: var(--ink-dim); font-size: 14px; }
.announce .inner { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.announce .spots { color: var(--ink); font-weight: 600; }
.announce .timer { color: var(--accent); font-weight: 700; letter-spacing: .3px; }

.owl-unbox header { position: sticky; top: 0; z-index: 50; backdrop-filter: none; background: #0b0e12; border-bottom: 1px solid var(--border); }
.owl-unbox .nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 12px 0; }
.owl-unbox .brand { display: flex; align-items: center; gap: 12px; }
.owl-unbox .brand img.logo { width: 180px; height: auto; filter: drop-shadow(0 4px 10px var(--shadow-soft)); }
.owl-unbox .nav .cta-inline { display: none; }
.owl-unbox .badge-inc { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; background: rgba(255,138,0,.14); color: #ffda9e; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,138,0,.3); }
.owl-unbox .badge-inc svg { width: 16px; height: 16px; }
.owl-unbox .btn { --btn-bg: var(--primary); --btn-ink: var(--primary-ink); background: var(--btn-bg); color: var(--btn-ink); border: 0; border-radius: 12px; padding: 12px 18px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 12px 24px rgba(30,229,146,.15); transition: transform .05s ease, box-shadow .2s ease, filter .2s ease; }
.owl-unbox .btn:hover { transform: translateY(-1px); filter: brightness(.98); text-decoration: none; }
.owl-unbox .btn:active { transform: translateY(0); }
.owl-unbox .btn.alt { --btn-bg: var(--accent); --btn-ink: #1c0d00; box-shadow: 0 12px 24px rgba(255,138,0,.2); }
.owl-unbox .btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); box-shadow: none; font-weight: 600; }
.owl-unbox .btn.slim { padding: 10px 14px; border-radius: 10px; }
.owl-unbox .btn.block { width: 100%; justify-content: center; }
.owl-unbox .kicker { color: var(--brand-2); font-weight: 700; font-size: 14px; letter-spacing: .4px; text-transform: uppercase; }
.owl-unbox .price-strike { color: var(--ink-muted); text-decoration: line-through; margin-right: 8px; }
.owl-unbox .price-now { color: var(--primary); font-weight: 800; font-size: clamp(22px, 4vw, 34px); }
.owl-unbox .badge-moneyback { display: inline-flex; gap: 8px; align-items: center; color: #a3f2c8; border: 1px dashed rgba(30,229,146,.5); padding: 8px 12px; border-radius: 12px; background: rgba(30,229,146,.08); font-size: 12px; font-weight: 600; }
.owl-unbox .badge-secure { display: inline-flex; gap: 8px; align-items: center; color: #bcd8ff; border: 1px dashed rgba(94,178,255,.5); padding: 8px 12px; border-radius: 12px; background: rgba(94,178,255,.08); font-size: 12px; font-weight: 600; }
.owl-unbox .hero-tagline { color: var(--ink-dim); font-size: clamp(14px, 2vw, 18px); margin: 0 0 12px 0; font-weight: 500; }
.owl-unbox .what-you-get { margin: 12px 0 16px 0; }
.owl-unbox .micro-list { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.owl-unbox .micro-list .item { display: inline-flex; gap: 6px; align-items: center; color: var(--ink-dim); font-size: 13px; }
.owl-unbox .security-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 8px; }
.owl-unbox .security-badges.center { text-align: center; }
.owl-unbox .security-badges.cover {justify-content:left}

.owl-unbox .hero { padding: 36px 0 30px 0; background: radial-gradient(1200px 420px at 50% -10%, rgba(69,169,255,.15), transparent 60%), radial-gradient(800px 360px at 80% 0, rgba(30,229,146,.12), transparent 60%), var(--bg); border-bottom: 1px solid var(--border); }
.owl-unbox .hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.owl-unbox .hero h1 { font-size: clamp(28px, 6vw, 54px); line-height: 1.05; margin: 0 0 10px 0; }
.owl-unbox .hero p.lead { color: var(--ink-dim); font-size: clamp(16px, 2.2vw, 20px); margin: 0 0 16px 0; }
.owl-unbox .hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.owl-unbox .hero .benefits { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.owl-unbox .hero .benefits .item { display: inline-flex; gap: 8px; align-items: center; color: var(--ink-dim); font-size: 14px; }
.owl-unbox .hero .right { background: linear-gradient(180deg, rgba(86,102,126,.12), rgba(86,102,126,.06)); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; position: relative; overflow: hidden; }
.owl-unbox .hero .countdown { display: inline-flex; gap: 10px; align-items: center; background: rgba(255,138,0,.12); color: #ffd7a3; padding: 8px 12px; border-radius: 12px; border: 1px solid rgba(255,138,0,.3); font-weight: 700; font-size: 14px; }
.owl-unbox .hero .screenshot { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: #0a0d12; min-height: 240px; }

.owl-unbox .trust-band { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.owl-unbox .trust-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; opacity: .9; filter: grayscale(1) brightness(.9); }
.owl-unbox .trust-logos img { max-height: 36px; margin: 0 auto; display: block; }
.owl-unbox .trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 14px; padding: 16px; text-align: center; }
.stat .n { font-size: clamp(22px, 4.5vw, 34px); font-weight: 800; color: var(--primary); }
.stat .l { font-size: 14px; color: var(--ink-dim); }
.logo-item { text-align: center; }
.logo-name { font-size: 12px; color: var(--ink-muted); margin-top: 8px; }

.owl-unbox .demo { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.owl-unbox .table { overflow: auto; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-elev); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
th { background: #111722; color: #c9d6ea; position: sticky; top: 0; z-index: 1; }
tr:hover td { background: rgba(69,169,255,.06); }
.chip { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(94,178,255,.1); color: #bcd8ff; border: 1px solid rgba(94,178,255,.25); white-space: nowrap; }
.chip.ok { background: rgba(62,213,152,.1); color: #c0f2de; border-color: rgba(62,213,152,.25); }
.chip.warn { background: rgba(255,106,106,.1); color: #ffc9c9; border-color: rgba(255,106,106,.25); }
.owl-unbox .view { font-size: 12px; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--border); background: #10161f; color: var(--ink); cursor: pointer; }
.owl-unbox .view:hover { background: #0e141c; }

.demo-side { position: sticky; top: 86px; align-self: start; }
.mini { font-size: 13px; color: var(--ink-dim); }
.bullet { display: flex; gap: 10px; align-items: flex-start; }
.bullet svg { flex: none; margin-top: 3px; }

.owl-unbox .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.owl-unbox .video-card { position: relative; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #000; aspect-ratio: 16 / 9; }
.owl-unbox .video-card iframe { width: 100%; height: 100%; border: 0; }

.owl-unbox .feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.owl-unbox .feature { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: grid; gap: 8px; }
.owl-unbox .feature .t { font-weight: 700; }
.owl-unbox .feature .d { color: var(--ink-dim); font-size: 14px; }
.owl-unbox .feature .icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(69,169,255,.14); display: grid; place-items: center; margin-bottom: 6px; border: 1px solid rgba(69,169,255,.25); }

.owl-unbox .pricing { background: linear-gradient(180deg, rgba(94,178,255,.07), rgba(30,229,146,.09)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.owl-unbox .plan { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.pay-icons { display: flex; gap: 10px; align-items: center; opacity: .9; }
.pay-icons svg { width: 40px; height: 26px; }

.owl-unbox .compare .wrap { overflow: auto; }
.owl-unbox .cmp { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--bg-elev); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.owl-unbox .cmp th, .owl-unbox .cmp td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.owl-unbox .cmp td { text-align: center; }
.owl-unbox .cmp th { background: #0f1520; color: #cfe0ff; position: sticky; top: 0; }
.owl-unbox .yes { color: var(--ok); font-weight: 800; }
.owl-unbox .no { color: var(--bad); font-weight: 700; }
.owl-unbox .compare .disclaimer { font-size: 12px; color: var(--ink-muted); text-align: right; padding-top: 8px; }

/* Make the final CTA rectangle visibly lighter on dark theme */
#final-cta {
  background: white;
  border: 1px solid rgba(94,178,255,.45);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(11,14,18,.4), 0 10px 24px rgba(0,0,0,.28);
  padding: 25px;
}

.owl-unbox .roi-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; align-items: start;}
.owl-unbox .roi .fee-info { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.owl-unbox .roi .fee-info h4 { margin-top: 1em; margin-bottom: .5em; }
.owl-unbox .roi .fee-info ul { padding-left: 20px; color: var(--ink-dim); margin: 0; }
.owl-unbox .roi .big { font-size: clamp(24px, 5vw, 40px); font-weight: 800; color: var(--primary); }
.owl-unbox .roi .roi-result { padding: 18px; }
.owl-unbox .roi .roi-result .cost { font-size: 14px; border-bottom: 1px dashed var(--border); padding-bottom: 12px; margin-bottom: 12px; }

.owl-unbox .trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.owl-unbox .trust-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.owl-unbox .trust-card .title { font-weight: 700; }
.owl-unbox .seal { width: 80px; height: 80px; border-radius: 50%; border: 2px dashed rgba(255,255,255,.15); display: grid; place-items: center; margin: 0 auto 10px auto; }

.owl-unbox .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.owl-unbox .quote { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 16px; display: grid; gap: 10px; }

/* Ensure generic grid areas inherit dark background */
.owl-unbox .grid,
.owl-unbox .grid-2,
.owl-unbox .grid-3,
.owl-unbox .grid-4,
.owl-unbox .stack,
.owl-unbox .stack-lg,
.owl-unbox .stack-xl {
  background: transparent !important;
}
.owl-unbox .who { display: flex; flex-direction: column; align-items: start; gap: 4px; margin-top: 8px; }
.owl-unbox .who .name { font-weight: 600; }
.owl-unbox .who .verified { font-size: 12px; color: var(--ink-muted); }

.owl-unbox details { background: var(--bg-elev); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.owl-unbox summary { cursor: pointer; font-weight: 700; }
.owl-unbox details > div { margin-top: 10px; }
.owl-unbox details + details { margin-top: 10px; }

.owl-unbox footer { background: #0a0e13; border-top: 1px solid var(--border); padding: 36px 0; color: var(--ink-dim); }
.owl-unbox .foot-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 18px; }
.owl-unbox .legal a { color: var(--ink-dim); }

.owl-unbox .modal { position: fixed; inset: 0; display: none; place-items: center; z-index: 1000; background: rgba(5,8,12,.72); backdrop-filter: blur(4px); padding: 20px; }
.owl-unbox .modal.show { display: grid; }
.owl-unbox .modal .box { width: min(820px, 96vw); background: var(--bg-elev); border: 1px solid var(--border); border-radius: 14px; padding: 18px; position: relative; max-height: 92vh; overflow: auto; }
.owl-unbox .modal .x { position: absolute; top: 10px; right: 10px; border: 0; background: transparent; color: var(--ink-dim); cursor: pointer; font-size: 20px; }
.owl-unbox .blurred { filter: blur(6px); user-select: none; }

.owl-unbox .mobile-bar {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,20,28,.9);
  border-top: 1px solid var(--border);
  display: none; /* shown via media query */
  padding: 10px 14px;
  width: 100vw;                 /* full-bleed width */
  box-sizing: border-box;
  padding-left: max(14px, env(safe-area-inset-left, 0px));
  padding-right: max(14px, env(safe-area-inset-right, 0px));
}

.owl-unbox .mobile-bar .container {
  width: 100%;
  max-width: none;              /* don't constrain inside var(--w) */
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;      /* center the row */
}

.owl-unbox .mobile-bar .row {
  display: flex;
  align-items: center;
  justify-content: center;      /* center text + price + button */
  gap: 12px;
  text-align: center;
  flex-wrap: nowrap;
  min-width: 0;                 /* allow ellipsis */
}

.owl-unbox .mobile-bar .mini {
  font-size: 13px;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50vw;              /* prevent pushing price/button off-screen */
}

.owl-unbox .mobile-bar .price {
  font-weight: 800;
  color: var(--primary);
  flex: 0 0 auto;
}

.owl-unbox .mobile-bar .btn.slim {
  flex: 0 0 auto;
}

/* Reserve space and show bar on mobile */
@media (max-width: 720px) {
  .owl-unbox { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .owl-unbox .mobile-bar { display: flex; padding-bottom: max(10px, env(safe-area-inset-bottom, 0px)); }
}

/* Extra-compact on very small screens */
@media (max-width: 480px) {
  .owl-unbox .mobile-bar .row { gap: 8px; }
  .owl-unbox .mobile-bar .mini { font-size: 12px; max-width: 45vw; }
  .owl-unbox .mobile-bar .btn.slim { padding: 8px 12px; font-size: 14px; }
}

/* Ensure the final CTA rectangle has internal padding if inline styles are removed */
/*.owl-unbox .card.soft-bg { padding: 24px; }*/

.owl-unbox .progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--brand-2), var(--primary)); width: 0%; z-index: 2000; }

@media (max-width: 1024px) {
  .owl-unbox .hero .wrap { grid-template-columns: 1fr; }
  .owl-unbox .demo { grid-template-columns: 1fr; }
  .owl-unbox .video-grid { grid-template-columns: repeat(2, 1fr); }
  .owl-unbox .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .owl-unbox .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .owl-unbox .trust-logos { grid-template-columns: repeat(4, 1fr); }
  .owl-unbox .quotes { grid-template-columns: repeat(2, 1fr); }
  .owl-unbox .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .owl-unbox .roi-grid { grid-template-columns: 1fr; }
  .owl-unbox .foot-grid { grid-template-columns: 1fr; }
  .owl-unbox .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .owl-unbox .nav .cta-inline { display: inline-flex; }
  .owl-unbox .mobile-bar { display: block; }
  .owl-unbox .video-grid { grid-template-columns: 1fr; }
  .owl-unbox .feature-grid { grid-template-columns: 1fr; }
  .owl-unbox .quotes { grid-template-columns: 1fr; }
  .owl-unbox .trust-logos { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .owl-unbox .announce .inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .owl-unbox .announce .timer { display: none; }
  .owl-unbox .nav { grid-template-columns: 1fr auto; }
  .owl-unbox .brand img.logo { max-width: 150px; }
  .owl-unbox .badge-inc { display: none !important; }
  .owl-unbox .hero { padding: 24px 0; }
  .owl-unbox .hero h1 { font-size: 26px; }
  /* Left-align hero content on mobile */
  .owl-unbox .hero .wrap { justify-items: start; }
  .owl-unbox .hero .kicker,
  .owl-unbox .hero h1,
  .owl-unbox .hero .hero-tagline,
  .owl-unbox .hero p.lead,
  .owl-unbox .hero .cta-row,
  .owl-unbox .hero .benefits,
  .owl-unbox .hero .what-you-get,
  .owl-unbox .hero .security-badges { text-align: left; justify-content: flex-start; }
  .owl-unbox .modal .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .owl-unbox .plan { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .owl-unbox .plan .split { flex-direction: column; text-align: center; }
  .owl-unbox .plan .btn { justify-content: center; width: 100%; max-width: 320px; margin: 0 auto; }
}

/* Mobile: make comparison table scroll horizontally like a normal wide table */
@media (max-width: 768px) {
  .owl-unbox .compare .wrap { overflow-x: auto; }
  .owl-unbox .cmp { min-width: 760px; }
  .owl-unbox .cmp th, .owl-unbox .cmp td { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .owl-unbox .btn, .owl-unbox .hero .right, .owl-unbox .shadow, .owl-unbox .shadow-soft { transition: none !important; }
}

/* Break out of boxed themes: make the embed full-bleed */
.owl-unbox {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: var(--bg); /* ensure dark canvas under all sections */
}

/* Common WP theme wrappers to neutralize max-width/padding around the shortcode block */
body .entry, body .entry-content, body .content-area, body .site-content,
body .container, body .container-fluid, body .site-main, body .ast-container,
body .elementor-container, body .wp-block-group__inner-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* If theme adds inner padding on the block that holds the shortcode */
.owl-unbox:where(.wp-block-group, .wp-block, .entry-content *) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Mobile-only: hide demo CTA and demo section */
@media (max-width: 720px) {
  .owl-unbox .hero .cta-row .btn.alt[href="#demo"] { display: none !important; }
  .owl-unbox section#demo { display: none !important; }
}