/* ============================================
   Pages CSS — Pricing, Testimonials, About, Features, Demo
   ============================================ */

/* ============================================
   PRICING
   ============================================ */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem 3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.save-badge {
  background: var(--primary);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.6rem;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.toggle-switch {
  position: relative;
  width: 48px; height: 26px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #D4B483;
  border-radius: 26px;
  border: 1px solid rgba(200, 132, 26, 0.25);
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: rgba(200, 132, 26, 0.3); }
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--primary);
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: #D4B483;
  border: 1px solid rgba(200, 132, 26, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(230, 74, 25, 0.5);
  background: var(--surface-2);
  box-shadow: 0 0 80px rgba(200, 132, 26, 0.15), 0 20px 40px rgba(100, 60, 10, 0.15);
}
.most-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-header { margin-bottom: 1.5rem; }
.plan-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.plan-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.plan-desc { font-size: 0.9rem; color: var(--text-muted); }
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.currency {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.amount {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: 1px;
}
.custom-price .amount {
  font-size: 2.5rem;
  margin-top: 0.25rem;
}
.period {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}
.annual-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--tertiary);
  margin-bottom: 1.5rem;
}
.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check { color: var(--secondary); font-size: 0.7rem; margin-top: 0.2rem; flex-shrink: 0; }
.dim-feature { color: var(--text-dim); font-size: 0.7rem; margin-top: 0.2rem; flex-shrink: 0; }
.plan-features li:has(.dim-feature) { color: var(--text-dim); }

/* FAQ */
.faq-section {
  background: var(--surface);
  padding: 6rem 0;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(200, 132, 26, 0.18);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--secondary); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 0;
}
.faq-item.open .faq-a { padding-bottom: 1.5rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid rgba(200, 132, 26, 0.2);
  border-bottom: 1px solid rgba(200, 132, 26, 0.2);
}
.stats-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 3rem;
  flex: 1;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.testimonials-full { padding: 5rem 0 6rem; }
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonial-featured {
  background: #D4B483;
  border: 1px solid rgba(200, 132, 26, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 80px rgba(230, 74, 25, 0.06);
  position: relative;
}
.tf-quote {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 1rem; left: 2rem;
}
blockquote {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}
.tf-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tf-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}
.tf-author strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--secondary);
}
.tf-author span { font-size: 0.85rem; color: var(--text-dim); }

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-tile {
  background: #D4B483;
  border: 1px solid rgba(200, 132, 26, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-tile:hover { transform: translateY(-4px); border-color: rgba(230,74,25,0.2); }
.testimonial-tile.highlight-tile {
  border-color: rgba(200, 132, 26, 0.25);
  background: var(--surface-2);
}
.tile-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-tile p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tile-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tile-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: white;
  flex-shrink: 0;
}
.tile-author strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--secondary);
}
.tile-author span { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================
   ABOUT
   ============================================ */
.about-story {
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(200, 132, 26, 0.2);
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story-text .section-label { margin-bottom: 1rem; }
.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-story-text h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--secondary);
  font-size: 0.8em;
}
.about-story-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.mandala-card {
  background: #D4B483;
  border: 1px solid rgba(230, 74, 25, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0 80px rgba(230, 74, 25, 0.06);
}
.mc-symbol {
  font-size: 6rem;
  color: var(--primary);
  filter: drop-shadow(0 0 20px rgba(230, 74, 25, 0.4));
  margin-bottom: 1.5rem;
  display: block;
}
.mc-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.values-section {
  background: var(--surface);
  padding: 6rem 0;
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--primary);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(230, 74, 25, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   FEATURES FULL PAGE
   ============================================ */
.features-full { padding: 4rem 0 6rem; }
.features-full-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.feature-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(200, 132, 26, 0.2);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse {
  grid-template-columns: 1fr 120px;
}
.feature-row.reverse .feature-row-icon { order: 2; }
.feature-row-icon {
  font-size: 4rem;
  text-align: center;
  padding-top: 0.5rem;
}
.feature-row-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.feature-row-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-list li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-list li::before {
  content: '✦';
  color: var(--primary);
  font-size: 0.6rem;
}

/* ============================================
   DEMO PAGE
   ============================================ */
.demo-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}
.demo-left {
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 4rem;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.demo-left-inner { max-width: 500px; }
.demo-left-inner .page-hero-label { text-align: left; margin-bottom: 1rem; }
.demo-left-inner .page-hero-title { text-align: left; margin-bottom: 1.5rem; }
.demo-why {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.demo-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.dwi-icon {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.demo-why-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.demo-why-item span { font-size: 0.9rem; color: var(--text-muted); }

.demo-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}
.demo-form-card {
  width: 100%;
  max-width: 480px;
  background: #D4B483;
  border: 1px solid rgba(230, 74, 25, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(230, 74, 25, 0.06);
}
.demo-form-card h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.demo-form-card > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select {
  background: var(--surface);
  border: 1px solid rgba(200, 132, 26, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group select option { background: var(--surface); }
.form-success {
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(230, 74, 25, 0.15);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-muted); }

/* ============================================
   RESPONSIVE - PAGES
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .testimonials-masonry { grid-template-columns: 1fr 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-row-icon { order: 0; }
  .feature-row-icon { font-size: 3rem; }
  .demo-page { grid-template-columns: 1fr; }
  .demo-left { padding: 3rem 2rem; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { padding: 1rem 2rem; }
}
@media (max-width: 700px) {
  .testimonials-masonry { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  blockquote { font-size: 1.05rem; }
}
