/* ============================================
   FUNNEL PAGES — Shared Styles
   VIP Upgrade, Upsell, Confirmation
   ============================================ */

/* --- Confirmation Banner --- */
.confirm-banner {
  background: var(--success);
  color: var(--white);
  padding: 14px 0;
  font-size: 15px;
}

.confirm-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.confirm-check {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Upsell Hero --- */
.upsell-hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 40px;
  text-align: center;
}

.upsell-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 8px 20px;
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
}

.upsell-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.upsell-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
  font-weight: 500;
}

/* --- VSL Section (Video Sales Letter) --- */
.vsl-section {
  background: var(--navy);
  padding: 0 0 40px;
  text-align: center;
}

.vsl-wrapper {
  max-width: 720px;
  margin: 0 auto 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: #000;
}

.vsl-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.vsl-video iframe,
.vsl-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-video .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border-radius: 0;
  aspect-ratio: auto;
  max-width: none;
}

.vsl-cta {
  max-width: 480px;
  margin: 0 auto;
}

.vsl-cta .btn {
  margin-bottom: 12px;
}

.vsl-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Upsell Offer Section --- */
.upsell-offer {
  padding: 60px 0;
  background: var(--white);
}

.upsell-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.upsell-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.upsell-intro {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 28px;
}

/* Features List */
.upsell-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.upsell-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.feature-icon.gold {
  background: rgba(200, 164, 78, 0.1);
}

.feature-icon.blue {
  background: rgba(74, 144, 217, 0.1);
}

.feature-content h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.65;
}

/* Pricing Card */
.upsell-pricing-wrap {
  position: sticky;
  top: 24px;
}

.upsell-pricing-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(200, 164, 78, 0.15);
}

.pricing-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200, 164, 78, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-amount {
  margin-bottom: 24px;
}

.pricing-amount .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.pricing-amount .was {
  font-size: 18px;
  color: var(--slate);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.pricing-amount .period {
  font-size: 15px;
  color: var(--slate);
  display: block;
  margin-top: 4px;
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-checklist li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-checklist li:last-child {
  border-bottom: none;
}

.pricing-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-guarantee {
  font-size: 13px;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.5;
}

/* Skip Link */
.upsell-skip {
  text-align: center;
  margin-top: 20px;
}

.upsell-skip a {
  font-size: 14px;
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.upsell-skip a:hover {
  color: var(--navy);
}

/* --- Proof Section --- */
.upsell-proof {
  padding: 48px 0;
  background: var(--light-gray);
}

.proof-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.proof-card blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
}

.proof-author {
  font-size: 15px;
  color: var(--slate);
}

/* --- Final CTA Section --- */
.upsell-final {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.upsell-final h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--navy);
  margin-bottom: 12px;
}

.upsell-final p {
  font-size: 17px;
  color: var(--slate);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Client Results Grid --- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.result-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.result-context {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

.result-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
}

/* --- Thank You / Confirmation Specifics --- */
.ty-hero {
  background: linear-gradient(rgba(16, 24, 48, 0.55), rgba(16, 24, 48, 0.65)), url('/images/sonia-hero-bg.jpg') center top/cover no-repeat;
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
}

.ty-check {
  width: 72px;
  height: 72px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: var(--white);
}

.ty-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.ty-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Details Card */
.ty-details {
  padding: 48px 0;
  background: var(--light-gray);
}

.details-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.details-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.detail-row .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-align: right;
}

.add-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  font-family: var(--font-body);
}

.add-cal-btn:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Next Steps */
.next-steps {
  padding: 60px 0;
  background: var(--white);
}

.steps-list {
  max-width: 540px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.step-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .upsell-layout {
    grid-template-columns: 1fr 380px;
    gap: 60px;
  }
}
