/* Checkout Page Specific Styles */
:root {
  --checkout-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #111827;
  --text-muted: #64748b;
  --navy: #0f172a;
  --magenta: #e6005c;
  --pink: #ec4899;
  --light-pink: #fff1f7;
  --green: #16a34a;
  --light-green: #ecfdf5;
  --blue: #2563eb;
  --light-blue: #eff6ff;
  --yellow: #fbbf24;
  --border: #e5e7eb;
}

body {
  font-family: 'Be Vietnam Pro', 'Inter', 'Arial', sans-serif;
  color: var(--text-dark);
  margin: 0;
}

/* Anti-copy CSS */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

html {
  scroll-behavior: smooth;
}

.checkout-body {
  background-color: var(--checkout-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* PHẦN 1 — Top urgency bar */
.checkout-top-bar {
  background-color: #d90057; /* Deep magenta */
  color: white;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 16px;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(217, 0, 87, 0.2);
  z-index: 50;
  position: relative;
}
.checkout-top-bar p { margin: 0; }

/* PHẦN 2 — Header thương hiệu */
.checkout-brand-header {
  background-color: var(--card-bg);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}
.brand-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.brand-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
}
.brand-right {
  display: flex;
  align-items: center;
}
.security-badge {
  background-color: var(--light-green);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #a7f3d0;
}

.checkout-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 20px;
}

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--magenta);
}

.checkout-hero-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background: var(--light-pink);
  color: var(--magenta);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid #fbcfe8;
}

.hero-heading {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-highlight {
  color: var(--magenta);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Countdown Box in Hero */
.checkout-countdown-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
  border: 1px solid #1e293b;
}

.ccb-title {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ccb-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ccb-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  min-width: 80px;
}

.ccb-num {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 5px;
}

.ccb-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 600;
}

.ccb-sep {
  color: var(--pink);
  font-size: 2rem;
  font-weight: 800;
}

.ccb-warning {
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* Benefit Grid */
.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 680px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.h-benefit-item {
  background: var(--light-pink);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

/* Main CTA */
.hero-main-cta {
  display: block;
  width: 100%;
  max-width: 680px;
  background: linear-gradient(135deg, var(--magenta), var(--hot-pink));
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(230, 0, 92, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.hero-main-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(230, 0, 92, 0.6);
}

.hero-main-cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 5px 15px rgba(230, 0, 92, 0.4);
}

.hero-cta-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 15px;
  font-weight: 600;
}

/* Standalone Cards Style */
.checkout-summary-card, .payment-section, .checkout-deliverables-card, .checkout-bonus-card, .checkout-risk-free-card, .checkout-faq-card, .checkout-testimonial-card, .checkout-accordion-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.checkout-urgency-card {
  background: var(--light-pink);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  border: 1px solid #fbcfe8;
  margin-bottom: 32px;
}

.summary-card-title, .payment-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 25px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
}

/* Order Summary */
.summary-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--checkout-bg);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.sp-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp-icon {
  font-size: 2rem;
  background: white;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sp-details h4 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: var(--navy);
}
.sp-details p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.sp-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.sp-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--magenta);
}
.sp-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.summary-bonuses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.sb-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.sb-item:last-child {
  border-bottom: none;
}
.sb-left {
  font-weight: 600;
  color: var(--text-dark);
}
.sb-right {
  font-weight: 800;
  color: var(--green);
  background: var(--light-green);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.summary-price-box {
  background: var(--light-pink);
  border: 1px solid #fbcfe8;
  border-radius: 16px;
  padding: 24px;
}
.spb-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}
.spb-value.strikethrough {
  color: var(--text-muted);
  text-decoration: line-through;
}
.spb-final {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fbcfe8;
  align-items: center;
}
.spb-label-final {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.spb-value-final {
  font-size: 2rem;
  font-weight: 800;
  color: var(--magenta);
}
.spb-saving {
  background: var(--magenta);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
}
.spb-progress {
  width: 100%;
  height: 8px;
  background: white;
  border-radius: 50px;
  overflow: hidden;
}
.spb-bar {
  width: 90%;
  height: 100%;
  background: linear-gradient(to right, var(--magenta), var(--hot-pink));
  border-radius: 50px;
}

/* Deliverables Section */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dl-item {
  display: flex;
  align-items: center;
  background: var(--checkout-bg);
  padding: 20px 24px;
  border-radius: 16px;
  gap: 20px;
}
.dl-icon {
  font-size: 2rem;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
}
.dl-content {
  flex: 1;
}
.dl-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--navy);
}
.dl-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.dl-check {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

/* Bonus Section */
.bonus-header {
  text-align: center;
  margin-bottom: 32px;
}
.bonus-badge {
  background: var(--light-pink);
  color: var(--magenta);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}
.bonus-subtitle {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}
.text-magenta-bold {
  color: var(--magenta);
  font-weight: 800;
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bonus-item {
  display: flex;
  align-items: center;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 20px 24px;
  border-radius: 16px;
  gap: 20px;
}
.bi-icon {
  font-size: 2.2rem;
  width: 50px;
  text-align: center;
  flex-shrink: 0;
}
.bi-content {
  flex: 1;
}
.bi-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: var(--navy);
}
.bi-content p {
  margin: 0 0 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.bi-value {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  font-weight: 600;
  margin: 0 !important;
}
.bi-badge {
  background: var(--light-green);
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Urgency Section */
.text-center { text-align: center; }
.center-cta { margin: 0 auto; text-align: center; }
.urgency-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.urgency-item {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.ui-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.urgency-item h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}
.urgency-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Payment Section */
.payment-section {
  border: 3px solid var(--green) !important;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(22, 163, 74, 0.15) !important;
}
.payment-secure-badge {
  background: var(--light-green);
  color: var(--green);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
}
.payment-heading {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.payment-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.payment-amount-box {
  background: var(--light-pink);
  border: 1px solid #fbcfe8;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pab-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.pab-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--magenta);
  line-height: 1;
}
.pab-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}
.payment-qr-box {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 440px;
  margin: 0 auto;
}
.pqb-instruction {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.pqb-image-wrapper {
  background: white;
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  margin-bottom: 24px;
}
.qr-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
}
.pqb-support {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.pqb-brands {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pqb-brands span {
  background: #f1f5f9;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
}

.payment-steps {
  margin-top: 48px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ps-heading {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.ps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ps-number {
  background: var(--light-pink);
  color: var(--magenta);
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #fbcfe8;
}
.ps-text {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.5;
  padding-top: 5px;
}
.ps-text strong {
  color: var(--navy);
}

.post-payment-box {
  background: var(--light-blue);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.ppb-heading {
  font-size: 1.15rem;
  color: var(--blue);
  margin: 0 0 15px 0;
}
.ppb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ppb-list li {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}
.ppb-list li:last-child {
  margin-bottom: 0;
}
.ppb-list li::first-letter {
  color: var(--blue);
  font-weight: 800;
}

.checkout-contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ccb-heading {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.ccb-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.ccb-btn {
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccb-btn:hover {
  opacity: 0.85;
}
.btn-phone { background: var(--light-green); color: var(--green); border: 1px solid #bbf7d0; }
.btn-email { background: #e0f2fe; color: #0284c7; border: 1px solid #bae6fd; }
.btn-messenger { background: #f3e8ff; color: #9333ea; border: 1px solid #e9d5ff; }

/* Risk Free Section */
.risk-free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rf-item {
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
}
.rf-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.rf-item h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}
.rf-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.rf-green {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.rf-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.rf-pink {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #ecfdf5;
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  border-radius: 8px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.faq-question {
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0 0 10px 0;
}
.faq-answer {
  color: #475569;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonial Section */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.tm-item {
  background: #f8fafc;
  border-left: 6px solid var(--magenta);
  padding: 24px;
  border-radius: 8px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.tm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.tm-user h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}
.tm-user p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 8px 0;
}
.tm-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #eab308; /* yellow-500 */
  margin-top: 4px;
}
.tm-badge {
  background: var(--light-green);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}
.tm-text {
  color: #334155;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Instructor Mini Profile */
.instructor-mini-profile {
  background: var(--light-pink);
  border: 1px solid #fbcfe8;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.imp-avatar {
  width: 80px;
  height: 80px;
  background: var(--magenta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.imp-content h4 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 0 0 5px 0;
}
.imp-title {
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 12px 0;
}
.imp-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.imp-stats span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Accordion FAQ Section */
.accordion-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.accordion-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding-right: 20px;
}
.accordion-icon {
  color: var(--magenta);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-content {
  padding-bottom: 24px;
}
.accordion-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Final CTA Block */
.checkout-final-cta-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 56px 40px;
  max-width: 920px;
  margin: 40px auto 0;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}
.fcc-badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.fcc-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: white;
}
.text-magenta {
  color: var(--magenta) !important;
}
.fcc-subtitle {
  color: #94a3b8;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.fcc-checklist {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  max-width: 480px;
  margin: 0 auto 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fcc-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fcc-checklist li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}
.fcc-checklist li:last-child {
  margin-bottom: 0;
}
.fcc-price-box {
  margin-bottom: 32px;
}
.fcc-original-price {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}
.fcc-final-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin: 0 0 10px 0;
}
.fcc-saving {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.fcc-btn {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--magenta), var(--hot-pink));
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(230, 0, 92, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fcc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 0, 92, 0.5);
  color: white;
}
.fcc-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(230, 0, 92, 0.3);
}
.fcc-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}
.fcc-trust .sep {
  opacity: 0.5;
}

/* Footer */
.checkout-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
}
.cf-container {
  max-width: 800px;
  margin: 0 auto;
}
.cf-copyright {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px 0;
}
.cf-contact {
  margin: 0 0 20px 0;
  font-size: 0.95rem;
}
.cf-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
}

/* Responsive Checkout */
@media (max-width: 991px) {
  .checkout-container { padding: 32px 20px; }
  .urgency-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-item:last-child { grid-column: span 2; }
  .risk-free-grid { grid-template-columns: repeat(2, 1fr); }
  .rf-item:last-child { grid-column: span 2; }
}

@media (max-width: 767px) {
  .checkout-top-bar { font-size: 0.85rem; padding: 0 10px; }
  .checkout-brand-header { height: 60px; }
  .brand-avatar { width: 32px; height: 32px; font-size: 1rem; }
  .brand-name { font-size: 0.95rem; }
  .security-badge { font-size: 0.75rem; padding: 4px 8px; }
  .checkout-container { padding: 20px 16px; }
  .checkout-hero-card { padding: 32px 24px; border-radius: 20px; }
  .hero-heading { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .checkout-countdown-box { padding: 24px 16px; margin-top: 24px; }
  .ccb-timer { gap: 10px; }
  .ccb-block { min-width: 65px; padding: 10px 12px; }
  .ccb-num { font-size: 1.5rem; }
  .ccb-label { font-size: 0.7rem; }
  .ccb-sep { font-size: 1.5rem; }
  .ccb-warning { font-size: 0.85rem; }
  .hero-benefits { grid-template-columns: 1fr; gap: 12px; }
  .h-benefit-item { font-size: 0.9rem; padding: 14px 16px; }
  .hero-main-cta { font-size: 1.1rem; padding: 16px; }
  
  .checkout-summary-card, .payment-section, .checkout-deliverables-card, .checkout-bonus-card, .checkout-risk-free-card, .checkout-faq-card, .checkout-testimonial-card, .checkout-accordion-card { padding: 24px 20px; border-radius: 24px; }
  .checkout-urgency-card { padding: 32px 20px; border-radius: 24px; }
  .summary-product { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sp-right { align-items: flex-start; }
  .sb-item { flex-direction: column; gap: 5px; }
  .sb-right { align-self: flex-start; }
  .spb-row { flex-direction: column; gap: 5px; }
  .spb-final { flex-direction: column; align-items: flex-start; }
  
  .dl-item { gap: 12px; padding: 16px; align-items: flex-start; }
  .dl-icon { font-size: 1.5rem; width: 32px; }
  .dl-content h4 { font-size: 1rem; }
  .dl-content p { font-size: 0.85rem; }
  .dl-check { font-size: 1.2rem; align-self: center; }

  .bonus-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
  .bi-icon { font-size: 1.8rem; width: 36px; }
  .bi-content h4 { font-size: 1rem; }
  .bi-content p { font-size: 0.85rem; }
  .bi-badge { align-self: flex-start; }

  .urgency-grid { grid-template-columns: 1fr; gap: 16px; }
  .urgency-item { padding: 24px 20px; }
  .urgency-item:last-child { grid-column: span 1; }

  .qr-image { max-width: 280px; }
  .payment-heading { font-size: 2rem; }
  .pab-amount { font-size: 2.2rem; }
  .payment-qr-box { padding: 24px 16px; }

  .payment-steps { margin-top: 32px; }
  .ps-heading { font-size: 1.15rem; }
  .ps-list { gap: 16px; }
  .ps-item { gap: 12px; }
  .ps-number { width: 32px; height: 32px; font-size: 0.9rem; }
  .ps-text { font-size: 0.95rem; padding-top: 4px; }
  
  .post-payment-box, .checkout-contact-box { padding: 20px 16px; }
  .ccb-buttons { flex-direction: column; }
  .ccb-btn { width: 100%; }

  .risk-free-grid { grid-template-columns: 1fr; gap: 16px; }
  .rf-item { padding: 24px 20px; }
  .rf-item:last-child { grid-column: span 1; }

  .faq-item { padding: 16px 20px; }

  .tm-item { padding: 20px 16px; }
  .tm-header { flex-direction: column; gap: 12px; }
  .tm-badge { align-self: flex-start; }
  
  .instructor-mini-profile { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .imp-avatar { width: 60px; height: 60px; font-size: 2rem; }

  .accordion-header { padding: 16px 0; }
  .accordion-title { font-size: 1rem; }

  .checkout-final-cta-card { padding: 40px 20px; border-radius: 24px; }
  .fcc-heading { font-size: 2.2rem; }
  .fcc-final-price { font-size: 2.8rem; }
  .fcc-btn { font-size: 1.1rem; padding: 16px; }
  .fcc-trust { flex-direction: column; gap: 8px; }
  .fcc-trust .sep { display: none; }
}
