/* ═══════════════════════════════════════════════════════════════════
   CLEANSE LITE — CUSTOM STYLESHEET (UPDATED)
   ═══════════════════════════════════════════════════════════════════ */

/* ── NAVBAR & BRANDING ── */
.lite-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  min-height: 72px;
  background: var(--deep-purple);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.lite-brand-text {
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lite-logo-name {
  display: inline;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.lite-dot-ng {
  color: var(--neon-green);
}

.lite-tag-text {
  font-style: italic;
  font-weight: 400;
  color: var(--lavender);
}

.lite-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(124, 252, 0, 0.12);
  color: var(--neon-green);
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(124, 252, 0, 0.3);
  box-shadow: 0 0 10px rgba(124, 252, 0, 0.15);
}

.lite-badge-dot {
  width: 5px;
  height: 5px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.lite-nav-book-btn {
  background: var(--neon-green);
  color: var(--deep-purple);
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
}

.lite-nav-book-btn:hover {
  transform: translateY(-1px);
  background: #8bff1a;
  box-shadow: none;
}

/* ── FITTED HERO SECTION ── */
.lite-hero-section {
  position: relative;
  padding: 56px 24px 64px;
  background: radial-gradient(circle at 50% 0%, rgba(58, 29, 109, 0.08) 0%, rgba(250, 249, 252, 0) 70%), var(--off-white);
  overflow: hidden;
}

.lite-hero-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.lite-hero-image-col {
  position: relative;
  width: 100%;
}

.lite-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(26, 13, 51, 0.14);
  border: 1px solid var(--border);
}

.lite-hero-content-col {
  text-align: left;
}

.lite-hero-headline {
  font-family: var(--font-header);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.14;
  color: var(--deep-purple);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lite-hero-headline em {
  font-style: normal;
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--primary-purple) 0%, #6B3BA7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lite-hero-sub {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: var(--mid-gray);
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ── PRICING CARDS ── */
.lite-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
  gap: 20px;
  margin-bottom: 16px;
}

.lite-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px;
  text-align: left;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(26, 13, 51, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lite-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(58, 29, 109, 0.1);
  border-color: rgba(58, 29, 109, 0.25);
}

.lite-price-card.featured {
  background: linear-gradient(145deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
  color: var(--white);
  border: 1px solid rgba(124, 252, 0, 0.3);
  box-shadow: 0 12px 40px rgba(26, 13, 51, 0.25);
}

.lite-card-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--neon-green);
  color: var(--deep-purple);
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: none;
}

.lite-card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.lite-price-card.featured .lite-card-title { color: var(--lavender); }

.lite-card-price {
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.lite-card-price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
}

.lite-card-desc {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--mid-gray);
  font-style: italic;
}

.lite-price-card.featured .lite-card-desc { color: var(--lavender); }

.lite-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--neon-green);
  color: var(--deep-purple);
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: none;
  width: 100%;
}

.lite-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: #8bff1a;
  color: var(--deep-purple);
}

.lite-btn-primary.purple {
  background: var(--primary-purple);
  color: var(--white);
  box-shadow: none;
}

.lite-btn-primary.purple:hover {
  background: var(--deep-purple);
  color: var(--white);
}

.lite-small-print {
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 12px;
}

/* ── SECTION 2: THE FEELING ── */
.lite-feeling-section {
  background: var(--deep-purple);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lite-feeling-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lite-feeling-headline {
  font-family: var(--font-header);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.lite-feeling-headline em {
  font-style: italic;
  color: var(--neon-green);
  font-weight: 400;
}

.lite-feeling-body {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}

.lite-feeling-body p + p { margin-top: 16px; }

/* ── SECTION 3: TESTIMONIALS CAROUSEL ── */
.lite-testimonials-section {
  padding: 80px 24px;
  background: var(--off-white);
  text-align: center;
}

.lite-testimonials-header {
  font-family: var(--font-header);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 40px;
}

.lite-carousel-container {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

.lite-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.lite-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.lite-testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 13, 51, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.lite-quote-text {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.lite-quote-author {
  font-family: var(--font-header);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lite-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.lite-carousel-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--deep-purple);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lite-carousel-btn:hover {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

.lite-carousel-dots {
  display: flex;
  gap: 8px;
}

.lite-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(58, 29, 109, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.lite-carousel-dot.active {
  background: var(--primary-purple);
  width: 24px;
  border-radius: 100px;
}

/* ── SECTION 4: FINAL CTA ── */
.lite-final-cta-section {
  background: linear-gradient(180deg, var(--off-white) 0%, rgba(58, 29, 109, 0.05) 100%);
  padding: 80px 24px 96px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.lite-final-cta-container {
  max-width: 680px;
  margin: 0 auto;
}

.lite-final-headline {
  font-family: var(--font-header);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lite-final-headline em {
  font-style: italic;
  color: var(--primary-purple);
}

.lite-final-sub {
  font-size: 17px;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.lite-price-reminder {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-header);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.lite-final-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto;
}

.lite-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary-purple);
  border: 1.5px solid var(--primary-purple);
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
}

.lite-btn-secondary:hover { background: rgba(58, 29, 109, 0.06); }

/* ── FOOTER ── */
.lite-footer {
  background: var(--deep-purple);
  color: var(--white);
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}

.lite-footer-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.lite-footer-brand-text {
  font-family: var(--font-header);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}

.lite-footer-brand-text span.dot {
  color: var(--neon-green);
}

.lite-footer-meta {
  color: var(--lavender);
  line-height: 1.8;
}

.lite-footer-disclaimer {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* ── LITE MULTI-STEP BOOKING MODAL ── */
.lite-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 14, 20, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lite-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lite-modal-container {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 28px 24px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.lite-modal-overlay.open .lite-modal-container {
  transform: translateY(0);
}

.lite-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background 0.2s ease;
}

.lite-modal-close-btn:hover { background: rgba(0,0,0,0.12); }

.lite-modal-header {
  margin-bottom: 20px;
  text-align: center;
}

.lite-modal-title {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 4px;
}

.lite-modal-sub {
  font-size: 13px;
  color: var(--mid-gray);
}

.lite-modal-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.lite-progress-dot {
  width: 32px;
  height: 5px;
  border-radius: 100px;
  background: rgba(58, 29, 109, 0.15);
  transition: all 0.3s ease;
}

.lite-progress-dot.active {
  background: var(--primary-purple);
}

.lite-wizard-step {
  display: none;
}

.lite-wizard-step.active {
  display: block;
}

.lite-form-label {
  font-family: var(--font-header);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-purple);
  margin-bottom: 8px;
  display: block;
}

.lite-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.lite-modal-plan-opt, .lite-modal-bed-opt {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--off-white);
  text-align: left;
}

.lite-modal-plan-opt.active, .lite-modal-bed-opt.active {
  border-color: var(--primary-purple);
  background: rgba(58, 29, 109, 0.06);
}

.lite-opt-title {
  font-family: var(--font-header);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 2px;
}

.lite-opt-price {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary-purple);
}

/* Calendar Styling inside Modal (Ultra-Compact) */
.lite-cal-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.lite-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.lite-cal-month-title {
  font-family: var(--font-header);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--deep-purple);
}

.lite-cal-nav-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: bold;
}

.lite-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--mid-gray);
  margin-bottom: 3px;
}

.lite-cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.lite-cal-day {
  height: 26px;
  max-height: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  padding: 0;
  position: relative;
  user-select: none;
}

.lite-cal-day:hover:not(.disabled):not(.empty):not(.fully-booked) {
  background: rgba(58, 29, 109, 0.1);
}

.lite-cal-day.today {
  background: #fef08a !important;
  color: #854d0e !important;
  cursor: not-allowed;
}

.lite-cal-day.selectable {
  font-weight: 700;
}

.lite-cal-day.selectable::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: #10b981;
  border-radius: 1px;
  opacity: 0.85;
}

.lite-cal-day.partially-booked::after {
  background: #f59e0b;
}

.lite-cal-day.fully-booked {
  color: #94a3b8 !important;
  background: #f8fafc !important;
  cursor: not-allowed;
  opacity: 0.6;
  text-decoration: line-through;
}

.lite-cal-day[data-tooltip] {
  position: relative;
}

.lite-cal-day[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 14, 20, 0.92);
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  z-index: 20;
}

.lite-cal-day[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lite-cal-day.selected {
  background: var(--primary-purple) !important;
  color: var(--white) !important;
  border-color: var(--primary-purple) !important;
}

.lite-cal-day.selected::after {
  display: none;
}

.lite-cal-day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  background: transparent;
}

.lite-cal-day.empty {
  visibility: hidden;
  border: none;
}

/* Time Slot Bubble Pills */
.lite-slots-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  width: 100%;
}

.lite-slot-pill {
  flex: 1 1 30%;
  min-width: 0;
  padding: 8px 6px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--deep-purple);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.2;
}

.lite-slot-pill:hover:not(.disabled) {
  border-color: var(--primary-purple);
  background: var(--white);
}

.lite-slot-pill.active {
  background: var(--primary-purple);
  color: var(--white);
  border-color: var(--primary-purple);
}

.lite-slot-pill.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--off-white);
  border-color: var(--border);
  color: var(--mid-gray);
  pointer-events: none;
  text-decoration: line-through;
}

.lite-form-group {
  margin-bottom: 12px;
  text-align: left;
}

.lite-form-group input, .lite-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s ease;
}

.lite-form-group input:focus, .lite-form-group select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(58, 29, 109, 0.1);
}

.lite-modal-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

/* Summary Card in Step 4 */
.lite-summary-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.lite-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.lite-summary-title {
  font-family: var(--font-header);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--deep-purple);
  margin: 0;
}

.lite-summary-badge {
  background: var(--primary-purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lite-summary-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lite-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  line-height: 1.4;
}

.lite-sum-label {
  color: var(--mid-gray);
  font-weight: 500;
}

.lite-sum-val {
  color: var(--black);
  font-weight: 700;
  text-align: right;
  max-width: 65%;
}

.lite-sum-val.price {
  color: var(--primary-purple);
  font-size: 13.5px;
}

/* Success State Popup View */
.lite-success-badge {
  width: 64px;
  height: 64px;
  background: var(--neon-green);
  color: var(--deep-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(124, 252, 0, 0.35);
}

@media (max-width: 900px) {
  .lite-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .lite-hero-content-col {
    text-align: center;
  }
  .lite-hero-content-col .lite-cards-grid {
    justify-content: center;
  }
  .lite-hero-img {
    max-height: 380px;
  }
}

@media (max-width: 600px) {
  .lite-nav { padding: 16px 20px; min-height: 64px; }
  .lite-hero-section { padding: 32px 16px 40px; }
  .lite-price-card { padding: 24px 18px; }
  .lite-feeling-section { padding: 60px 16px; }
  .lite-testimonials-section { padding: 60px 16px; }
  .lite-final-cta-section { padding: 60px 16px 72px; }
  .lite-grid-cards { grid-template-columns: 1fr; }
}
