/* הרושמת — public landing (static clone, no Wix runtime) */
:root {
  --blue: #1785fb;
  --blue-deep: #1e6fe0;
  --blue-hero: #1e94f9;
  --blue-hero-end: rgba(47, 183, 253, 0.72);
  --blue-soft: #f1f7fe;
  --blue-card: #e7f2fd;
  --blue-ink: #111936;
  --navy: #021733;
  --text: #1a1a1a;
  --muted: #5d5d61;
  --line: #d5dfff;
  --card-bg: #f2f2f2;
  --white: #ffffff;
  --gold: #f9ad4d;
  --popular: #1e6fe0;
  --danger: #df3131;
  --ok: #0acb8b;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(17, 109, 255, 0.12);
  --shadow-sm: 0 4px 18px rgba(2, 23, 51, 0.08);
  --header-h: 72px;
  --font: "Rubik", "Noto Sans Hebrew", "Arial Hebrew", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  direction: rtl;
  overflow-x: clip;
  max-width: 100%;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
  max-width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 133, 251, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 22px; color: var(--blue-ink); }
.brand-tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-ink);
  padding: 6px 0;
  position: relative;
}
.nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-header {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-header:hover { background: #0f6fe6; color: #fff; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10001;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--blue-hero) 0%, #4ec3fd 62%, var(--blue-soft) 100%);
  color: #fff;
  overflow: hidden;
  padding: 36px 0 0;
}

.hero-copy { text-align: center; max-width: 820px; margin: 0 auto 8px; }
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.hero h1 span { display: block; }
.hero-lead {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.btn-solid {
  background: #fff;
  color: var(--blue);
  padding: 11px 28px;
  min-width: 210px;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 40, 90, 0.12);
}
.btn-solid:hover { background: #f4f9ff; color: #0d6ee8; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
  padding: 11px 28px;
  min-width: 210px;
  font-size: 18px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.hero-note {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
  margin: 14px 0 8px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  pointer-events: none;
  min-width: 0;
  max-width: 100%;
}
.hero-visual img {
  width: min(980px, 100%);
  max-width: 100%;
  min-width: 0;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(10, 60, 130, 0.25));
}

/* ---------- Problem ---------- */
.problem {
  padding: 72px 0 40px;
  background: #fff;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--blue-ink);
  line-height: 1.3;
}
.problem ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem li {
  position: relative;
  padding: 8px 22px 8px 0;
  font-size: 18px;
  color: var(--muted);
}
.problem li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.born-for {
  margin-top: 22px;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-ink);
}
.problem-grid > * { min-width: 0; max-width: 100%; }
.problem-art img { margin-inline: auto; max-width: min(420px, 100%); }

/* ---------- How ---------- */
.how {
  background: var(--blue-soft);
  padding: 72px 0;
}
.how h2, .features h2, .audience h2, .reviews h2, .security h2, .plans h2, .lead h2, .faq h2 {
  text-align: center;
  margin: 0 0 36px;
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--blue-ink);
  line-height: 1.3;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step { text-align: center; padding: 8px 12px; min-width: 0; max-width: 100%; }
.step img { margin: 0 auto 16px; height: 170px; width: auto; max-width: 100%; object-fit: contain; }
.step h3 { margin: 0 0 8px; font-size: 22px; color: var(--blue-ink); }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Features ---------- */
.features { padding: 72px 0 48px; background: #fff; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid #c7c7c7;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
}
.feature-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  background: #e9eef5;
}
.feature-card h3 {
  margin: 14px 16px 6px;
  font-size: 18px;
  color: var(--blue-ink);
}
.feature-card p {
  margin: 0 16px 18px;
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.mid-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 8px;
}
.mid-ctas .btn-solid { box-shadow: none; }
.btn-solid-blue {
  background: var(--blue);
  color: #fff;
  padding: 11px 28px;
  min-width: 210px;
  font-size: 18px;
}
.btn-solid-blue:hover { background: #0f6fe6; color: #fff; }
.btn-outline-blue {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
  padding: 11px 28px;
  min-width: 210px;
  font-size: 18px;
}
.btn-outline-blue:hover { background: var(--blue-soft); color: var(--blue); }

/* ---------- Audience ---------- */
.audience {
  background: var(--blue-soft);
  padding: 72px 0;
}
.audience-kicker {
  text-align: center;
  color: var(--muted);
  margin: -18px 0 28px;
  font-size: 16px;
}
.audience-kicker strong { color: var(--blue-ink); }

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.pill {
  border: 1px solid #c5d6ea;
  background: #fff;
  color: var(--blue-ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.pill:hover { border-color: var(--blue); color: var(--blue); }
.pill.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.audience-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.audience-body > * { min-width: 0; max-width: 100%; }
.audience-copy p {
  font-size: 18px;
  color: #324158;
  margin: 0 0 12px;
  line-height: 1.7;
}
.audience-art img {
  margin-inline: auto;
  max-width: min(340px, 100%);
  border-radius: 24px;
}

/* ---------- Reviews ---------- */
.reviews { padding: 72px 0; background: #fff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  padding: 28px 22px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
}
.review blockquote {
  margin: 0 0 22px;
  font-size: 15px;
  color: #324158;
  line-height: 1.7;
  flex: 1;
}
.review-who {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.review-who img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}
.review-who strong { font-size: 16px; color: var(--blue-ink); }
.review-who span { font-size: 13px; color: var(--muted); }
.stars { width: 128px; height: 26px; margin-top: 8px; }

/* ---------- Security ---------- */
.security {
  background: var(--blue-soft);
  padding: 72px 0;
}
.security-lead {
  text-align: center;
  max-width: 640px;
  margin: -16px auto 36px;
  color: var(--muted);
  font-size: 16px;
}
.sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sec-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  max-width: 100%;
}
.sec-card svg { width: 72px; height: 72px; margin: 0 auto 12px; }
.sec-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--blue-ink); }
.sec-card p { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- Plans ---------- */
.plans { padding: 72px 0 48px; background: #fff; }
.plans-lead {
  text-align: center;
  max-width: 560px;
  margin: -18px auto 12px;
  color: var(--muted);
}
.plans-perks {
  text-align: center;
  font-size: 14px;
  color: var(--blue-ink);
  font-weight: 500;
  margin-bottom: 32px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid #d9e3f0;
  border-radius: 20px;
  padding: 28px 22px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  max-width: 100%;
}
.plan.popular {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan h3 {
  margin: 4px 0 6px;
  font-size: 28px;
  text-align: center;
  color: var(--blue-ink);
}
.plan-tag {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  min-height: 48px;
  margin: 0 0 12px;
}
.price {
  text-align: center;
  margin-bottom: 6px;
}
.price .num { font-size: 40px; font-weight: 700; color: var(--blue-ink); }
.price .unit { font-size: 14px; color: var(--muted); }
.hot-price {
  text-align: center;
  font-size: 14px;
  color: var(--blue-deep);
  font-weight: 600;
  margin: 0 0 4px;
}
.hot-help {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
}
.plan .btn {
  width: 100%;
  padding: 10px 16px;
  margin: 8px 0 16px;
  font-size: 16px;
  border-radius: 10px;
}
.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #324158;
}
.plan li { padding: 6px 0; }
.plan-more {
  display: block;
  text-align: center;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 600;
}
.plan-more:hover { text-decoration: underline; }

.plans-detail-link {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
}
.plans-detail-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.plans-detail-link a:hover {
  color: var(--blue-deep);
  text-decoration: underline;
}

/* ---------- Lead form ---------- */
.lead {
  background: linear-gradient(180deg, #eaf4ff 0%, #fff 100%);
  padding: 72px 0;
}
.lead-box {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #dbe7f5;
}
.lead-kicker {
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.lead h2 { margin-bottom: 8px; }
.lead-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { margin-bottom: 12px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-ink);
}
.field input {
  width: 100%;
  border: 1px solid #c9d4e3;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fbfcfe;
  color: var(--text);
  outline: none;
}
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 133, 251, 0.15);
  background: #fff;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  font-size: 18px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  border: 0;
}
.form-submit:hover { background: #0f6fe6; color: #fff; }
.form-msg {
  display: none;
  margin-top: 14px;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}
.form-msg.show { display: block; }
.form-msg.success { background: #e9fbf4; color: #086b4a; }
.form-msg.error { background: #fef2f2; color: #b91c1c; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* ---------- Close Video (YouTube Short) ---------- */
.close-video {
  padding: 56px 0;
  background: #fff;
}
.close-video .wrap {
  display: block;
  width: min(1120px, calc(100% - 32px));
}
.yt-short {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 45px 0 0;
  direction: ltr;
}
.yt-short iframe {
  width: 285px;
  height: 470px;
  flex: 0 0 285px;
  border: 0;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .yt-short iframe {
    max-width: 285px;
    width: 100%;
    height: auto;
    aspect-ratio: 285 / 470;
    flex: 0 0 auto;
  }
}

/* ---------- FAQ ---------- */
.faq { padding: 56px 0 80px; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e0e7f0;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: right;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item button svg {
  flex: 0 0 20px;
  transition: transform 0.2s ease;
  color: var(--blue);
}
.faq-item.open button svg { transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-body { display: block; }
.faq-body p { margin: 0 0 8px; }
.faq-body ol { margin: 8px 0; padding-right: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #e8eef7;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.site-footer h3 { margin: 0 0 12px; font-size: 18px; color: #fff; }
.site-footer p, .site-footer a { font-size: 14px; color: #c9d4e4; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}
.socials img { width: 22px; height: 22px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #9aabc0;
}
.footer-bottom a { color: #c9d4e4; margin-inline-start: 12px; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .brand-tag { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid #e6eaf0;
    box-shadow: var(--shadow-sm);
    align-items: stretch;
  }
  .nav.open,
  html.nav-open .nav,
  html.nav-open #site-nav { display: flex; }
  .nav a { padding: 10px 0; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .problem-grid,
  .audience-body,
  .footer-grid { grid-template-columns: 1fr; }
  .steps,
  .feature-grid,
  .review-grid,
  .plan-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .plan.popular { transform: none; }
  .hero { padding-top: 24px; }
  .problem { padding-top: 48px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .mid-ctas .btn { width: 100%; min-width: 0; }
  .btn-solid, .btn-solid-blue, .btn-outline-blue, .btn-ghost { min-width: 0; }
  .btn-header { min-width: 0; white-space: nowrap; }
  .footer-bottom { flex-direction: column; }
}

@media (min-width: 700px) and (max-width: 960px) {
  .feature-grid, .review-grid, .plan-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* ---------- API Page ---------- */
.api-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.api-docs {
  flex: 1;
  display: flex;
  min-height: 0;
  background: #fafafa;
  direction: ltr;
}
.api-docs iframe {
  flex: 1;
  width: 100%;
  border: 0;
  min-height: calc(100vh - var(--header-h) - 80px);
}

/* ---------- Checkout Modal ---------- */
.checkout-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.checkout-backdrop.is-open { display: flex; }
.checkout-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 720px;
  max-height: min(800px, calc(100vh - 32px));
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e8ecf0;
  flex-shrink: 0;
}
.checkout-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-ink);
}
.checkout-modal-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.checkout-modal-close:hover { background: var(--blue-soft); color: var(--blue-ink); }
.checkout-modal-close svg { width: 20px; height: 20px; }
.checkout-modal-body { flex: 1; min-height: 0; }
.checkout-modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 500px;
}
.checkout-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid #e8ecf0;
  text-align: center;
  flex-shrink: 0;
}
.checkout-modal-fallback {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.checkout-modal-fallback:hover { color: var(--blue); text-decoration: underline; }
body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .checkout-backdrop { padding: 0; }
  .checkout-modal {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }
  .checkout-modal-body iframe { min-height: calc(100vh - 120px); }
}
