:root {
  --primary-text-color: #7c55c5;
  --primary-bg-secondary-light-color: #f1ecfa;

  --ink: #211c2c;
  --ink-soft: rgba(33, 28, 44, 0.66);
  --ink-faint: rgba(33, 28, 44, 0.46);
  --border: #e8e2f2;
  --border-strong: #d9cdef;
  --paper: #fff5f1;
  --surface: #ffffff;
  --surface-tint: #faf7fd;

  --shadow-sm: 0 1px 3px rgba(33, 20, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(33, 20, 61, 0.08);
  --shadow-lg: 0 20px 48px rgba(33, 20, 61, 0.12);

  --container: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
}

.rail-section img,.hero-banner img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--primary-bg-color);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--primary-bg-color);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 8px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ff723a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 114, 58, 0.28);
}

.btn-primary:hover,.btn-primary:active,.btn-primary:focus {
  box-shadow: 0 10px 22px rgba(255, 114, 58, 0.36);
  background: #e6652e;
  border-color: transparent
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--primary-bg-color);
  color: var(--primary-bg-color);
}

.btn-outline.on-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.rail-section {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 7vw, 96px) 0;
}

.rail-section:first-of-type {
  border-top: none;
}

.rail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.rail-label {}

.rail-label-inner {}

.rail-label h2 {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.rail-label p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.rail-content {
  min-width: 0;
}

@media (min-width: 980px) {
  .rail-grid {
    grid-template-columns: 300px 1fr;
    gap: 64px;
  }

  .rail-label-inner {
    position: sticky;
    top: 32px;
  }
}

/* ==========================================================================
   1. HERO — centered editorial hero, then a full-width image band with
      overlay chips (not floating badges), then a single-line trust row.
   ========================================================================== */
.hero {
  background: rgb(124, 85, 197);
  padding: 26px;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-grid .hero-copy {
  max-width: none;
  margin: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .hero-grid .hero-copy {
    text-align: left;
  }

  .hero-grid .hero-actions {
    margin: 0;
    max-width: none;
    justify-content: flex-start;
  }

  .hero-grid .trust-row {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
  }

  .hero-grid .trust-row-names {
    justify-content: flex-start;
  }

  .hero-grid .trust-row-names span:first-child {
    padding-left: 0;
  }
}

.hero-copy h1 {
  font-weight: 800;
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.hero-copy h1 span {
  color: var(--third-text-color);
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.hero-facts-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-facts-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts-table tr:last-child {
  border-bottom: none;
}

.hero-facts-table th,
.hero-facts-table td {
  padding: 12px 18px;
  font-size: 13.5px;
  text-align: left;
}

.hero-facts-table th {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  width: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts-table td {
  font-weight: 700;
  color: #fff;
}

.hero-banner {
  margin-top: 48px;
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary-bg-secondary-light-color);
  border: 1px solid var(--border);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-chips {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-text-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.trust-row {
  margin-top: 0;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.trust-row-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-row-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.trust-row-names span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 20px;
  border-left: 1px solid var(--border);
}

.trust-row-names span:first-child {
  border-left: none;
}

@media (min-width: 700px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 980px) {
  .hero-banner {
    height: 340px;
  }
}

/* ==========================================================================
   2. PROGRAMS & PRICING (rail section)
   ========================================================================== */
.programs-rail .rail-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.steps-row .step-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-tint);
}

.steps-row .step-item:last-child {
  border-bottom: none;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-bg-color);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 2px;
}

.step-item p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* Flagship as a horizontal info band, not a boxed card */
.flagship-band {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.flagship-band-top {
  background: var(--primary-bg-color);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.flagship-band-top .tag {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: 50px;
}

.flagship-band-top h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 0;
  width: 100%;
  color: white
}

.flagship-band-top .dates {
  font-size: 12.5px;
  opacity: 0.85;
}

.flagship-band-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.flagship-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.flagship-price-line .big {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-text-color);
}

.flagship-price-line .note {
  font-size: 12.5px;
}

.flagship-price-line .strike {
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 4px;
}

.flagship-price-line .alt {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 600;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.payment-option {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option.featured {
  border: 2px solid var(--primary-bg-color);
  background: var(--primary-bg-secondary-light-color);
  position: relative;
}

.payment-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-option-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
  padding: 4px 12px;
  border-radius: 50px;
}

.payment-option.featured .payment-option-tag {
  background: rgba(255, 255, 255, 0.7);
}

.value-pill,
.trial-pill {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
}

.value-pill {
  background: var(--primary-bg-color);
}

.trial-pill {
  background: #ff723a;
}

.payment-option-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-option-price .big {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.payment-option-price .unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.payment-option-price .note {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.payment-option-price .note .strike {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 2px;
}

.payment-option-price .note strong {
  color: var(--primary-text-color);
}

.payment-option-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 700px) {
  .payment-options {
    flex-direction: row;
    align-items: stretch;
  }
}

.subject-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subject-col-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.subject-col p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.subject-col p strong {
  color: var(--ink);
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 13px;
}

.mock-table th,
.mock-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.mock-table thead th {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
}

.mock-table tbody td {
  color: var(--ink-soft);
}

.mock-table tbody td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.mock-table tbody tr:last-child td {
  border-bottom: none;
}

.mock-table tr.final-row td {
  font-weight: 700;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
  border-bottom: none;
}

@media (max-width: 560px) {
  .mock-table {
    font-size: 12px;
  }

  .mock-table th,
  .mock-table td {
    padding: 9px 8px;
  }
}

.mock-strip-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.mock-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mock-strip .mrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.mock-strip .mrow.final {
  color: var(--primary-text-color);
  font-weight: 700;
}

.mock-strip .mrow span.d {
  font-size: 12px;
  text-align: right;
}

.flagship-band-body .btn {
  align-self: flex-start;
}

@media (min-width: 700px) {
  .subject-cols {
    flex-direction: row;
  }

  .subject-col {
    flex: 1;
  }
}

/* Tiers as full-width comparison rows instead of a card grid */
.tiers-block .block-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.tiers-block h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}

.tiers-block>p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.tier-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-row {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-row.featured {
  border: 2px solid var(--primary-bg-color);
  background: var(--primary-bg-secondary-light-color);
}

.tier-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tier-row-name {
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-row-name .pill {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--primary-bg-color);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.tier-row-price-note {
  font-size: 12px;
  font-weight: 600;
}

.tier-row-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--ink-soft);
}

.tier-row-features li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.tier-row-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-bg-color);
  font-weight: 800;
  font-size: 11px;
  top: 1px;
}

.tier-row-cta {
  align-self: flex-start;
}

@media (min-width: 860px) {
  .tier-row {
    flex-direction: row;
    align-items: center;
  }

  .tier-row-head {
    flex: 0 0 190px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .tier-row-features {
    flex: 1;
  }

  .tier-row-cta {
    flex: 0 0 auto;
  }
}

.availability-note {
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.availability-note .icon {
  margin-right: 6px;
  color: var(--primary-text-color);
}

.availability-note a {
  color: var(--primary-text-color);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   3. HOW IT WORKS — horizontal stepper (connected line across the top on
      desktop) instead of a vertical stacked list.
   ========================================================================== */
.stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stepper-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.stepper-node {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 32px;
  position: relative;
}

.stepper-node:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 8px;
  width: 2px;
  background: var(--border-strong);
}

.stepper-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: rgb(124, 85, 197);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.stepper-node-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stepper-node h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.stepper-node-body {
  padding-left: 54px;
}

.stepper-node-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.showcase-band {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  min-height: 220px;
}

.image-panel {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  flex: 1;
}

.panel-left {
  background-image: url('../../assets/cenable_care/selective-entry-masterclass/how-it-works-section1.webp');
  background-color: var(--primary-bg-secondary-light-color);
}

.panel-right {
  background-image: url('../../assets/cenable_care/selective-entry-masterclass/how-it-works-section2.webp');
  background-color: var(--primary-bg-secondary-light-color);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  flex: 1.2;
}

.metric-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.avatar-stack {
  display: flex;
}

.avatar-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  background-size: cover;
  background-color: var(--border-strong);
}

.avatar-mini.counter-total {
  background: var(--primary-bg-color);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-info h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

.badge-info span {
  font-size: 10px;
}

@media (min-width: 760px) {
  .stepper-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stepper-node:not(:last-child)::after {
    left: auto;
    right: -12px;
    top: 19px;
    bottom: auto;
    width: 24px;
    height: 2px;
  }

  .stepper-node-body {
    padding-left: 0;
    margin-top: 4px;
  }

  .stepper-node-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==========================================================================
   4. MEET YOUR TUTORS — split full-bleed profile layout, alternating.
   ========================================================================== */
.faculty-split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.faculty-profile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faculty-photo-wrap {
  position: relative;
  min-height: 220px;
  background: var(--primary-bg-secondary-light-color);
}

.faculty-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.faculty-info {
  padding: 24px;
}

.faculty-role-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-text-color);
  background: var(--primary-bg-secondary-light-color);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.faculty-info h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 4px;
}

.faculty-credentials {
  font-size: 12.5px;
  margin-bottom: 14px;
}

.faculty-bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 16px;
}

.faculty-availability {
  margin: 0 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  background: var(--surface-tint);
}

.faculty-availability-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-text-color);
  margin-bottom: 8px;
}

.faculty-availability-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faculty-availability-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

.faculty-availability-list li span:first-child {
  font-weight: 700;
  color: var(--ink);
}

.faculty-link {
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-text-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.faculty-link:hover {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .faculty-profile {
    flex-direction: row;
  }

  .faculty-photo-wrap {
    width: 38%;
    flex-shrink: 0;
  }

  .faculty-profile:nth-child(even) {
    flex-direction: row-reverse;
  }

  /* .faculty-info {
    flex: 1;
    padding: 32px;
    justify-content: center;
  } */
}

/* Popup Styles */
:root {
  --fourth-text-color: black;
}

.modal {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;
  /* background-color: #f0f0f0; */
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Modal Backdrop */
.modal-backdrop.show {
  opacity: 0.6;
}

/* Modal Dialog */
.modal.fade .modal-dialog {
  transition:
    transform 0.4s ease-out,
    opacity 0.4s ease-out;
}

.modal.show .modal-dialog {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content {
  border-radius: 30px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124, 85, 197, 0.3);
}

#smsPopup .modal-content {
  padding: 0;
}

/* Close Button */
.btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-text-color);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-close-custom:hover {
  background: var(--primary-bg-color);
  color: white;
  transform: rotate(90deg);
}

/* Header Section */
.popup-header {
  background: linear-gradient(135deg, var(--primary-bg-color) 0%, #9575d8 100%);
  padding: 50px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.popup-header::before {
  content: '📱';
  position: absolute;
  font-size: 120px;
  top: -20px;
  right: -20px;
  opacity: 0.1;
  transform: rotate(15deg);
}

.urgency-badge {
  display: inline-block;
  background: #ff723a;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 114, 58, 0.4);
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.popup-header h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.popup-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Body Section */
.modal-body {
  padding: 50px 40px;
  background: var(--secondary-bg-color);
  text-align: center;
}

/* Phone Number Display */
.phone-number-box {
  background: white;
  border: 3px dashed var(--primary-bg-color);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.phone-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.phone-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--fourth-text-color);
  letter-spacing: 2px;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.phone-number a {
  color: var(--fourth-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number a:hover {
  color: var(--primary-bg-color);
}

/* SMS Button */
.sms-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff723a;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 114, 58, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.sms-btn:hover {
  background: #e6652e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 114, 58, 0.4);
}

.sms-btn i {
  font-size: 22px;
}

/* Urgency Text */
.urgency-text {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px dashed rgba(124, 85, 197, 0.2);
  color: var(--primary-text-color);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.urgency-text::before {
  content: '⚡';
  font-size: 20px;
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .modal-content {
    border-radius: 20px;
  }

  .popup-header {
    padding: 40px 25px 30px;
  }

  .popup-header h2 {
    font-size: 1.6rem;
  }

  .modal-body {
    padding: 40px 25px;
  }

  .phone-number {
    font-size: 2rem;
  }

  .sms-btn {
    width: 100%;
    justify-content: center;
  }
}

.slider-image-wrap button {
  padding-left: 0%;
  padding-right: 0%;
  border: none;
}