/* Start custom CSS for html, class: .elementor-element-d7fcb69 *//* ==================== CONTAINER 1 STYLES ==================== */
.top-bar {
  background: linear-gradient(90deg, var(--brand-purple) 0%, var(--brand-blue) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-section {
  background: radial-gradient(circle at 50% 10%, rgba(0, 136, 204, 0.08) 0%, transparent 60%), #ffffff;
  padding: 60px 0 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1.25;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 30px auto;
}

.timer-card {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.timer-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.time-box {
  background: var(--brand-purple);
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  min-width: 55px;
  text-align: center;
}

.time-box span {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
}

.time-box small {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.colon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  text-align: left;
  box-shadow: var(--shadow);
}

.hl-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-purple);
}

.highlight-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e261263 *//* ==================== CONTAINER 2 STYLES ==================== */
.sec-problem-calc {
  padding: 70px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 136, 204, 0.3);
}

.icon-circle.red {
  width: 48px;
  height: 48px;
  background: #fee2e2;
  color: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.15rem;
  color: var(--brand-purple);
  margin-bottom: 10px;
}

.calculator-container-box {
  margin-top: 70px;
  text-align: center;
}

.calculator-card {
  background: #ffffff;
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 136, 204, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-purple);
  font-size: 0.95rem;
}

.calc-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background: #f8fafc;
  outline: none;
}

.range-slider {
  width: 100%;
  accent-color: var(--brand-blue);
  margin-top: 8px;
}

.range-value {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.result-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.result-box.highlight-box {
  background: rgba(0, 136, 204, 0.08);
  border-color: var(--brand-blue);
}

.res-title {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.res-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 4px 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d9ac3bb *//* ==================== CONTAINER 3 STYLES ==================== */
.sec-learning-stack {
  padding: 70px 0 0 0;
}

.aud-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.audience-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brand-purple);
}

.curriculum-wrap {
  padding-top: 70px;
  text-align: center;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  text-align: left;
}

.module-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.module-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
}

.module-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(0, 136, 204, 0.15);
}

.module-card h3 {
  font-size: 1.25rem;
  color: var(--brand-purple);
  margin-bottom: 15px;
  padding-right: 35px;
}

.module-card ul {
  list-style: none;
}

.module-card li {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-card li i {
  color: var(--brand-blue);
}

.cert-banner-block {
  background: var(--brand-purple);
  color: #fff;
  padding: 70px 0;
  margin-top: 70px;
}

.cert-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cert-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cert-content p {
  color: #cbd5e1;
  margin-bottom: 25px;
}

.cert-list {
  list-style: none;
}

.cert-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.cert-list li i {
  color: #38bdf8;
}

.mockup-frame {
  background: #ffffff;
  color: var(--brand-purple);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.mockup-body h3 {
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin: 8px 0;
}

.mockup-body .to-text, .mockup-body .desc-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mockup-footer {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stamp-badge {
  background: rgba(232, 80, 39, 0.1);
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f76bc2 *//* ==================== CONTAINER 4 STYLES ==================== */
.sec-proof-mentor {
  padding: 70px 0;
}

.mentor-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.mentor-avatar {
  text-align: center;
}

.avatar-placeholder {
  width: 160px;
  height: 160px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 15px auto;
  border: 4px solid var(--brand-blue);
}

.mentor-badge {
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 20px;
}

.mentor-role {
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.mentor-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mentor-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.mentor-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-purple);
}

.mentor-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-wrap {
  padding-top: 70px;
}

.testimonial-card {
  background: #ffffff;
}

.stars {
  color: var(--brand-orange);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-purple);
}

.reviewer-meta small {
  color: var(--text-muted);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbce09c *//* ==================== CONTAINER 5 STYLES ==================== */
.sec-closing-wrap {
  padding: 70px 0 0 0;
  background: #f1f5f9;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.bonus-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0, 136, 204, 0.3);
  text-align: center;
}

.bonus-tag {
  background: rgba(232, 80, 39, 0.1);
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.bonus-card h4 {
  font-size: 1.15rem;
  color: var(--brand-purple);
  margin: 15px 0 10px 0;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.bonus-price {
  display: block;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.95rem;
}

.pricing-wrap {
  padding: 70px 0;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--brand-blue);
  border-radius: 20px;
  padding: 45px 35px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.15);
  position: relative;
}

.pricing-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(232, 80, 39, 0.3);
}

.pricing-card h2 {
  color: var(--brand-purple);
}

.price-box {
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.old-price {
  font-size: 1.4rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-purple);
}

.save-badge {
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 25px 0 35px 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: var(--brand-blue);
}

.w-100-btn {
  width: 100%;
}

.secure-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.faq-wrap {
  padding-bottom: 70px;
}

.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-purple);
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
  max-height: 150px;
}

.faq-item.active i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.sticky-cta-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--brand-blue);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  z-index: 999;
  transition: bottom 0.4s ease;
}

.sticky-cta-bar.show {
  bottom: 0;
}

.sticky-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-title {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: 0.95rem;
  display: block;
}

.sticky-price {
  font-weight: 800;
  color: var(--brand-blue);
  font-size: 1.15rem;
}

.sticky-price small {
  color: #94a3b8;
  margin-left: 5px;
}

.sticky-timer {
  font-size: 0.9rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.sticky-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.footer {
  background: var(--brand-purple);
  color: #94a3b8;
  text-align: center;
  padding: 30px 0 50px 0;
  font-size: 0.85rem;
}

/* Responsive Rules */
@media (max-width: 850px) {
  .calculator-card { grid-template-columns: 1fr; gap: 20px; padding: 25px; }
  .cert-wrapper { grid-template-columns: 1fr; }
  .mentor-card { grid-template-columns: 1fr; text-align: center; }
  .mentor-stats { justify-content: center; }
  .sticky-timer { display: none; }
  .hero-title { font-size: 1.85rem; }
  .current-price { font-size: 2.4rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary-animated, .btn-outline-animated { width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7668a1d *//* =========================================================================
   GLOBAL RESET, POPPINS FONT & COLOR THEME VARIABLES
========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Theme Colors */
  --brand-blue: #0088cc;
  --brand-orange: #e85027;
  --brand-purple: #2a2050;
  
  /* Supporting UI Colors */
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --radius: 16px;
  --shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(0, 136, 204, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-purple);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 45px;
}

/* --- Themed Buttons & Badges --- */
.pci-hero-badge {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(232, 80, 39, 0.1) 100%);
  color: var(--brand-blue);
  border: 1px solid rgba(0, 136, 204, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  animation: pulseGlow 3s infinite ease-in-out;
  margin-bottom: 20px;
}

.pci-hero-badge.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.2); }
  50% { box-shadow: 0 0 14px 4px rgba(0, 136, 204, 0.3); }
}

.btn-primary-animated {
  position: relative;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 100%);
  color: #ffffff !important;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
}

.btn-primary-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-primary-animated:hover::before {
  left: 100%;
}

.btn-primary-animated:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(232, 80, 39, 0.4);
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-purple) 100%);
}

.btn-outline-animated {
  position: relative;
  background: #ffffff;
  color: var(--brand-purple) !important;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--brand-blue);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-outline-animated:hover {
  background: var(--brand-blue);
  color: #ffffff !important;
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 136, 204, 0.25);
}

.btn-primary-animated:hover .btn-icon,
.btn-outline-animated:hover .btn-icon {
  transform: translateX(5px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.w-100-btn {
  width: 100%;
}

/* =========================================================================
   SECTION 1: HERO & HIGHLIGHTS
========================================================================= */
.top-bar {
  background: linear-gradient(90deg, var(--brand-purple) 0%, var(--brand-blue) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-section {
  background: radial-gradient(circle at 50% 10%, rgba(0, 136, 204, 0.08) 0%, transparent 60%), #ffffff;
  padding: 60px 0 50px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1.25;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 30px auto;
}

.timer-card {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.timer-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.time-box {
  background: var(--brand-purple);
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  min-width: 55px;
  text-align: center;
}

.time-box span {
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
}

.time-box small {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.colon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-purple);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  text-align: left;
  box-shadow: var(--shadow);
}

.hl-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-purple);
}

.highlight-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================================================
   SECTION 2: PROBLEMS & CALCULATOR
========================================================================= */
.sec-problem-calc {
  padding: 70px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 136, 204, 0.3);
}

.icon-circle.red {
  width: 48px;
  height: 48px;
  background: #fee2e2;
  color: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.15rem;
  color: var(--brand-purple);
  margin-bottom: 10px;
}

.calculator-container-box {
  margin-top: 70px;
  text-align: center;
}

.calculator-card {
  background: #ffffff;
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 136, 204, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-purple);
  font-size: 0.95rem;
}

.calc-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background: #f8fafc;
  outline: none;
}

.range-slider {
  width: 100%;
  accent-color: var(--brand-blue);
  margin-top: 8px;
}

.range-value {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.result-box {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.result-box.highlight-box {
  background: rgba(0, 136, 204, 0.08);
  border-color: var(--brand-blue);
}

.res-title {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.res-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-purple);
  margin: 4px 0;
}

/* =========================================================================
   SECTION 3: CURRICULUM, CERTIFICATE & AUDIENCE
========================================================================= */
.sec-learning-stack {
  padding: 70px 0 0 0;
}

.aud-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.audience-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brand-purple);
}

.curriculum-wrap {
  padding-top: 70px;
  text-align: center;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  text-align: left;
}

.module-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.module-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
}

.module-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(0, 136, 204, 0.15);
}

.module-card h3 {
  font-size: 1.25rem;
  color: var(--brand-purple);
  margin-bottom: 15px;
  padding-right: 35px;
}

.module-card ul {
  list-style: none;
}

.module-card li {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-card li i {
  color: var(--brand-blue);
}

.cert-banner-block {
  background: var(--brand-purple);
  color: #fff;
  padding: 70px 0;
  margin-top: 70px;
}

.cert-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cert-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.cert-content p {
  color: #cbd5e1;
  margin-bottom: 25px;
}

.cert-list {
  list-style: none;
}

.cert-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.cert-list li i {
  color: #38bdf8;
}

.mockup-frame {
  background: #ffffff;
  color: var(--brand-purple);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.mockup-body h3 {
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin: 8px 0;
}

.mockup-body .to-text, .mockup-body .desc-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mockup-footer {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stamp-badge {
  background: rgba(232, 80, 39, 0.1);
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* =========================================================================
   SECTION 4: PROOF & MENTOR
========================================================================= */
.sec-proof-mentor {
  padding: 70px 0;
}

.mentor-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.mentor-avatar {
  text-align: center;
}

.avatar-placeholder {
  width: 160px;
  height: 160px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 15px auto;
  border: 4px solid var(--brand-blue);
}

.mentor-badge {
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 20px;
}

.mentor-role {
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.mentor-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mentor-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.mentor-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-purple);
}

.mentor-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-wrap {
  padding-top: 70px;
}

.testimonial-card {
  background: #ffffff;
}

.stars {
  color: var(--brand-orange);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-purple);
}

.reviewer-meta small {
  color: var(--text-muted);
}

/* =========================================================================
   SECTION 5: OFFER, PRICING, FAQ & FOOTER
========================================================================= */
.sec-closing-wrap {
  padding: 70px 0 0 0;
  background: #f1f5f9;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.bonus-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 2px dashed rgba(0, 136, 204, 0.3);
  text-align: center;
}

.bonus-tag {
  background: rgba(232, 80, 39, 0.1);
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.bonus-card h4 {
  font-size: 1.15rem;
  color: var(--brand-purple);
  margin: 15px 0 10px 0;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.bonus-price {
  display: block;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.95rem;
}

.pricing-wrap {
  padding: 70px 0;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--brand-blue);
  border-radius: 20px;
  padding: 45px 35px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.15);
  position: relative;
}

.pricing-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(232, 80, 39, 0.3);
}

.pricing-card h2 {
  color: var(--brand-purple);
}

.price-box {
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.old-price {
  font-size: 1.4rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.current-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-purple);
}

.save-badge {
  background: rgba(0, 136, 204, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 25px 0 35px 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: var(--brand-blue);
}

.secure-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 15px;
}

.faq-wrap {
  padding-bottom: 70px;
}

.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-purple);
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
  max-height: 150px;
}

.faq-item.active i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.sticky-cta-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--brand-blue);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  z-index: 999;
  transition: bottom 0.4s ease;
}

.sticky-cta-bar.show {
  bottom: 0;
}

.sticky-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-title {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: 0.95rem;
  display: block;
}

.sticky-price {
  font-weight: 800;
  color: var(--brand-blue);
  font-size: 1.15rem;
}

.sticky-price small {
  color: #94a3b8;
  margin-left: 5px;
}

.sticky-timer {
  font-size: 0.9rem;
  color: var(--brand-orange);
  font-weight: 700;
}

.sticky-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.footer {
  background: var(--brand-purple);
  color: #94a3b8;
  text-align: center;
  padding: 30px 0 50px 0;
  font-size: 0.85rem;
}

/* =========================================================================
   RESPONSIVE ADJUSTMENTS
========================================================================= */
@media (max-width: 850px) {
  .calculator-card { grid-template-columns: 1fr; gap: 20px; padding: 25px; }
  .cert-wrapper { grid-template-columns: 1fr; }
  .mentor-card { grid-template-columns: 1fr; text-align: center; }
  .mentor-stats { justify-content: center; }
  .sticky-timer { display: none; }
  .hero-title { font-size: 1.85rem; }
  .current-price { font-size: 2.4rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary-animated, .btn-outline-animated { width: 100%; }
}/* End custom CSS */