/* ─── GLOBAL ─── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }


/* ═══════════════════════════════════════════════════════════
   FEATURED Template
   ═══════════════════════════════════════════════════════════ */

body.page-featured {
  background: #13141c;
}

body.page-featured .lp-outer {
  background: #13141c;
  color: #fff;
}

/* ─── buttons ─── */
.btn-primary {
  background: #b6ff57;
  color: #13141c;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid #3a3c4a;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: #7a7d90; }

/* ─── section 1: hero ─── */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b6ff57;
  margin-bottom: 20px;
}

.hero__heading {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero__heading .accent {
  color: #b6ff57;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── section 2 / 6: features (light) ─── */
.features {
  background: #fff;
  color: #111;
  padding: 90px 20px;
}

.features__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.features__intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.features__intro p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row--reverse { flex-direction: row-reverse; }

.feature-row__text { flex: 1; }

.feature-row__icon {
  width: 40px;
  height: 40px;
  background: #ede9fe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-row__icon svg {
  width: 20px;
  height: 20px;
  stroke: #7c3aed;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-row__text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #111;
}

.feature-row__text p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
}

.feature-row__mockup {
  flex: 1;
  border-radius: 14px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mockup-inner {
  width: 100%;
  padding: 24px;
}

.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}

.mockup-bar span:nth-child(1) { background: #f87171; }
.mockup-bar span:nth-child(2) { background: #fbbf24; }
.mockup-bar span:nth-child(3) { background: #34d399; }

.mockup-lines { display: flex; flex-direction: column; gap: 8px; }

.mockup-line {
  height: 10px;
  border-radius: 4px;
  background: #e5e7eb;
}

.mockup-line--dark { background: #d1d5db; width: 70%; }
.mockup-line--short { width: 45%; }
.mockup-line--med { width: 85%; }

.mockup-bubble {
  background: #7c3aed;
  border-radius: 10px 10px 10px 2px;
  padding: 10px 14px;
  margin: 12px 0 8px;
  width: fit-content;
  max-width: 80%;
}

.mockup-bubble .mockup-line { background: rgba(255,255,255,0.6); }

@media (max-width: 680px) {
  .feature-row,
  .feature-row--reverse {
    flex-direction: column;
  }
}

/* ─── section 3: three-column band ─── */
.band {
  background: #f3f4f6;
  padding: 60px 20px;
}

.band__inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.band__col {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.band__col + .band__col {
  border-left: 1px solid #e5e7eb;
}

.band__col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.band__col p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .band__inner { flex-direction: column; gap: 32px; }
  .band__col + .band__col { border-left: none; border-top: 1px solid #e5e7eb; padding-top: 32px; }
}

/* ─── section 4: features (dark) ─── */
.features-dark {
  background: #13141c;
  color: #fff;
  padding: 90px 20px;
}

.features-dark .features__intro h2 { color: #fff; }
.features-dark .features__intro p  { color: #9ca3af; }

.features-dark .feature-row__text h3 { color: #fff; }
.features-dark .feature-row__text p  { color: #9ca3af; }

.features-dark .feature-row__icon {
  background: #1e2030;
}


.features-dark .mockup-line        { background: #2a2d3e; }
.features-dark .mockup-line--dark  { background: #353849; }
.features-dark .mockup-bubble      { background: #7c3aed; }

/* ─── section 5: cta banner ─── */
.cta-banner {
  background: #5b4de8;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

/* ─── section 7: faq ─── */
.faq {
  background: #f1f5f9;
  padding: 90px 20px;
}

.faq__heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #111;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.2;
}

.faq__list {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid #f3f4f6;
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq__question:hover,
.faq__question:active,
.faq__question:focus { background: #fafafa; color: #111; }

.faq__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

.faq__item.is-open .faq__answer { display: block; }

/* ─── section 8: closing cta ─── */
.closing-cta {
  background: #13141c;
  padding: 100px 20px;
  text-align: center;
}

.closing-cta__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-cta__heading .accent { color: #b6ff57; }

.closing-cta__sub {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 36px;
}

.closing-cta__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-cta__link:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════════
   SHORTLIST Template
   ═══════════════════════════════════════════════════════════ */

body.page-shortlist {
  background: #f8fafc;
  color: #0f172a;
}

/* ─── section 1: hero ─── */
.sl-hero-wrap {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.sl-hero {
  text-align: center;
  padding: 80px 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.sl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c2410c;
  background: #fff7ed;
  margin-bottom: 36px;
}

.sl-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea580c;
  flex-shrink: 0;
}

.sl-hero__heading {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0f172a;
  margin-bottom: 28px;
}

.sl-accent { color: #2563eb; }

.sl-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 40px;
}

.sl-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.sl-btn-primary {
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.sl-btn-primary:hover { background: #1e40af; }

.sl-btn-secondary {
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  text-decoration: none;
  transition: border-color 0.2s;
}

.sl-btn-secondary:hover { border-color: #94a3b8; }

.sl-hero__stats {
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
  display: flex;
  justify-content: center;
}

.sl-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.sl-stat + .sl-stat { border-left: 1px solid #e2e8f0; }

.sl-stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.sl-stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

@media (max-width: 600px) {
  .sl-hero__stats { flex-direction: column; gap: 32px; }
  .sl-stat + .sl-stat { border-left: none; border-top: 1px solid #e2e8f0; padding-top: 32px; }
}

/* ─── section 2: challenge ─── */
.sl-challenge-wrap {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sl-challenge {
  padding: 100px 20px;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.sl-challenge__left { flex: 0 0 340px; }

.sl-challenge__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}

.sl-challenge__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.sl-challenge__body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.75;
}

.sl-challenge__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sl-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.sl-card__icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sl-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sl-card__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .sl-challenge { flex-direction: column; gap: 48px; }
  .sl-challenge__left { flex: none; }
}

/* ─── section 3: focus areas ─── */
.sl-focus-wrap {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sl-focus {
  padding: 80px 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.sl-focus__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}

.sl-focus__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
  max-width: 700px;
}

.sl-focus__body {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 48px;
}

.sl-focus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sl-focus-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px;
}

.sl-focus-card__num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #bfdbfe;
  margin-bottom: 16px;
  line-height: 1;
}

.sl-focus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sl-focus-card__text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .sl-focus__grid { grid-template-columns: 1fr; }
}

/* ─── section 4: form ─── */
.sl-form-section-wrap {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sl-form-section {
  padding: 80px 20px;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.sl-form-section__left { flex: 0 0 340px; }

.sl-form-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}

.sl-form-section__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.sl-form-section__body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 36px;
}

.sl-form-section__bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sl-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sl-bullet__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-bullet__icon svg {
  width: 22px;
  height: 22px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sl-bullet__text {
  font-size: 0.9rem;
  color: #475569;
}

/* form card */
.sl-form-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
}

.sl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.sl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.sl-field:last-of-type { margin-bottom: 0; }

.sl-field__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #374151;
}

.sl-field__input,
.sl-field__select,
.sl-field__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0f172a;
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.sl-field__input:focus,
.sl-field__select:focus,
.sl-field__textarea:focus { border-color: #2563eb; }

.sl-field__input::placeholder,
.sl-field__textarea::placeholder { color: #94a3b8; }

.sl-field__select { appearance: none; cursor: pointer; color: #94a3b8; }
.sl-field__select.has-value { color: #0f172a; }

.sl-select-wrap {
  position: relative;
}

.sl-select-wrap svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.sl-field__textarea {
  resize: vertical;
  min-height: 110px;
}

.sl-form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.sl-form-submit:hover { background: #1e40af; }

@media (max-width: 860px) {
  .sl-form-section { flex-direction: column; gap: 48px; }
  .sl-form-section__left { flex: none; }
}

@media (max-width: 480px) {
  .sl-field-row { grid-template-columns: 1fr; }
}

/* ─── section 5: process ─── */
.sl-process-wrap {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sl-process {
  padding: 80px 20px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.sl-process__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}

.sl-process__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0f172a;
  margin-bottom: 56px;
}

.sl-process__steps {
  display: flex;
  align-items: flex-start;
}

.sl-process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}

.sl-step__connector {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.sl-step__line {
  flex: 1;
  height: 1px;
  background: #cbd5e1;
}

.sl-process__step:first-child .sl-step__line:first-child,
.sl-process__step:last-child  .sl-step__line:last-child {
  background: transparent;
}

.sl-step__circle {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2563eb;
}

.sl-step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.sl-step__text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .sl-process__steps { flex-direction: column; align-items: center; gap: 32px; }
  .sl-step__connector { width: auto; }
  .sl-step__line { display: none; }
  .sl-process__step { max-width: 320px; }
}

/* ─── section 6: for vendors ─── */
.sl-vendors {
  padding: 80px 20px;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sl-vendors__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
}

.sl-vendors__heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.sl-vendors__body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 36px;
}
