/* =========================
   CSS Variables & Theming
   ========================= */
:root {
  --primary: #4b44e0;
  --primary-light: rgba(75, 68, 224, 0.08);
  --primary-border: rgba(75, 68, 224, 0.3);
  --primary-neon: #00dbff;
  --primary-gradient: linear-gradient(135deg, #4b44e0 0%, #6358f4 100%);
  --text-dark: #11141a;
  --text-regular: #3a3d45;
  --text-light: #717a8b;
  --bg-main: #f5f7fa;
  --bg-card: #ffffff;
  --border-color: rgba(226, 232, 240, 0.9);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 30px rgba(75, 68, 224, 0.25);
  --shadow-btn: 0 10px 25px rgba(75, 68, 224, 0.35);
  --shadow-neon: 0 0 15px rgba(0, 219, 255, 0.3);

  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* =========================
   Reset & Base Styles
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-card);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* =========================
   Typography
   ========================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
}

h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

.subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.text-normal {
  font-size: 16px;
  color: var(--text-regular);
  line-height: 1.6;
  text-align: center;
}

p {
  margin-bottom: 16px;
}

/* =========================
   Header & Progress
   ========================= */
header.app-header {
  padding: 12px 20px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background: white;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #111827;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Premium Compact Header */
.premium-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-left {
  flex: 0 0 40px;
}

.header-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-right {
  flex: 0 0 40px;
}

.back-btn-compact {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-btn-compact:active {
  transform: scale(0.9);
  background: #f1f5f9;
}

.header-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.progress-track {
  height: 6px;
  background: #f1f5f9;
  border-radius: 10px;
  position: relative;
  overflow: visible;
}

.progress-fill-premium {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(75, 68, 224, 0.3);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.progress-nodes-row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  z-index: 3;
}

.p-node {
  width: 10px;
  height: 10px;
  background: #e2e8f0;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.p-node.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(75, 68, 224, 0.5);
}

.p-node.completed {
  background: var(--primary);
  transform: scale(1);
}

.divider {
  display: none;
}

/* =========================
   Layout & Content Area
   ========================= */
.content-area {
  padding: 10px 24px 140px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: slideFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

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

/* =========================
   Components: Cards & Options
   ========================= */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.option-card {
  background-color: var(--bg-card);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.option-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

.option-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #e0e0e0;
}

.option-card-btn {
  padding: 16px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid var(--border-color);
}

/* List Button Option */
.option-btn {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background-color: var(--bg-card);
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-bounce);
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  position: relative;
}

.option-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.option-btn.selected {
  border-color: var(--primary);
  background-color: #f8f9ff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.03);
  z-index: 2;
}

.option-btn-icon {
  font-size: 20px;
  margin-right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.option-btn.selected .option-btn-icon {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.option-btn-content {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a1c20;
}

.checkbox-option {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background-color: var(--bg-card);
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-bounce);
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.checkbox-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.checkbox-option.selected {
  border-color: var(--primary);
  background-color: #f8f9ff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

.checkbox-box {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkbox-option.selected .checkbox-box {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-icon {
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.checkbox-option.selected .checkbox-icon {
  opacity: 1;
  transform: scale(1);
}

/* Trust Badges / Social Proof */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge {
  background: var(--bg-main);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-regular);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: var(--warning);
  letter-spacing: 2px;
}

/* /* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  margin: 30px 0;
  text-align: center;
  z-index: 2;
}

.quote-content {
  background: #f4f6fb;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 24px;
}

.quote-icon {
  color: var(--primary);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-top {
  top: 10px;
  left: 14px;
}

.quote-bottom {
  bottom: 0px;
  right: 14px;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.author-logo {
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  opacity: 0.9;
}

.mentioned-in {
  text-align: center;
  margin-top: 40px;
}

.mentioned-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1c20;
  margin-bottom: 24px;
}

.logos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  align-items: center;
  justify-items: center;
  padding: 0 10px;
}

.brand-logo {
  max-width: 100%;
  max-height: 22px;
  opacity: 0.5;
  filter: grayscale(100%);
  object-fit: contain;
}

/* High Quality Images / Illustrations */
.hero-image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  margin: 20px 0 24px 0;
  display: block;
  border-radius: 20px;
}

/* Profile Result Card */
.profile-card {
  background: linear-gradient(
    135deg,
    rgba(0, 86, 210, 0.05) 0%,
    rgba(0, 219, 255, 0.05) 100%
  );
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.profile-tag {
  background: var(--success);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.profile-level {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.level-bar {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    to right,
    var(--danger),
    var(--warning),
    var(--success)
  );
  margin-right: 16px;
  position: relative;
}

.level-marker {
  position: absolute;
  right: 10%;
  top: -6px;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid var(--success);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.level-text {
  font-weight: 700;
  font-size: 14px;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.stat-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* Dynamic Text Marker */
.highlight-text {
  color: var(--primary);
  font-weight: 800;
}

h2 .highlight-text {
  display: block;
  margin-top: 4px;
}

/* Fix Images */
.person-img-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--primary-light);
}

/* =========================
   Inputs & Forms
   ========================= */
.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-bounce);
  outline: none;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  background: #fafafc;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow:
    0 0 0 4px var(--primary-light),
    inset 0 2px 4px rgba(0, 0, 0, 0.01);
  background: #ffffff;
  transform: translateY(-2px);
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.5;
}

.privacy-icon {
  margin-right: 8px;
  font-size: 16px;
  color: var(--success);
}

.bonus-banner {
  background: linear-gradient(135deg, var(--warning), #ffcd38);
  color: #5c3a00;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.bonus-icon {
  font-size: 20px;
  margin-right: 12px;
}

/* =========================
   Buttons & CTAs
   ========================= */
.footer-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  padding: 16px 24px 30px;
  background: linear-gradient(
    to top,
    var(--bg-card) 60%,
    rgba(255, 255, 255, 0)
  );
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.btn-primary {
  width: 100%;
  padding: 18px 24px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-btn);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: 0.5s;
  opacity: 0;
}

.btn-primary:hover:not(:disabled)::after {
  animation: shine 1.5s ease-out forwards;
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 200%;
    opacity: 0;
  }
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 34px rgba(75, 68, 224, 0.45);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(2px) scale(0.96);
  box-shadow: 0 4px 15px rgba(75, 68, 224, 0.3);
}

.btn-primary:disabled {
  background-color: #b1b5c3;
  color: #ffffff;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary-link {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-align: center;
  margin-top: 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.legal-footer {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 24px;
  line-height: 1.5;
}

.legal-footer a {
  color: var(--text-regular);
  text-decoration: underline;
}

/* =========================
   Loading & Modals
   ========================= */
.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 24px;
}

.loading-bar-container {
  width: 100%;
  background-color: var(--bg-main);
  height: 12px;
  border-radius: var(--radius-full);
  margin: 30px 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-neon));
  width: 0%;
  transition: width 0.3s linear;
  border-radius: var(--radius-full);
  position: relative;
}

.loading-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.loading-status {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.loading-checklist {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.checklist-item.active {
  color: var(--text-dark);
}

.checklist-item.done {
  color: var(--success);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 12px;
  transition: var(--transition);
}

.checklist-item.active .check-icon {
  border: 2px solid var(--primary);
  background: white;
}

.checklist-item.done .check-icon {
  background: var(--success);
  color: white;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 28, 32, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  width: 90%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.modal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-modal {
  padding: 16px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-modal:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* =========================
   Sales Page
   ========================= */
.sales-header {
  background: var(--bg-card);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.urgency-banner {
  background: #fff3e0;
  color: #e65100;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.metric-comparison {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-main);
}

.metric-side {
  flex: 1;
  text-align: center;
}

.metric-vs {
  font-weight: 700;
  color: var(--text-light);
  padding: 0 16px;
}

.metric-title {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.metric-value {
  font-weight: 700;
  font-size: 16px;
}

.metric-value.bad {
  color: var(--danger);
}

.metric-value.good {
  color: var(--success);
}

.pricing-plan {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.pricing-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.pricing-plan.popular {
  border-color: var(--warning);
  background: linear-gradient(to bottom, #fffaf0, #ffffff);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15);
}

.pricing-plan.popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.25);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.plan-daily {
  font-size: 14px;
  color: var(--text-light);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
}

.plan-old-price {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-plan.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
  z-index: 2;
}

.pricing-plan.popular.selected {
  border-color: var(--warning);
  background: #fff8e1;
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
  transform: scale(1.03);
  z-index: 2;
}

/* =========================
   Chart Container
   ========================= */
.chart-container {
  width: 100%;
  height: 250px;
  margin: 30px 0;
  position: relative;
  padding: 0 10px;
}

.chart-line-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-axis {
  stroke: var(--border-color);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

.chart-path {
  stroke: var(--primary);
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
}

.chart-point-start {
  fill: var(--danger);
  stroke: white;
  stroke-width: 3;
}

.chart-point-end {
  fill: var(--success);
  stroke: white;
  stroke-width: 3;
}

.chart-label {
  font-size: 12px;
  fill: var(--text-light);
  font-weight: 500;
  font-family: var(--font-body);
}

.chart-label.highlight {
  fill: var(--success);
  font-weight: 700;
  font-size: 14px;
}

.tech-compat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-light);
  font-size: 13px;
  text-align: center;
}

.tech-icon {
  font-size: 20px;
  color: var(--text-regular);
}

/* =========================
   Stage 1 Specific Styles
   ========================= */
.stage-1-layout {
  background: #fafbff;
  margin: 0 -24px 0 -24px;
  padding: 24px 24px 120px 24px;
  position: relative;
  overflow: hidden;
}

.stage-1-layout::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 140%;
  height: 50%;
  background: radial-gradient(
    ellipse at bottom,
    rgba(75, 68, 224, 0.08) 0%,
    rgba(200, 100, 255, 0.03) 60%,
    transparent 80%
  );
  z-index: 0;
  pointer-events: none;
}

.transition-title {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.transition-subtitle {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.stage-1-layout .logo {
  color: var(--primary);
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-1-layout h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #111827;
  letter-spacing: -0.3px;
}

.stage-1-layout .subtitle {
  font-size: 11px;
  color: #6b7280;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.trust-badges-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: -0.2px;
}

.trust-star {
  color: var(--success);
  margin-right: 4px;
}

.trust-divider {
  color: #e5e7eb;
  margin: 0 8px;
}

.stage-1-cards {
  gap: 14px;
  padding: 0;
}

.stage-1-cards .option-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stage-1-cards .option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stage-1-cards .option-card-img {
  height: 280px;
  object-position: top;
  background: #f4f6fb;
}

.options-grid.stage-1-cards .option-card-img {
  height: 280px;
}

.stage-1-cards .option-card-btn {
  background: var(--primary);
  color: white;
  border-top: none;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
}

.stage-1-layout .text-normal {
  font-size: 16px;
}

/* Rolemodel Grid Styles */
.rolemodel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 12px;
  padding: 20px 0;
}

.rolemodel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rolemodel-card:active {
  transform: scale(0.95);
}

.rolemodel-img-wrapper {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  position: relative;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rolemodel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rolemodel-check {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(75, 68, 224, 0.3);
  z-index: 2;
}

.rolemodel-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1c20;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Selected State */
.rolemodel-card.selected {
  transform: translateY(-8px);
}

.rolemodel-card.selected .rolemodel-img-wrapper {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(75, 68, 224, 0.25);
  transform: scale(1.1);
}

.rolemodel-card.selected .rolemodel-check {
  transform: scale(1);
}

.rolemodel-card.selected .rolemodel-name {
  color: var(--primary);
  font-weight: 800;
  transform: scale(1.05);
}

/* Hover effects for desktop */
@media (hover: hover) {
  .rolemodel-card:hover:not(.selected) {
    transform: translateY(-4px);
  }

  .rolemodel-card:hover:not(.selected) .rolemodel-img-wrapper {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
}

/* Individual pulse for important elements */
@keyframes rolemodelPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 68, 224, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(75, 68, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(75, 68, 224, 0);
  }
}

.rolemodel-card.selected .rolemodel-img-wrapper {
  animation: rolemodelPulse 2s infinite;
}

/* FAQ Accordion Styles */
.faq-accordion-item {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}

.faq-accordion-question {
  font-size: 16px;
  font-weight: 700;
  color: #1a1c20;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-accordion-icon {
  color: #9ca3af;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.faq-accordion-item.open .faq-accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-accordion-item.open .faq-accordion-question {
  color: var(--primary);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.faq-accordion-item.open .faq-accordion-body {
  max-height: 800px;
  padding: 0 24px 24px 24px;
}

.faq-accordion-body p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Transition Image Component Styles */
.transition-image-wrapper {
  position: relative;
  text-align: center;
  margin: 24px auto 32px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.transition-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(75, 68, 224, 0.7) 0%,
    rgba(75, 68, 224, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 20px;
  filter: blur(40px);
  pointer-events: none;
}

.transition-hero-image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  object-fit: cover;
}

/* Premium Text Card Styles */
.premium-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e5e7eb;
  color: var(--primary);
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(75, 68, 224, 0.1);
  margin-top: 10px;
  margin-bottom: 20px;
}

.premium-text-card {
  position: relative;
  background-color: transparent;
  margin-top: 20px;
  text-align: center;
}

.premium-card-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(75, 68, 224, 0.1) 0%,
    rgba(75, 68, 224, 0) 80%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 20px;
  filter: blur(25px);
  pointer-events: none;
}

.premium-card-content {
  background-color: white;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* Hemisphere Component Styles */
.hemisphere-image-wrapper {
  position: relative;
  text-align: center;
  margin: 30px 0 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hemisphere-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(75, 68, 224, 0.15) 0%,
    rgba(75, 68, 224, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(25px);
  pointer-events: none;
}

.hemisphere-img {
  width: 100%;
  max-width: 250px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: floatBrain 8s ease-in-out infinite;
}

@keyframes floatBrain {
  0% {
    transform: translateY(0px) scale(0.98);
  }
  50% {
    transform: translateY(-8px) scale(1);
  }
  100% {
    transform: translateY(0px) scale(0.98);
  }
}

.hemisphere-text-container {
  padding: 0 10px;
  margin-bottom: 30px;
}

.hemisphere-text-container p {
  font-size: 17px;
  line-height: 1.6;
  color: #1f2937;
  font-weight: 500;
  text-align: center;
  margin: 0;
  letter-spacing: -0.1px;
}

.hemisphere-text-container strong {
  color: #111827;
  font-weight: 800;
}
