/* ═══════════════════════════════════════════════
   ExpoScheduler — Pricing Page Styles (Page-specific only)
   Excludes: root vars, base, nav, hamburger, mobile menu, footer, shared responsive
   ═══════════════════════════════════════════════ */

main { padding-top: 64px; }
section { padding: 6rem 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(73,53,181,0.45);
  background: rgba(73,53,181,0.12);
  color: #B0A0FF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.2; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.2; }
h3 { font-size: 1.3rem; }

.hero {
  text-align: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(73,53,181,0.22) 0%, transparent 65%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239,62,45,0.12) 0%, transparent 65%);
  bottom: 10%;
  right: 10%;
  pointer-events: none;
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 1.5rem auto;
  line-height: 1.7;
}

/* HERO PRICE BADGE */
.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.75rem;
  padding: 2rem 3rem 1.75rem;
  background: linear-gradient(135deg, rgba(73,53,181,0.18) 0%, rgba(239,62,45,0.10) 100%);
  border: 1px solid rgba(158,203,227,0.25);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.hero-price-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(158,203,227,0.35), rgba(73,53,181,0.25), rgba(239,62,45,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hpb-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.8;
  margin-bottom: 0.4rem;
}
.hpb-amount {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
.hpb-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  opacity: 0.75;
  padding-bottom: 0.6rem;
}
.hpb-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--red));
  border-radius: 2px;
  margin: 1rem auto;
}
.hpb-note {
  font-size: 0.82rem;
  color: var(--subtle);
  max-width: 340px;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.hpb-cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(239,62,45,0.3);
  text-decoration: none;
}
.hpb-cta:hover {
  background: #FF5544;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(239,62,45,0.45);
}

/* PLANS */
.plans-section { background: var(--lt-bg); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.plan-card {
  background: var(--lt-card);
  border: 1.5px solid var(--lt-border);
  border-radius: var(--rl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.plan-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.1); }
.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.plan-icon svg { width: 24px; height: 24px; fill: #fff; }
.pi-purple { background: var(--purple); }
.pi-red { background: var(--red); }
.plan-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--lt-text); margin-bottom: 0.4rem; }
.plan-tagline { font-size: 0.88rem; color: var(--lt-muted); margin-bottom: 1.75rem; line-height: 1.55; }
.plan-from { font-size: 0.78rem; color: var(--lt-muted); }
.plan-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lt-text);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.plan-num span { font-size: 1rem; font-weight: 500; color: var(--lt-muted); }
.plan-note { font-size: 0.75rem; color: var(--lt-muted); margin-bottom: 2rem; }
.plan-feats { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pf-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--lt-muted);
  line-height: 1.5;
}
.pf-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pf-check svg { width: 9px; height: 9px; }
.pf-c-purple { background: var(--purple); }
.pf-c-red { background: var(--red); }
.plan-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.plan-cta.out { border: 1.5px solid var(--lt-border); color: var(--lt-text); background: transparent; }
.plan-cta.out:hover { border-color: var(--purple); color: var(--purple); }
.plan-cta.fill-purple { background: var(--purple); color: #fff; border: 1.5px solid var(--purple); }
.plan-cta.fill-purple:hover { background: #5a44cc; border-color: #5a44cc; }
.plan-best-for {
  font-size: 0.8rem;
  color: var(--lt-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.75rem;
  background: rgba(73,53,181,0.06);
  border-left: 2px solid var(--purple);
  border-radius: 0 6px 6px 0;
}
.plan-best-for span { font-weight: 700; color: var(--purple); }
.plan-feats-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lt-muted);
  margin-bottom: 0.75rem;
}
.plan-footer-note {
  font-size: 0.78rem;
  color: var(--lt-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lt-border);
}
.plan-cta.fill { background: var(--red); color: #fff; border: 1.5px solid var(--red); }
.plan-cta.fill:hover { background: #FF5544; }
.premium-note {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.25rem 2rem;
  background: rgba(73,53,181,0.06);
  border: 1px solid rgba(73,53,181,0.15);
  border-radius: var(--r);
  font-size: 0.9rem;
  color: var(--lt-muted);
}
.premium-note strong { color: var(--purple); }

/* BUNDLE */
.bundle-row {
  max-width: 900px;
  margin: 1.5rem auto 0;
  background: var(--lt-text);
  border-radius: var(--rl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.bundle-left h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}
.bundle-left p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.bundle-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.bc {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.22rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.bundle-right { text-align: center; }
.bundle-right .br-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.bundle-right .br-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}
.bundle-right .br-note { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.btn-bundle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: #fff;
  color: var(--lt-text);
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-bundle:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.whats-included-section { background: var(--ink-2); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.included-column h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--blue);
}
.included-column ul { list-style: none; }
.included-column li {
  padding: 0.75rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.included-column li::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ADD-ONS */
.addons-section { background: var(--ink); }
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.addon-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.addon-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.addon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(73,53,181,0.3);
  border: 1px solid var(--purple);
  color: var(--purple);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.addon-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2rem;
  color: var(--white);
}

.addons-group-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  display: block;
  text-align: center;
  margin: 0 auto 1.25rem;
  width: fit-content;
}
.addons-group-label--scheduler {
  background: rgba(73,53,181,0.2);
  color: #B0A0FF;
  border: 1px solid rgba(73,53,181,0.35);
}
.addons-group-label--shared {
  background: rgba(158,203,227,0.12);
  color: var(--blue);
  border: 1px solid rgba(158,203,227,0.3);
}
.addon-desc {
  font-size: 0.82rem;
  color: rgba(244,244,252,0.55);
  line-height: 1.55;
  margin-top: 0.6rem;
}
.addon-card--shared { border-color: rgba(158,203,227,0.15); }
.addon-card--shared:hover { border-color: var(--blue); }
.addon-badge--shared { background: rgba(158,203,227,0.15); border-color: rgba(158,203,227,0.35); color: var(--blue); }
.addons-grid--three { grid-template-columns: repeat(3, 1fr); }

/* FAQ */
.faq-section { background: var(--ink-2); }
.faq-grid { max-width: 900px; margin: 3rem auto 0; }
details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: pointer;
}
summary {
  font-weight: 600;
  color: var(--white);
  outline: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
summary:hover { color: var(--blue); }
summary::after {
  content: '+';
  color: var(--purple);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: var(--blue); }
details p {
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* QUOTE FORM */
.quote-section { background: var(--lt-bg); color: var(--lt-text); padding: 7rem 5%; }
.quote-inner { max-width: 680px; margin: 0 auto; }
.quote-header { text-align: center; margin-bottom: 3rem; }
.quote-header .section-eyebrow { color: var(--purple); }
.quote-header h2 { color: var(--lt-text); font-size: clamp(2rem, 3.5vw, 2.8rem); }
.quote-header p { font-size: 1rem; color: var(--lt-muted); line-height: 1.75; margin-top: 0.75rem; }
.quote-form {
  background: var(--lt-card);
  border: 1px solid var(--lt-border);
  border-radius: var(--rl);
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(7,7,78,0.1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.82rem; font-weight: 600; color: var(--lt-text); }
.fg input, .fg select, .fg textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  background: var(--lt-bg);
  border: 1.5px solid var(--lt-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: var(--lt-text);
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--purple); }
.fg input::placeholder, .fg textarea::placeholder { color: #aaa; }
.fg textarea { resize: vertical; min-height: 90px; }
.fg.full { grid-column: 1 / -1; }
.form-submit-row { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: 0.78rem; color: var(--lt-muted); }
.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(239,62,45,0.35);
}
.btn-submit:hover {
  background: #FF5544;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(239,62,45,0.45);
}

/* PAGE-SPECIFIC RESPONSIVE */
@media (max-width: 930px) {
  .addons-grid--three { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .plans-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .addons-grid { grid-template-columns: 1fr; }
  .bundle-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 5rem 1.25rem; }
  .addons-grid--three { grid-template-columns: 1fr; }
}
