:root {
  --ql-blue: #0033a0;
  --ql-blue-dark: #002080;
  --ql-gold: #c8a84b;
  --ql-gold-light: #f0d87a;
  --ql-starter: #2c6e49;
  --ql-starter-dark: #1e4d33;
  --ql-expired-bg: #f5e6e6;
}

.ql-hero {
  text-align: center;
  padding: clamp(1rem, 3vw, 2.5rem) 2rem;
}

.ql-headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.ql-packages {
  padding: clamp(1rem, 3vw, 2rem) 2rem;
  padding-bottom: 0;
}

.ql-package-card {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.ql-package-header {
  padding: 2rem 2rem 1.5rem;
  color: white;
}

.ql-header-starter {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.ql-package-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.ql-package-header h3 span {
  font-weight: 400;
  opacity: 0.85;
}

.ql-package-tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

.ql-package-body {
  padding: 1.5rem 2rem 2rem;
}

.ql-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.ql-features li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.ql-features li:last-child {
  border-bottom: none;
}

.ql-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.ql-cta-btn {
  display: block;
  text-align: center;
  background: var(--primary-color);
  box-shadow: 0 4px 6px rgba(var(--primary-color-rgb), 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.ql-cta-btn:visited {
  color: white;
}

.ql-cta-btn:hover {
  transform: translateY(-2px);
  background: var(--secondary-color);
  box-shadow: 0 6px 12px rgba(var(--primary-color-rgb), 0.4);
}

.ql-faq {
  padding: clamp(1rem, 3vw, 2rem) 2rem;
}

.section-header-faq h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.ql-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ql-faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  margin: 0;
  padding: 0;
}

.ql-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ql-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}

.ql-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.ql-faq-item p {
  padding: 0 1.25rem 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.ql-outcomes {
  padding: clamp(1rem, 3vw, 2rem) 2rem;
}

.ql-outcomes .section-header {
  margin-bottom: 0;
}

.ql-grid,
.ql-build-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
  margin: 2rem auto 0 auto;
}

.ql-outcome-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--primary-color);
}

.ql-outcome-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ql-outcome-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ql-outcome-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.ql-outcome-card ul li:last-child {
  border-bottom: none;
}

.ql-outcome-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
}

.ql-build-grid {
  gap: 1rem;
}

.ql-build-card {
  max-width: 256px;
}

.ql-outcomes-closer {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

.ql-outcomes-closer strong {
  color: var(--primary-color);
}
