:root {
  --navy: #0B1220;
  --navy-2: #111827;
  --blue: #2563EB;
  --blue-2: #1D4ED8;
  --cyan: #06B6D4;
  --gold: #F59E0B;
  --white: #FFFFFF;
  --soft: #F8FAFC;
  --mist: #EFF6FF;
  --text: #1F2937;
  --muted: #64748B;
  --border: #E2E8F0;
  --green: #10B981;
  --red: #EF4444;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.nav-inner {
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--navy);
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .28);
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.nav-links a:hover { color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 50px;
  background:
    radial-gradient(circle at 18% 20%, rgba(6,182,212,.18), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(37,99,235,.20), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(37, 99, 235, .18);
  background: rgba(37, 99, 235, .06);
  color: var(--blue-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 18px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, .12);
}
h1 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: .98;
  letter-spacing: -.065em;
  color: var(--navy);
}
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}
.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #475569;
  margin: 24px 0 0;
  max-width: 700px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}
.point {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 800;
  color: #334155;
  font-size: 15px;
}
.tick {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, .11);
  color: var(--green);
  flex: 0 0 auto;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
}
.btn-dark {
  color: white;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .24);
}
.btn-light {
  color: var(--blue-2);
  background: white;
  border: 1px solid var(--border);
}
.price-note { color: var(--muted); font-size: 14px; font-weight: 700; }
.price-note strong { color: var(--navy); }
.hero-card {
  border-radius: 32px;
  padding: 28px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(6, 182, 212, .3);
  filter: blur(30px);
}
.card-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 850;
  color: #BDEBFF;
  font-size: 13px;
}
.hero-card h2 {
  font-size: 33px;
  line-height: 1.1;
  margin: 22px 0 16px;
  letter-spacing: -.04em;
  color: white;
}
.schedule-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
  margin: 20px 0;
}
.schedule-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.schedule-line:last-child { border-bottom: 0; }
.schedule-line span:first-child { color: #CBD5E1; }
.schedule-line span:last-child { font-weight: 900; text-align: right; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.stat strong { display: block; font-size: 20px; color: #fff; }
.stat span { font-size: 12px; color: #CBD5E1; }

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-white { background: white; }
.section-blue {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2B59 100%);
  color: white;
}
.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.055em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--navy);
}
.section-blue h2, .section-blue h3 { color: white; }
.section-intro {
  font-size: 19px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 34px;
}
.section-blue .section-intro { color: #D7E7FF; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 38px rgba(15, 23, 42, .06);
}
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; line-height: 1.22; }
.card p { margin: 0; color: #475569; }
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(37, 99, 235, .1);
  color: var(--blue);
  font-weight: 900;
}
.day-card {
  position: relative;
  overflow: hidden;
}
.day-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.list { padding-left: 0; list-style: none; margin: 18px 0 0; display: grid; gap: 10px; }
.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
  font-weight: 650;
}
.list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(16, 185, 129, .10);
  font-size: 13px;
  margin-top: 1px;
}
.dark-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  box-shadow: none;
}
.dark-card h3, .dark-card p { color: white; }
.dark-card .list li { color: #D7E7FF; }
.story {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(6, 182, 212, .08));
  border: 1px solid rgba(37, 99, 235, .16);
}
.story p { font-size: 18px; margin: 0 0 18px; color: #334155; }
.story p:last-child { margin-bottom: 0; }
.quote-line {
  font-weight: 950;
  color: var(--navy) !important;
  font-size: 24px !important;
  letter-spacing: -.03em;
}
.pricing {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}
.price-card {
  padding: 34px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.price {
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -.05em;
  color: var(--navy);
  margin: 12px 0;
}
.compare {
  display: grid;
  gap: 12px;
}
.compare-item {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
}
.compare-item strong { color: var(--navy); display: block; margin-bottom: 4px; }
.footer {
  padding: 32px 0;
  background: var(--navy);
  color: #CBD5E1;
  font-size: 14px;
}
.footer .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.checkout-wrap {
  min-height: calc(100vh - 74px);
  padding: 46px 0 70px;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, .14), transparent 28%),
    linear-gradient(180deg, #F8FAFC, #FFFFFF);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: start;
}
.form-box, .summary-box {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 28px;
}
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.country-select-control {
  position: relative;
}
.country-select-control:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.country-select-flag {
  width: 28px;
  height: 19px;
  object-fit: contain;
  justify-self: center;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.16);
}
.country-select-control select {
  width: 100%;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: 4px !important;
}
.country-native-select,
.country-select-control > .country-select-flag[hidden] { display: none !important; }
.country-dropdown-button {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 12px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.country-dropdown-button:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.country-dropdown-button img,
.country-dropdown-option img,
.summary-country-flag {
  width: 28px;
  height: 19px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.16);
  flex: 0 0 auto;
}
.country-dropdown-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg) translateY(-2px);
}
.country-dropdown-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 288px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.16);
}
.country-dropdown-menu[hidden] { display: none; }
.country-dropdown-option {
  width: 100%;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.country-dropdown-option:hover,
.country-dropdown-option:focus-visible { background: #eff6ff; outline: none; }
.country-dropdown-option small { color: #64748b; font-weight: 750; }
#summary-country { display: inline-flex; align-items: center; gap: 8px; }
label { font-weight: 850; color: var(--navy); font-size: 14px; }
input, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
}
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.10); }
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.summary-line:last-child { border-bottom: 0; }
.total-line { font-size: 22px; font-weight: 950; color: var(--navy); }
.notice {
  padding: 14px;
  border-radius: 16px;
  background: rgba(37,99,235,.08);
  color: #1E3A8A;
  font-weight: 750;
  margin: 18px 0;
}
.error { background: rgba(239,68,68,.09); color: #991B1B; }
.success-note { background: rgba(16,185,129,.10); color: #065F46; }
.small { font-size: 13px; color: var(--muted); }
.hidden { display: none !important; }

.upgrade-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(245,158,11,.20), transparent 25%),
    radial-gradient(circle at 84% 4%, rgba(6,182,212,.20), transparent 32%),
    linear-gradient(135deg, #07111F 0%, #0B2A58 100%);
  color: white;
  padding: 72px 0;
}
.upgrade-hero h1 { color: white; }
.upgrade-hero .lead { color: #D7E7FF; }
.upgrade-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 28px;
}
.skip-link { color: var(--muted); font-weight: 800; text-decoration: underline; }
.success-panel {
  max-width: 760px;
  margin: 50px auto;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--green);
  font-size: 34px;
}
.whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .25);
}

@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .pricing, .checkout-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero-points { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 46px; }
}

.top-alert {
  background: linear-gradient(90deg, #0B1220, #0B2A58);
  color: #fff;
  text-align: center;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 850;
}
.centered { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.centered .section-intro { margin-left: auto; margin-right: auto; }
.eyebrow { color: var(--blue); font-weight: 950; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.host-strip { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
.host-strip img, .story-photo { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(255,255,255,.36); }
.host-strip span { display: block; color: #CBD5E1; font-size: 12px; font-weight: 800; }
.host-strip strong { display: block; color: #fff; font-size: 18px; }
.story-photo { float: left; margin: 4px 18px 10px 0; border-color: rgba(37,99,235,.24); width: 86px; height: 86px; }
.countdown-card { background: white; border: 1px solid var(--border); border-radius: 22px; padding: 16px; box-shadow: 0 12px 34px rgba(15,23,42,.07); display: grid; gap: 10px; width: min(100%, 550px); }
.countdown-card span { font-weight: 900; color: var(--navy); }
.countdown-card.training-mode { border-color: rgba(239,68,68,.35); background: #fff7f7; }
.countdown-card.training-mode span { color: #b91c1c !important; text-transform: uppercase; letter-spacing: .04em; }
.countdown-card.training-mode > strong { color: var(--navy); font-size: 17px; line-height: 1.45; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.countdown div { background: var(--mist); border: 1px solid rgba(37,99,235,.12); border-radius: 16px; padding: 10px 8px; text-align: center; }
.countdown strong { display: block; color: var(--navy); font-size: 25px; line-height: 1; }
.countdown small { color: var(--muted); font-weight: 850; font-size: 11px; text-transform: uppercase; }
.hero-countdown { margin: 24px 0 0; }
.pricing-countdown { margin: 22px 0 4px; width: 100%; }
.proof-early { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-caption { text-align: center; color: var(--muted); font-weight: 700; max-width: 760px; margin: -8px auto 24px; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.video-card { text-align: left; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: #fff; box-shadow: 0 18px 50px rgba(15,23,42,.08); cursor: pointer; }
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--navy); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--blue); font-weight: 950; box-shadow: var(--shadow); }
.video-body { padding: 22px; }
.video-body h3 { color: var(--navy); margin: 0 0 8px; }
.video-body p { color: var(--muted); margin: 0; font-weight: 650; }
.testimonials-section { border-bottom: 1px solid var(--border); }
.testimonial-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 980px;
  margin: 32px auto 0;
}
.testimonial-media-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.testimonial-media-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020617;
}
.testimonial-image-card > img {
  display: block;
  width: 100%;
  height: auto;
}
.testimonial-media-body { padding: 22px; }
.testimonial-media-body h3 { margin: 0 0 8px; color: var(--navy); }
.testimonial-media-body p { margin: 0; color: var(--muted); font-weight: 650; }
@media (min-width: 701px) {
  .testimonial-video-card { grid-column: 1; grid-row: 1; }
  .testimonial-olatunji-card { grid-column: 1; grid-row: 2; }
  .testimonial-yikwab-card { grid-column: 2; grid-row: 1 / span 2; }
}
@media (max-width: 700px) {
  .testimonial-media-grid { grid-template-columns: 1fr; }
}
.deliverables-section { background: linear-gradient(180deg, #F8FAFC, #FFFFFF); }
.deliverable-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.deliverable { padding: 18px; }
.deliverable img { border-radius: 18px; border: 1px solid var(--border); margin-bottom: 16px; background: #fff; aspect-ratio: 5/3; object-fit: cover; }
.fit-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fit-card h3 { font-size: 26px; }
.yes-card { border-color: rgba(16,185,129,.24); background: linear-gradient(180deg, #fff, rgba(16,185,129,.05)); }
.no-card { border-color: rgba(239,68,68,.20); background: linear-gradient(180deg, #fff, rgba(239,68,68,.04)); }
.x-list { padding-left: 0; list-style: none; margin: 18px 0 0; display: grid; gap: 10px; }
.x-list li { display: flex; gap: 10px; align-items: flex-start; color: #475569; font-weight: 650; }
.x-list li::before { content: "×"; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: var(--red); background: rgba(239,68,68,.10); font-size: 17px; line-height: 1; }
.video-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(2,6,23,.82); z-index: 100; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal-inner { width: min(960px, 100%); background: #020617; border-radius: 22px; padding: 14px; position: relative; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.video-modal-close { position: absolute; right: -12px; top: -12px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: #fff; color: var(--navy); font-size: 24px; cursor: pointer; }
.video-frame { aspect-ratio: 16/9; width: 100%; border: 0; border-radius: 14px; overflow: hidden; }

@media (max-width: 1100px) { .deliverable-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .video-grid, .deliverable-grid { grid-template-columns: 1fr; } .countdown strong { font-size: 20px; } .top-alert { font-size: 12px; } }
.vimeo-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.vimeo-modal.hidden { display: none !important; }
.vimeo-backdrop { position: absolute; inset: 0; background: rgba(2, 6, 23, .84); }
.vimeo-shell { position: relative; z-index: 1; width: min(960px, 100%); background: #020617; color: white; border-radius: 24px; padding: 18px; box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.vimeo-shell h3 { color: white; margin: 0 48px 14px 0; }
.vimeo-close { position: absolute; right: 14px; top: 12px; width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; background: white; color: var(--navy); font-size: 24px; line-height: 1; }
.vimeo-frame { aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; }
.vimeo-frame iframe { width: 100%; height: 100%; display: block; }


/* Updated sales page refinements */
.attention-section {
  padding: 18px 0 8px;
  background: #FFFFFF;
}
.attention-card {
  border: 1px solid rgba(245, 158, 11, .32);
  background: linear-gradient(135deg, rgba(255, 251, 235, .96), rgba(239, 246, 255, .96));
  color: #0B1220;
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}
.attention-card strong { color: #B45309; }
.day-card { overflow: hidden; }
.day-mockup {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  margin: 16px 0 20px;
}
.deliverable-list {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 10px 26px;
}
.spark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spark-list li {
  position: relative;
  padding: 22px 0 22px 54px;
  border-bottom: 1px solid var(--border);
}
.spark-list li:last-child { border-bottom: 0; }
.spark-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 23px;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 22px rgba(37, 99, 235, .25);
  font-size: 17px;
}
.spark-list strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.spark-list span { color: #475569; }
.checkout-wrap { padding-top: 54px; }

/* Latest sales page and checkout updates */
.hero-main-image {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 26px 0 28px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, .28);
  border: 1px solid rgba(148, 163, 184, .24);
}
.hero-cta-row { margin-top: 30px; margin-bottom: 26px; }
.attention-under-button {
  margin-top: 22px;
  border: 2px solid rgba(245, 158, 11, .45);
  background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
  box-shadow: 0 18px 45px rgba(245, 158, 11, .18);
}
.bank-transfer-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(37, 99, 235, .22);
  background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
}
.transfer-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #1D4ED8;
  background: #DBEAFE;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.bank-transfer-box h3 { margin: 4px 0 8px; color: var(--navy); }
.bank-details {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}
.bank-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.bank-details span { color: var(--muted); font-size: 13px; font-weight: 700; }
.bank-details strong { color: var(--navy); text-align: right; }

.whatsapp-receipt {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: #ffffff !important;
  border: 1px solid #1fb855;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .28);
  font-size: 15px;
  text-decoration: none;
}
.whatsapp-receipt:hover {
  background: #1ebe5d;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .36);
}
.whatsapp-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-weight: 900;
}

@media (max-width: 720px) {
  .hero-main-image { border-radius: 18px; margin: 20px 0 22px; }
  .bank-details div { flex-direction: column; gap: 4px; }
  .bank-details strong { text-align: left; }
}

/* Hero cleanup, dark professional blend with main hero image */
.hero {
  padding: 72px 0 58px;
  background: #07111F;
  color: #FFFFFF;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.015);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; }
.hero .badge {
  background: rgba(255,255,255,.08);
  border-color: rgba(148,163,184,.22);
  color: #EAF2FF;
}
.hero h1 { color: #FFFFFF; }
.hero .gradient-text {
  color: #54A6FF;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}
.hero .lead { color: #D7E7FF; }
.hero .point { color: #EAF2FF; }
.hero .tick {
  background: rgba(16,185,129,.16);
  color: #34D399;
}
.hero-main-image {
  border: 1px solid rgba(96,165,250,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: #08111F;
}
.hero .countdown-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(148,163,184,.24);
  box-shadow: none;
}
.hero .countdown-card span { color: #FFFFFF; }
.hero .countdown div {
  background: rgba(255,255,255,.08);
  border-color: rgba(148,163,184,.18);
}
.hero .countdown strong { color: #FFFFFF; }
.hero .countdown small { color: #B9C7D9; }
.hero .btn-primary {
  background: #2563EB;
  box-shadow: 0 18px 40px rgba(37, 99, 235, .35);
}
.hero .attention-under-button {
  background: #FFFBEB;
  border-color: rgba(245, 158, 11, .65);
  color: #0B1220;
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
}
.hero-card {
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.hero-card::before { display: none; }
.card-tag {
  background: rgba(37,99,235,.18);
  border-color: rgba(96,165,250,.28);
  color: #D7E7FF;
}
.schedule-box {
  background: rgba(255,255,255,.065);
  border-color: rgba(148,163,184,.18);
}
.stat {
  background: rgba(255,255,255,.065);
  border-color: rgba(148,163,184,.18);
}
@media (max-width: 900px) {
  .hero { padding: 48px 0 42px; }
}

/* Plain hero background update */
.hero {
  background: #FFFFFF !important;
  color: var(--navy) !important;
  padding: 64px 0 56px;
}
.hero::before { display: none !important; }
.hero h1 { color: var(--navy) !important; }
.hero .gradient-text { color: var(--blue) !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
.hero .lead { color: #475569 !important; }
.hero .badge {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;
  color: #1D4ED8 !important;
}
.hero .point { color: #334155 !important; }
.hero .tick { background: rgba(16,185,129,.12) !important; color: var(--green) !important; }
.hero-main-image {
  border: 1px solid rgba(226,232,240,.95) !important;
  box-shadow: 0 24px 70px rgba(15,23,42,.18) !important;
  background: #FFFFFF !important;
}
.hero .countdown-card {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 12px 34px rgba(15,23,42,.07) !important;
}
.hero .countdown-card span { color: var(--navy) !important; }
.hero .countdown div { background: #FFFFFF !important; border-color: #E2E8F0 !important; }
.hero .countdown strong { color: var(--blue) !important; }
.hero .countdown small { color: #64748B !important; }
.hero .attention-under-button {
  margin-top: 16px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  background: #FFFBEB !important;
  border: 1px solid #FCD34D !important;
  color: #1F2937 !important;
  box-shadow: none !important;
}
.hero .attention-under-button strong { color: #B45309 !important; }
.hero-card {
  background: #F8FAFC !important;
  color: var(--navy) !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 20px 60px rgba(15,23,42,.10) !important;
}
.hero-card h2 { color: var(--navy) !important; }
.hero-card p { color: #475569 !important; }
.hero-card .host-strip,
.hero-card .schedule-box,
.hero-card .stat {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
}
.hero-card .host-strip span,
.hero-card .schedule-line span,
.hero-card .stat span { color: #64748B !important; }
.hero-card .host-strip strong,
.hero-card .schedule-line strong,
.hero-card .schedule-line span:last-child,
.hero-card .stat strong { color: var(--navy) !important; }
.card-tag {
  background: #DBEAFE !important;
  border-color: #BFDBFE !important;
  color: #1D4ED8 !important;
}

.copy-bank-row {
  align-items: center;
}
.copy-account-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37,99,235,.20);
}
.copy-account-btn:hover { background: #1D4ED8; }
.copy-account-btn.copied { background: #16A34A; }
@media (max-width: 720px) {
  .copy-bank-row { align-items: flex-start; }
  .copy-account-btn { width: fit-content; }
}

/* Hero refinement, cleaner blue-tint background and stronger first CTA */
.hero {
  background:
    radial-gradient(circle at 16% 8%, rgba(37, 99, 235, .10), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(6, 182, 212, .08), transparent 30%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 54%, #F8FAFC 100%) !important;
  padding-top: 34px !important;
}
.hero .badge {
  margin-bottom: 12px !important;
}
.hero .lead {
  margin-top: 18px !important;
  color: #334155 !important;
}
.underline-highlight {
  text-decoration-line: underline;
  text-decoration-color: rgba(37, 99, 235, .55);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  font-weight: 900;
  color: #0F172A;
}
.hero-cta-row {
  justify-content: center !important;
  margin-top: 28px !important;
  margin-bottom: 18px !important;
}
.hero-cta-row .btn-primary {
  font-size: 18px !important;
  font-weight: 950 !important;
  padding: 18px 34px !important;
  min-width: min(100%, 310px);
  border-radius: 16px !important;
  box-shadow: 0 18px 44px rgba(37, 99, 235, .34) !important;
}
.hero .attention-under-button {
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-card {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 58%, #06B6D4 140%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(147, 197, 253, .55) !important;
  box-shadow: 0 24px 70px rgba(37, 99, 235, .22) !important;
}
.hero-card h2,
.hero-card p,
.hero-card .host-strip strong,
.hero-card .schedule-line span:last-child,
.hero-card .stat strong {
  color: #FFFFFF !important;
}
.hero-card .host-strip span,
.hero-card .schedule-line span,
.hero-card .stat span {
  color: #DBEAFE !important;
}
.hero-card .host-strip,
.hero-card .schedule-box,
.hero-card .stat {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .22) !important;
}
.hero-card .card-tag,
.card-tag {
  background: rgba(255, 255, 255, .18) !important;
  border-color: rgba(255, 255, 255, .28) !important;
  color: #FFFFFF !important;
}
@media (max-width: 720px) {
  .hero { padding-top: 28px !important; }
  .hero-cta-row .btn-primary { width: 100%; }
}

/* Latest hero polish: very faint blue tint, navy masterclass card, tighter top date spacing */
.hero {
  background:
    radial-gradient(circle at 18% 4%, rgba(37, 99, 235, .045), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(6, 182, 212, .035), transparent 34%),
    linear-gradient(180deg, #FBFDFF 0%, #FFFFFF 56%, #F8FAFC 100%) !important;
  padding-top: 18px !important;
  padding-bottom: 63px !important;
}
.hero .badge {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
.hero-card {
  background: linear-gradient(135deg, #071326 0%, #0B1B33 50%, #102A4C 100%) !important;
  border: 1px solid rgba(96, 165, 250, .26) !important;
  box-shadow: 0 26px 72px rgba(15, 23, 42, .22) !important;
}
.hero-card h2,
.hero-card p,
.hero-card .host-strip strong,
.hero-card .schedule-line span:last-child,
.hero-card .stat strong {
  color: #FFFFFF !important;
}
.hero-card .host-strip span,
.hero-card .schedule-line span,
.hero-card .stat span {
  color: #BFDBFE !important;
}
.hero-card .host-strip,
.hero-card .schedule-box,
.hero-card .stat {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .16) !important;
}
.hero-card .card-tag,
.card-tag {
  background: rgba(37, 99, 235, .22) !important;
  border-color: rgba(147, 197, 253, .24) !important;
  color: #EAF2FF !important;
}
@media (max-width: 720px) {
  .hero {
    padding-top: 16px !important;
    padding-bottom: 54px !important;
  }
}


/* FAQ accordion */
.faq-accordion {
  max-width: 880px;
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  position: relative;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--navy);
  color: #ffffff;
}
.faq-item p {
  margin: 0;
  padding: 18px 22px 22px;
  color: #475569;
  font-size: 16px;
}

/* Expanded upgrade page */
.upgrade-vip-hero {
  background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 74%);
  color: var(--navy);
  padding: 54px 0 44px;
  border-bottom: 1px solid var(--border);
}
.upgrade-vip-wrap {
  max-width: 930px;
  text-align: center;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .14);
  color: #92400E;
  border: 1px solid rgba(245, 158, 11, .25);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.upgrade-vip-hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 0 auto 18px;
  color: var(--navy);
}
.upgrade-vip-hero .lead {
  max-width: 790px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 23px);
}
.upgrade-timer {
  width: fit-content;
  margin: 24px auto 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(37,99,235,.16);
  background: white;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
}
.upgrade-timer span {
  font-weight: 900;
  color: var(--muted);
  margin-right: 6px;
}
.upgrade-timer strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}
.upgrade-timer small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
}
.center-cta { justify-content: center; }
.btn-xl {
  padding: 18px 26px;
  font-size: 16px;
  border-radius: 999px;
}
.secure-note {
  color: var(--muted);
  font-weight: 800;
  margin: 14px 0 0;
}
.compact-section { padding: 58px 0; }
.narrow-copy {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.72;
}
.narrow-copy p { margin: 0 0 16px; }
.kicker {
  color: var(--blue);
  font-weight: 950;
  font-size: 20px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.vip-ticket {
  border-color: rgba(37,99,235,.24);
  box-shadow: 0 20px 50px rgba(37,99,235,.12);
}
.compare-label {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  color: #047857;
  font-weight: 950;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-label.locked {
  background: rgba(37,99,235,.12);
  color: #1D4ED8;
}
.compare-card h3 {
  color: var(--navy);
  margin-top: 0;
  font-size: 24px;
}
.check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li, .x-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 750;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16,185,129,.13);
  color: #059669;
  font-size: 13px;
  font-weight: 950;
}
.x-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37,99,235,.13);
  color: #2563EB;
  font-size: 15px;
  font-weight: 950;
}
.good-news {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--navy);
  font-weight: 950;
  font-size: 20px;
}
.bonus-list {
  display: grid;
  gap: 16px;
  max-width: 930px;
  margin: 0 auto;
}
.bonus-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
.bonus-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #0B1220;
  color: #fff;
  font-weight: 950;
}
.bonus-item h3 {
  color: var(--navy);
  margin: 0 0 8px;
  font-size: 23px;
}
.bonus-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.62;
  font-weight: 650;
}
.outcome-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
}
.avoid-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.strong-list li { font-size: 18px; }
.upgrade-pricing-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0B1220, #0B2A58);
  color: white;
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.upgrade-pricing-box h2 { color: white; }
.upgrade-pricing-box p { color: #D7E7FF; font-size: 18px; line-height: 1.6; }
.upgrade-price-panel {
  background: white;
  color: var(--navy);
  border-radius: 28px;
  padding: 26px;
  text-align: center;
}
.active-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  color: #047857;
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 12px;
}
.btn-full { width: 100%; justify-content: center; }
.block-skip {
  display: block;
  margin-top: 16px;
  font-size: 13px;
}
@media (max-width: 900px) {
  .comparison-grid, .outcome-grid, .upgrade-pricing-box { grid-template-columns: 1fr; }
  .bonus-item { grid-template-columns: 1fr; }
  .upgrade-vip-hero { padding-top: 40px; }
  .upgrade-timer { flex-wrap: wrap; justify-content: center; }
}

/* Professional upgrade page alignment and polish */
.upgrade-vip-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(37, 99, 235, .075), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(6, 182, 212, .06), transparent 32%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 78%) !important;
  padding: 48px 0 50px !important;
}
.upgrade-vip-wrap {
  max-width: 980px !important;
  margin: 0 auto;
  padding: 44px 42px 38px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .10);
  position: relative;
}
.upgrade-vip-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}
.step-pill {
  margin-bottom: 18px !important;
  box-shadow: 0 8px 22px rgba(245, 158, 11, .12);
}
.upgrade-vip-hero h1 {
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.upgrade-vip-hero .lead {
  max-width: 780px !important;
  color: #334155 !important;
  font-size: clamp(17px, 2vw, 21px) !important;
  line-height: 1.62;
}
.upgrade-timer {
  margin: 28px auto 22px !important;
  padding: 14px 16px !important;
  border-radius: 22px !important;
  background: #0B1220 !important;
  border: 1px solid rgba(96, 165, 250, .20) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18) !important;
  color: white;
}
.upgrade-timer span {
  color: #D7E7FF !important;
  padding-right: 8px;
}
.upgrade-timer strong {
  min-width: 46px;
  padding: 8px 10px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #FFFFFF !important;
}
.upgrade-timer small { color: #BFDBFE !important; }
.center-cta { justify-content: center !important; }
.btn-xl {
  width: min(100%, 620px);
  min-height: 64px;
  text-align: center;
  font-size: 17px !important;
  line-height: 1.25;
  box-shadow: 0 20px 44px rgba(37, 99, 235, .28) !important;
}
.secure-note {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #F8FAFC;
  border: 1px solid var(--border);
  font-size: 13px;
}
.secure-note::before { content: "✓"; color: var(--green); font-weight: 950; }
.narrow-copy {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}
.comparison-grid { gap: 28px !important; }
.compare-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px !important;
}
.compare-card h3 { line-height: 1.15; }
.regular-ticket {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.vip-ticket {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
  border: 2px solid rgba(37, 99, 235, .25) !important;
  box-shadow: 0 24px 60px rgba(37, 99, 235, .13) !important;
}
.vip-ticket::after {
  content: "Best upgrade";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0B1220;
  color: white;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.check-list li, .x-list li { line-height: 1.45; }
.good-news {
  background: #0B1220;
  color: white !important;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .13);
}
.bonus-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px !important;
  gap: 20px !important;
}
.bonus-item {
  height: 100%;
  align-items: start;
  border-radius: 28px !important;
  padding: 26px !important;
}
.bonus-number {
  background: linear-gradient(135deg, #0B1220, #0B2A58) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}
.outcome-grid {
  max-width: 1080px;
  margin: 0 auto;
}
.avoid-box {
  padding: 32px !important;
}
.strong-list li {
  padding-top: 2px;
  padding-bottom: 2px;
}
.upgrade-pricing-box {
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch !important;
  background:
    radial-gradient(circle at 90% 8%, rgba(6,182,212,.20), transparent 30%),
    linear-gradient(135deg, #071326 0%, #0B1220 46%, #0B2A58 100%) !important;
  border: 1px solid rgba(96, 165, 250, .18);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .18) !important;
}
.upgrade-pricing-box > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.upgrade-price-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.upgrade-price-panel .price {
  font-size: clamp(48px, 6vw, 68px);
  line-height: .95;
  margin: 10px 0 8px;
}
.upgrade-price-panel .btn-full {
  min-height: 58px;
  margin-top: 8px;
}
.block-skip {
  color: #64748B !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .upgrade-vip-wrap { padding: 34px 22px 30px; border-radius: 28px; }
  .upgrade-timer { width: 100% !important; }
  .bonus-list { grid-template-columns: 1fr; }
  .vip-ticket::after { position: static; width: fit-content; margin: -2px 0 14px; order: -1; }
  .narrow-copy { padding: 26px 22px; }
}
@media (max-width: 560px) {
  .upgrade-vip-hero { padding-top: 26px !important; }
  .upgrade-vip-hero h1 { font-size: 38px; }
  .upgrade-timer span { width: 100%; margin: 0 0 4px; }
  .btn-xl { border-radius: 18px; font-size: 15px !important; padding-left: 18px; padding-right: 18px; }
}

/* VIP upgrade page final copy and layout update */
.upgrade-top-alert {
  position: sticky;
  top: 0;
  z-index: 50;
  text-align: center;
  background: linear-gradient(90deg, #071326 0%, #0B2A58 55%, #071326 100%);
  color: #FFFFFF;
  padding: 13px 16px;
  font-weight: 950;
  letter-spacing: .02em;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .20);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.upgrade-vip-hero-new {
  padding-top: 44px !important;
}
.upgrade-vip-two-col {
  max-width: 1160px !important;
  text-align: left !important;
  display: grid;
  grid-template-columns: 1.02fr .88fr;
  gap: 34px;
  align-items: center;
}
.upgrade-vip-copy {
  min-width: 0;
}
.upgrade-pretitle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .14);
  border: 1px solid rgba(245, 158, 11, .26);
  color: #92400E;
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 18px;
}
.upgrade-vip-two-col h1 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 620px !important;
}
.upgrade-vip-two-col .lead {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 660px !important;
}
.upgrade-vip-two-col .lead-smaller {
  font-size: clamp(17px, 1.8vw, 20px) !important;
  margin-top: 10px !important;
  font-weight: 850;
  color: #0B2A58 !important;
}
.upgrade-vip-two-col .upgrade-timer {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.upgrade-vip-two-col .center-cta {
  justify-content: flex-start !important;
}
.upgrade-vip-two-col .secure-note {
  margin-left: 0 !important;
}
.upgrade-vip-visual {
  display: flex;
  justify-content: center;
}
.upgrade-vip-visual img {
  width: 100%;
  max-width: 430px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .20);
  border: 1px solid rgba(15, 23, 42, .10);
}
.vip-fomo-intro {
  color: #334155;
  font-weight: 800;
  line-height: 1.55;
  margin: -2px 0 18px;
}
.locked-access-card {
  background: linear-gradient(180deg, #0B1220 0%, #0B2A58 100%) !important;
  color: white;
  border-color: rgba(245, 158, 11, .35) !important;
  box-shadow: 0 26px 72px rgba(11, 18, 32, .20) !important;
}
.locked-access-card h3,
.locked-access-card .vip-fomo-intro,
.locked-access-card .x-list li {
  color: #FFFFFF !important;
}
.locked-access-card .compare-label.locked {
  background: rgba(245, 158, 11, .18);
  color: #FDE68A;
  border: 1px solid rgba(245, 158, 11, .30);
}
.locked-access-card .x-list li::before {
  content: '✗';
  background: rgba(248, 113, 113, .16);
  color: #FCA5A5;
}
.locked-access-card::after {
  content: "VIP only" !important;
  background: #F59E0B !important;
  color: #0B1220 !important;
}
.upgrade-vip-page .good-news {
  max-width: 780px;
}
.upgrade-vip-page .btn-xl span,
.upgrade-vip-page .btn-full span {
  display: inline-block;
  margin-left: 4px;
}
@media (max-width: 980px) {
  .upgrade-vip-two-col {
    grid-template-columns: 1fr;
    text-align: center !important;
  }
  .upgrade-vip-two-col h1,
  .upgrade-vip-two-col .lead,
  .upgrade-vip-two-col .lead-smaller {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .upgrade-vip-two-col .upgrade-timer {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .upgrade-vip-two-col .center-cta {
    justify-content: center !important;
  }
  .upgrade-vip-two-col .secure-note {
    margin-left: auto !important;
  }
  .upgrade-vip-visual img {
    max-width: 520px;
  }
}
@media (max-width: 560px) {
  .upgrade-top-alert {
    font-size: 13px;
    padding: 11px 12px;
  }
  .upgrade-pretitle {
    font-size: 11px;
    line-height: 1.35;
  }
  .upgrade-vip-visual img {
    border-radius: 20px;
  }
}

.upgrade-note-copy {
  text-align: center;
}
.upgrade-note-image {
  display: block;
  width: min(100%, 620px);
  margin: 0 auto 28px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .20);
  border: 1px solid rgba(15, 23, 42, .10);
}
.upgrade-note-copy .kicker {
  margin-bottom: 12px;
}
.upgrade-note-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


/* Restore VIP upgrade structure and AMM-style comparison clarity */
.upgrade-vip-page .upgrade-vip-hero-new,
.upgrade-vip-page .upgrade-vip-two-col,
.upgrade-vip-page .upgrade-vip-copy,
.upgrade-vip-page .upgrade-vip-visual {
  all: revert-layer;
}
.upgrade-vip-page .upgrade-vip-wrap {
  max-width: 1060px !important;
  text-align: center !important;
}
.upgrade-vip-page .upgrade-pretitle {
  margin-left: auto;
  margin-right: auto;
}
.upgrade-note-image {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto 32px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .20);
  border: 1px solid rgba(15, 23, 42, .10);
}
.not-getting-card {
  background: #FFFFFF !important;
  border: 2px solid rgba(37, 99, 235, .22) !important;
  box-shadow: 0 24px 60px rgba(37, 99, 235, .10) !important;
  color: var(--text) !important;
}
.not-getting-card::after {
  content: "VIP only" !important;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0B1220;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.not-getting-card h3 {
  color: var(--navy) !important;
}
.not-getting-card .compare-label.locked {
  background: rgba(37,99,235,.12) !important;
  color: #1D4ED8 !important;
  border: none !important;
}
.not-getting-card .x-list li {
  color: var(--text) !important;
  font-weight: 780;
}
.not-getting-card .x-list li::before {
  content: '✗' !important;
  background: rgba(239,68,68,.10) !important;
  color: #EF4444 !important;
}
@media (max-width: 900px) {
  .not-getting-card::after { position: static; width: fit-content; margin: -2px 0 14px; order: -1; }
  .upgrade-note-image { border-radius: 20px; }
}

/* Final VIP upgrade refinements requested */
.upgrade-top-alert {
  position: relative !important;
  top: auto !important;
  z-index: 1 !important;
}
.upgrade-vip-page .upgrade-vip-wrap {
  text-align: center;
}
.upgrade-hero-image {
  display: block;
  width: min(100%, 760px);
  margin: 26px auto 18px;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(2, 6, 23, .30);
  border: 1px solid rgba(255,255,255,.14);
}
.upgrade-hero-text {
  max-width: 850px;
  margin: 0 auto 22px !important;
  text-align: center;
  font-weight: 700;
}
.upgrade-vip-page .btn-primary,
.upgrade-vip-page .btn-full,
.upgrade-vip-page .btn-xl {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-align: center !important;
  line-height: 1.25 !important;
  white-space: normal !important;
}
.upgrade-vip-page .btn-primary span,
.upgrade-vip-page .btn-full span,
.upgrade-vip-page .btn-xl span {
  display: inline-block !important;
  line-height: 1.2 !important;
}
.upgrade-note-copy {
  text-align: left !important;
  max-width: 860px !important;
}
.upgrade-note-copy .kicker,
.upgrade-note-copy p {
  text-align: left !important;
}
.upgrade-note-image {
  display: none !important;
}
@media (max-width: 700px) {
  .upgrade-hero-image {
    margin: 20px auto 16px;
    border-radius: 18px;
  }
  .upgrade-vip-page .btn-primary,
  .upgrade-vip-page .btn-full,
  .upgrade-vip-page .btn-xl {
    flex-direction: column !important;
    gap: 3px !important;
  }
}


/* Final requested fixes: VIP upgrade, checkout transfer, red NOT section */
.not-getting-card::after {
  content: none !important;
  display: none !important;
}
.not-getting-card .compare-label.locked {
  width: fit-content;
}
.special-offer-note {
  margin: 4px 0 16px !important;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(245,158,11,.12);
  color: #92400E !important;
  font-weight: 900 !important;
  border: 1px solid rgba(245,158,11,.28);
}
.upgrade-vip-page .btn-primary,
.upgrade-vip-page .btn-full,
.upgrade-vip-page .btn-xl {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  text-align: center !important;
  line-height: 1.12 !important;
  min-height: 58px;
}
.upgrade-vip-page .btn-main-text {
  display: block !important;
  font-size: 14px;
  line-height: 1.1 !important;
}
.upgrade-vip-page .btn-primary [data-upgrade-price],
.upgrade-vip-page .btn-full [data-upgrade-price],
.upgrade-vip-page .btn-xl [data-upgrade-price] {
  display: block !important;
  font-size: 18px;
  line-height: 1.1 !important;
}
.no-card {
  border: 2px solid rgba(239, 68, 68, .72) !important;
  background: linear-gradient(180deg, #FFFFFF, rgba(254, 226, 226, .72)) !important;
  box-shadow: 0 18px 48px rgba(239, 68, 68, .10) !important;
}
.no-card h3 {
  color: #B91C1C !important;
}
.no-card .x-list li {
  color: #7F1D1D !important;
  font-weight: 760 !important;
}
.no-card .x-list li::before {
  content: "×" !important;
  color: #FFFFFF !important;
  background: #DC2626 !important;
  border: 1px solid #B91C1C !important;
  box-shadow: 0 6px 14px rgba(220, 38, 38, .20) !important;
}


/* VIP deliverable images inside Everything in VIP Access */
.bonus-item > div { min-width: 0; }
.bonus-visual {
  display: block;
  width: 100%;
  margin: 14px 0 16px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  background: #fff;
}
@media (max-width: 900px) {
  .bonus-visual {
    border-radius: 16px;
    margin: 12px 0 14px;
  }
}


/* VIP section header image */
.vip-section-header-image {
  display: block;
  width: min(65%, 350px);
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .10);
  border: 1px solid rgba(15, 23, 42, .08);
}
@media (max-width: 700px) {
  .vip-section-header-image {
    width: min(72%, 280px);
    margin-bottom: 18px;
    border-radius: 16px;
  }
}


/* Desktop layout refinement requested: centered hero, stacked class days and fit cards */
@media (min-width: 901px) {
  .hero-grid {
    display: block !important;
    max-width: 1120px;
    margin: 0 auto;
  }
  .hero-grid > div {
    width: 100%;
  }
  .hero h1 {
    max-width: 980px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .hero .badge {
    display: flex !important;
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-main-image,
  .hero .lead,
  .hero-points,
  .hero-countdown {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-main-image {
    display: block;
  }
  .hero .lead {
    text-align: center;
  }
  .hero-points {
    justify-content: center;
  }
  .hero-card-below-attention {
    max-width: 900px;
    margin: 34px auto 0 !important;
  }
  #days .days-stack {
    grid-template-columns: 1fr !important;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    gap: 28px;
  }
  #days .day-card {
    width: 100%;
  }
  .fit-section .fit-stack {
    grid-template-columns: 1fr !important;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
}


/* Class time emphasis by country */
.class-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 4px;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 16px;
  background: rgba(239, 246, 255, .72);
}
.class-time-grid > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .20);
}
.class-time-grid .flag {
  font-size: 20px;
  line-height: 1;
}
.class-time-grid span:not(.flag) {
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}
.class-time-grid strong {
  color: #0B2A58;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.hero-card .class-time-grid {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.hero-card .class-time-grid > div {
  background: rgba(255,255,255,.96);
}
@media (max-width: 900px) {
  .class-time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .class-time-grid { grid-template-columns: 1fr; }
  .class-time-grid > div { grid-template-columns: auto 1fr auto; }
}

/* Desktop flag rendering and checkout alignment refinements */
.class-time-grid .flag {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif !important;
  font-variant-emoji: emoji;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  min-width: 1.5em;
  font-size: 21px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
.checkout-wrap .summary-box .summary-line {
  align-items: center;
}
.checkout-wrap .summary-box .total-line {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.28);
}
.checkout-wrap .summary-box #summary-price {
  text-align: right;
  white-space: nowrap;
}
.checkout-wrap #payment-form > .btn-primary {
  justify-content: center;
  text-align: center;
}


/* Reliable local flag icons: use local SVG assets instead of regional-indicator emoji */
.class-time-grid .flag-image {
  width: 28px;
  height: 19px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.12);
  flex: 0 0 auto;
  display: inline-block;
}
@media (max-width: 640px) {
  .class-time-grid .flag-image { width: 26px; height: 17px; }
}

/* Final class-time flag/layout fix: raster flags + two-column aligned layout */
.class-time-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  max-width: 820px;
  margin: 16px auto 6px !important;
  padding: 14px !important;
}
.class-time-grid > div {
  display: grid !important;
  grid-template-columns: 34px minmax(120px, 1fr) auto !important;
  align-items: center !important;
  column-gap: 10px !important;
  min-height: 50px;
  padding: 10px 12px !important;
}
.class-time-grid .flag-image {
  width: 30px !important;
  height: 20px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 2px !important;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15,23,42,.14) !important;
  display: block !important;
}
.class-time-grid span:not(.flag) {
  text-align: left !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}
.class-time-grid strong {
  text-align: right !important;
  justify-self: end !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}
.hero-card .class-time-grid {
  max-width: 100%;
}
@media (max-width: 680px) {
  .class-time-grid {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }
  .class-time-grid > div {
    grid-template-columns: 34px minmax(0, 1fr) auto !important;
  }
}

/* Privacy-safe live purchase notification */
.purchase-toast {
  position: fixed;
  z-index: 1200;
  left: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 11px;
  width: min(370px, calc(100vw - 28px));
  padding: 13px 12px;
  color: #0f172a;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(15,23,42,.22);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
  pointer-events: none;
}
.purchase-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.purchase-toast-flag {
  width: 38px;
  height: 26px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.12);
}
.purchase-toast-close {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #64748b;
  background: #f1f5f9;
  font: 700 19px/1 sans-serif;
  cursor: pointer;
}
@media (max-width: 560px) {
  .purchase-toast { left: 14px; bottom: 14px; }
}

/* Visitor-local time uses its own two-line row so long timezone names never overlap. */
.class-time-grid > [data-local-class-time] {
  grid-column: 1 / -1;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  grid-template-rows: auto auto;
  column-gap: 9px !important;
  row-gap: 2px;
}
.class-time-grid [data-local-class-time] .local-time-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 30px !important;
  align-self: center;
  color: #2563eb;
  font-size: 22px !important;
  font-weight: 900;
  text-align: center;
}
.class-time-grid [data-local-class-time] span:not(.flag),
.class-time-grid [data-local-class-time] strong {
  grid-column: 2;
  width: auto !important;
  min-width: 0 !important;
  justify-self: start !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
}
.class-time-grid [data-local-class-time] span:not(.flag) { grid-row: 1; }
.class-time-grid [data-local-class-time] strong { grid-row: 2; }

/* Tight class-time alignment: keep time close to country and always show AM/PM */
.class-time-grid > div {
  grid-template-columns: 30px 132px max-content !important;
  justify-content: start !important;
  column-gap: 9px !important;
  overflow: visible !important;
}
.class-time-grid span:not(.flag) {
  width: 132px !important;
  min-width: 0 !important;
  white-space: normal !important;
}
.class-time-grid strong {
  justify-self: start !important;
  text-align: left !important;
  width: auto !important;
  min-width: 66px !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  padding-right: 2px;
}
@media (max-width: 680px) {
  .class-time-grid > div {
    grid-template-columns: 30px minmax(108px, 132px) max-content !important;
    justify-content: start !important;
  }
  .class-time-grid span:not(.flag) {
    width: auto !important;
  }
  .class-time-grid strong {
    min-width: 64px !important;
    font-size: 14px !important;
  }
}
