/* ==========================
   HERO
========================== */

.sp-hero {
  padding: 6rem 0 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 41, 0.18) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(146, 72, 30, 0.36) 0, transparent 60%);
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
  gap: 3.2rem;
  align-items: center;
}

.sp-hero-title {
  font-size: clamp(2.4rem, 3.1vw + 1.5rem, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sp-hero-title span {
  background: linear-gradient(135deg, #ffedd5, #ffb873, #ff7b29);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-hero-subtitle {
  max-width: 480px;
  font-size: 1rem;
  color: var(--sp-text-soft);
}

.sp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.4rem 0 1.1rem;
}

.sp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--sp-text-soft);
}

.sp-hero-bullets li::before {
  content: "• ";
  color: var(--sp-primary-strong);
}

.sp-hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.sp-hero-pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 121, 104, 0.5);
  background: radial-gradient(circle at top left, rgba(255, 123, 41, 0.25), #0b0707);
  color: var(--sp-text-muted);
}

/* Hero visual */

.sp-hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.sp-hero-card {
  margin: 0;
  padding: 1rem;
  border-radius: var(--sp-radius-xl);
  background: radial-gradient(circle at top, #231319 0, #0a0506 55%, #040204 100%);
  border: 1px solid rgba(92, 54, 40, 0.9);
  box-shadow: var(--sp-shadow-soft);
  position: relative;
  overflow: hidden;
}

.sp-hero-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top, rgba(255, 123, 41, 0.25), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.sp-hero-card img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: calc(var(--sp-radius-xl) - 0.5rem);
  border: 1px solid rgba(249, 168, 112, 0.35);
}

.sp-hero-card figcaption {
  position: relative;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--sp-text-muted);
}

/* ==========================
   STATS
========================== */

.sp-section-stats {
  padding: 3rem 0;
  background: var(--sp-bg);
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
}

.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.sp-stat-item {
  padding: 1.5rem;
  background: var(--sp-bg-secondary);
  border-radius: var(--sp-radius-lg);
  border: 1px solid var(--sp-border);
}

.sp-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sp-accent);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffedd5, #ffb873, #ff7b29);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-stat-label {
  font-size: 0.9rem;
  color: var(--sp-text-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================
   FEATURES
========================== */

.sp-section-features {
  background: linear-gradient(to bottom, #0a0506, #040103);
}

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.sp-feature-card {
  padding: 1.3rem 1.1rem;
  border-radius: var(--sp-radius-lg);
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  box-shadow: var(--sp-shadow-subtle);
  position: relative;
  overflow: hidden;
}

.sp-feature-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top, rgba(255, 123, 41, 0.2), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.sp-feature-card h3 {
  font-size: 1.05rem;
}

.sp-feature-card p {
  font-size: 0.9rem;
  color: var(--sp-text-soft);
}

.sp-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: radial-gradient(
    circle at top,
    rgba(255, 184, 122, 0.9),
    rgba(75, 32, 18, 0.9)
  );
  border: 1px solid rgba(255, 237, 213, 0.6);
}

.sp-feature-icon img {
  width: 18px;
  height: 18px;
}

.sp-feature-icon i {
  font-size: 18px;
  color: #fff;
}

/* ==========================
   HOW IT WORKS
========================== */

.sp-section-how {
  background: radial-gradient(circle at top left, #0b0507 0, #050203 55%);
}

.sp-how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.sp-steps-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.sp-steps-list li + li {
  margin-top: 0.9rem;
}

.sp-steps-list h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.sp-steps-list p {
  font-size: 0.9rem;
  color: var(--sp-text-soft);
}

.sp-how-flow-card {
  border-radius: var(--sp-radius-lg);
  padding: 1rem;
  background: radial-gradient(circle at top, #241015 0, #070305 70%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  box-shadow: var(--sp-shadow-soft);
  font-size: 0.9rem;
}

.sp-flow-step {
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  background: rgba(20, 9, 10, 0.95);
  border: 1px solid rgba(148, 120, 98, 0.6);
  margin-bottom: 0.4rem;
}

.sp-flow-meta {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--sp-text-muted);
}

/* ==========================
   ROADMAP OVERVIEW
========================== */

.sp-section-roadmap-overview {
  background: linear-gradient(to bottom, #0a0506, #040103);
}

.sp-roadmap-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sp-overall-progress {
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: var(--sp-radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sp-overall-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sp-overall-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sp-text);
}

.sp-overall-sub {
  font-size: 0.85rem;
  color: var(--sp-text-soft);
  margin-top: 0.25rem;
}

.sp-overall-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7b29;
}

.sp-progress {
  width: 100%;
}

.sp-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.sp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff7b29, #ffb873);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.sp-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--sp-text-soft);
}

.sp-roadmap-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sp-chip {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 123, 41, 0.3);
  border-radius: 999px;
  background: rgba(255, 123, 41, 0.1);
  color: #ffb873;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.sp-chip:hover {
  background: rgba(255, 123, 41, 0.2);
  border-color: rgba(255, 123, 41, 0.5);
}

.sp-chip.is-active {
  background: rgba(255, 123, 41, 0.9);
  color: #0b0b11;
  border-color: #ff7b29;
}

.sp-roadmap-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================
   TIMELINE
========================== */

.sp-section-timeline {
  background: radial-gradient(circle at top left, #0b0507 0, #050203 55%);
}

.sp-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.sp-column {
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.sp-column.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.sp-column-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 123, 41, 0.1), rgba(75, 32, 18, 0.1));
  border-bottom: 1px solid rgba(92, 54, 40, 0.5);
}

.sp-stage-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.sp-stage-now {
  background: rgba(255, 123, 41, 0.9);
  color: #0b0b11;
}

.sp-stage-next {
  background: rgba(255, 184, 122, 0.9);
  color: #0b0b11;
}

.sp-stage-later {
  background: rgba(148, 121, 104, 0.9);
  color: #0b0b11;
}

.sp-column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 0.25rem;
}

.sp-column-sub {
  font-size: 0.85rem;
  color: var(--sp-text-soft);
}

.sp-column-meter {
  margin-top: 1rem;
}

.sp-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sp-mini-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.sp-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff7b29, #ffb873);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.sp-mini-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff7b29;
  min-width: 35px;
  text-align: right;
}

.sp-items {
  padding: 0;
}

.sp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(92, 54, 40, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}

.sp-item:hover {
  background: rgba(255, 123, 41, 0.05);
}

.sp-item:last-child {
  border-bottom: none;
}

.sp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff7b29;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 123, 41, 0.5);
}

.sp-item-main {
  flex: 1;
  min-width: 0;
}

.sp-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.sp-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sp-text);
  line-height: 1.4;
}

.sp-item-date {
  font-size: 0.8rem;
  color: var(--sp-text-soft);
  flex-shrink: 0;
}

.sp-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.sp-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 123, 41, 0.1);
  color: #ffb873;
  border: 1px solid rgba(255, 123, 41, 0.2);
  font-weight: 500;
}

.sp-item-desc {
  font-size: 0.85rem;
  color: var(--sp-text-soft);
  line-height: 1.5;
  margin: 0;
}

.sp-item-right {
  flex-shrink: 0;
}

.sp-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--sp-text-soft);
}

.sp-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff7b29;
  cursor: pointer;
}

.sp-item-panel {
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(255, 123, 41, 0.02);
  border-top: 1px solid rgba(92, 54, 40, 0.3);
  margin: 0 -1.5rem -1.25rem;
}

.sp-item-panel ul {
  margin: 0;
  padding-left: 1.25rem;
}

.sp-item-panel li {
  font-size: 0.85rem;
  color: var(--sp-text-soft);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.sp-item-panel li:last-child {
  margin-bottom: 0;
}

/* Timeline responsive adjustments */
@media (max-width: 768px) {
  .sp-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sp-item {
    padding: 1rem;
  }

  .sp-item-panel {
    padding: 0.75rem 1rem 1rem;
    margin: 0 -1rem -1rem;
  }
}

/* ==========================
   AUTOMATION
========================== */

.sp-section-automation {
  background: radial-gradient(circle at top right, #0a0506 0, #050203 55%);
}

.sp-automation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.sp-automation-badge {
  grid-column: 1 / -1;
  justify-self: flex-start;
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 121, 104, 0.7);
  background: rgba(18, 9, 9, 0.95);
  color: var(--sp-text-muted);
  margin-bottom: 0.8rem;
}

.sp-automation-content p {
  font-size: 0.93rem;
}

.sp-automation-panel {
  justify-self: stretch;
}

.sp-usage-widget {
  border-radius: var(--sp-radius-lg);
  padding: 1rem 1.1rem;
  background: radial-gradient(circle at top, #241216 0, #090305 65%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  box-shadow: var(--sp-shadow-soft);
  font-size: 0.9rem;
}

.sp-usage-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--sp-text-soft);
}

.sp-usage-value {
  font-weight: 600;
  color: var(--sp-primary-strong);
}

.sp-usage-footnote {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--sp-text-muted);
}

/* ==========================
   PRICING
========================== */

.sp-section-pricing {
  background: linear-gradient(to bottom, #050203, #0a0605);
}

.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.sp-pricing-card {
  border-radius: var(--sp-radius-xl);
  padding: 1.6rem 1.4rem;
  background: radial-gradient(circle at top, #1c1011 0, #050304 60%);
  border: 1px solid var(--sp-border-subtle);
  box-shadow: var(--sp-shadow-subtle);
}

.sp-pricing-card-highlighted {
  border-color: rgba(255, 123, 41, 0.9);
  box-shadow: 0 20px 60px rgba(255, 123, 41, 0.5);
  position: relative;
  overflow: hidden;
}

.sp-pricing-card-highlighted::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 123, 41, 0.42), transparent 65%);
  opacity: 0.85;
  pointer-events: none;
}

.sp-pricing-card h3 {
  font-size: 1.1rem;
}

.sp-pricing-tagline {
  font-size: 0.86rem;
  color: var(--sp-text-muted);
  margin-bottom: 0.7rem;
}

.sp-pricing-price {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.sp-pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sp-text-muted);
}

.sp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--sp-text-soft);
}

.sp-pricing-features li + li {
  margin-top: 0.3rem;
}

.sp-pricing-guarantee {
  font-size: 0.8rem;
  color: var(--sp-accent);
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ==========================
   TESTIMONIALS
========================== */

.sp-section-testimonials {
  background: radial-gradient(circle at top left, #040203 0, #0a0506 60%);
}

.sp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.sp-testimonial-card {
  border-radius: var(--sp-radius-lg);
  padding: 1.3rem 1.2rem;
  background: rgba(18, 8, 8, 0.96);
  border: 1px solid rgba(92, 54, 40, 0.9);
  box-shadow: var(--sp-shadow-subtle);
}

.sp-testimonial-quote {
  font-size: 0.95rem;
}

.sp-testimonial-meta {
  font-size: 0.85rem;
  color: var(--sp-text-muted);
}

.sp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--sp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-testimonial-avatar i {
  font-size: 32px;
  color: var(--sp-accent);
}

.sp-testimonial-rating {
  color: #ffb873;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ==========================
   FAQ
========================== */

.sp-section-faq {
  background: radial-gradient(circle at bottom right, #050203 0, #0a0506 60%);
}

.sp-faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.sp-faq-item {
  border-radius: var(--sp-radius-md);
  border: 1px solid var(--sp-border-subtle);
  background: rgba(20, 10, 10, 0.95);
}

.sp-faq-question {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: none;
  background: none;
  color: var(--sp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left;
}

.sp-faq-question span:first-child {
  font-size: 0.92rem;
}

.sp-faq-toggle-icon {
  font-size: 1.1rem;
  color: var(--sp-text-muted);
}

.sp-faq-answer {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid rgba(92, 54, 40, 0.7);
  font-size: 0.88rem;
  color: var(--sp-text-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sp-faq-answer p {
  margin: 0;
}

/* ==========================
   FINAL CTA
========================== */

.sp-section-final-cta {
  background: radial-gradient(circle at center, #231215 0, #050203 70%);
  padding-bottom: 5rem;
}

.sp-final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sp-final-cta-inner p {
  font-size: 0.96rem;
  color: var(--sp-text-soft);
}

.sp-final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.sp-final-cta-note {
  font-size: 0.8rem;
  color: var(--sp-text-muted);
  margin-top: 1rem;
}

/* ==========================
   MODALS (AUTH)
========================== */


/* Forms */

.sp-form {
  display: grid;
  gap: 0.8rem;
}

.sp-form-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.sp-form-field span {
  color: var(--sp-text-soft);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sp-form-field span i {
  font-size: 1rem;
  color: var(--sp-primary, #ff7b29);
}

.sp-form-field input {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid var(--sp-border-subtle);
  background: rgba(18, 9, 9, 0.95);
  color: var(--sp-text);
  font: inherit;
}

.sp-form-field input:focus {
  outline: 1px solid var(--sp-primary);
  border-color: var(--sp-primary);
}

.sp-form-footnote {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--sp-text-muted);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 960px) {
  .sp-hero-grid {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .sp-hero-visual {
    order: -1;
    margin-bottom: 2.5rem;
  }

  .sp-hero-card {
    max-width: 480px;
    margin-inline: auto;
  }

  .sp-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-how-grid,
  .sp-automation-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .sp-hero {
    padding-top: 5rem;
  }

  .sp-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .sp-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-final-cta-buttons {
    flex-direction: column;
  }
}

/* ==========================
   CONTENT STYLING
========================== */

.sp-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.sp-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--sp-text);
  font-size: 1.5rem;
}

.sp-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--sp-text);
  font-size: 1.2rem;
}

.sp-content p {
  margin-bottom: 1rem;
  color: var(--sp-text-soft);
}

.sp-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--sp-text-soft);
}

.sp-content li {
  margin-bottom: 0.5rem;
}

/* ==========================
   SUPPORT PAGE
========================== */

.sp-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sp-support-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.sp-support-card h3 {
  margin-bottom: 1rem;
  color: var(--sp-text);
  font-size: 1.2rem;
}

.sp-support-card p {
  margin-bottom: 1rem;
  color: var(--sp-text-soft);
}

.sp-support-card ul {
  text-align: left;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.sp-support-card li {
  margin-bottom: 0.5rem;
}

.sp-support-contact {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.sp-support-contact h2 {
  margin-bottom: 1rem;
  color: var(--sp-text);
}

.sp-support-contact p {
  margin-bottom: 1rem;
  color: var(--sp-text-soft);
}

/* ==========================
   SITEMAP PAGE
========================== */

.sp-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sp-sitemap-section h2 {
  color: var(--sp-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--sp-border);
  padding-bottom: 0.5rem;
}

.sp-sitemap-list {
  list-style: none;
  padding: 0;
}

.sp-sitemap-list li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.sp-sitemap-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sp-primary);
  font-weight: bold;
}

.sp-sitemap-list a {
  color: var(--sp-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sp-sitemap-list a:hover {
  color: var(--sp-primary);
  text-decoration: underline;
}

.sp-sitemap-list li span {
  color: var(--sp-text-soft);
  font-size: 0.9rem;
  font-weight: normal;
}

.sp-sitemap-info {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.sp-sitemap-info h2 {
  margin-bottom: 1rem;
  color: var(--sp-text);
}

.sp-sitemap-info p {
  margin-bottom: 1rem;
  color: var(--sp-text-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sp-sitemap-info a {
  color: var(--sp-primary);
  font-weight: 500;
}

/* ==========================
   FOOTER BADGES
========================== */

.sp-footer-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--sp-bg-soft);
  color: var(--sp-text-soft);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .sp-footer-badges {
    justify-content: center;
    gap: 0.5rem;
  }

  .sp-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
  }
}

/* ==========================
   COOKIE BANNER
========================== */

.sp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--sp-bg-card) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-top: 2px solid var(--sp-primary);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  animation: slideUp 0.5s ease-out;
}

.sp-cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sp-cookie-inner p {
  margin: 0;
  color: var(--sp-text);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.sp-cookie-inner .sp-link {
  color: var(--sp-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sp-cookie-inner .sp-link:hover {
  color: var(--sp-primary-strong);
  text-decoration: underline;
}

.sp-cookie-banner .sp-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sp-cookie-banner .sp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .sp-cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .sp-cookie-inner p {
    font-size: 0.9rem;
  }

  .sp-cookie-banner {
    padding: 1rem 0;
  }
}

/* Scroll to top button */
.sp-scroll-to-top {
  width: 48px;
  height: 48px;
  background: var(--sp-accent, #ff7b29);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-left: auto;
}

.sp-scroll-to-top:hover {
  background: var(--sp-accent-hover, #e66a1f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sp-scroll-to-top .material-icons {
  font-size: 24px;
}

/* ==========================
   INTEGRATIONS
========================== */

.sp-section-integrations {
  background: linear-gradient(to bottom, #0a0506, #040103);
}

.sp-integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sp-integration-category {
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.sp-integration-category h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 1rem;
}

.sp-integration-category h3 .material-icons {
  color: var(--sp-primary);
  font-size: 1.2rem;
}

.sp-integration-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.sp-integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 123, 41, 0.1);
  transition: all 0.2s ease;
}

.sp-integration-item:hover {
  background: rgba(255, 123, 41, 0.1);
  transform: translateY(-2px);
}

.sp-integration-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sp-integration-item .material-icons {
  font-size: 40px;
  color: var(--sp-primary);
}

.sp-integration-item .material-icons {
  font-size: 40px;
  color: var(--sp-primary);
}

.sp-integration-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sp-text);
  text-align: center;
}

.sp-integrations-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 8px;
}

.sp-integrations-cta p {
  margin: 0;
  color: var(--sp-text-muted);
}

.sp-integrations-cta .sp-link {
  color: var(--sp-primary);
  font-weight: 600;
}

.sp-integrations-cta .sp-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sp-integrations-grid {
    grid-template-columns: 1fr;
  }

  .sp-integration-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .sp-integration-item {
    padding: 0.75rem;
  }

  .sp-integration-item img,
  .sp-integration-item .material-icons {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }

  .sp-integration-item span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sp-integration-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================
   SECURITY & COMPLIANCE
========================== */

.sp-section-security {
  background: radial-gradient(circle at top left, #0b0507 0, #050203 55%);
}

.sp-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sp-security-card {
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sp-security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sp-security-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff7b29 0%, #ff5722 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 32px;
}

.sp-security-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 1rem;
}

.sp-security-card p {
  color: var(--sp-text-muted);
  line-height: 1.6;
  margin: 0;
}

.sp-security-certifications {
  margin-top: 3rem;
  text-align: center;
}

.sp-security-certifications h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 2rem;
}

.sp-certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.sp-certification-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 123, 41, 0.1);
  border-radius: 8px;
  font-weight: 500;
  color: var(--sp-text);
}

.sp-certification-item .material-icons {
  color: #10b981;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .sp-security-grid {
    grid-template-columns: 1fr;
  }

  .sp-security-card {
    padding: 1.5rem;
  }

  .sp-security-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .sp-certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sp-certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   CONTACT & SUPPORT
========================== */

.sp-section-contact {
  background: radial-gradient(circle at top left, #040203 0, #0a0506 60%);
}

.sp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sp-contact-card {
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sp-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sp-contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff7b29 0%, #ff5722 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 32px;
}

.sp-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 1rem;
}

.sp-contact-card p {
  color: var(--sp-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sp-contact-link {
  display: inline-block;
  color: var(--sp-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sp-contact-link:hover {
  text-decoration: underline;
  color: var(--sp-primary-hover, #e55a1b);
}

.sp-contact-newsletter {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(circle at top left, #1e1113 0, #0a0506 55%);
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 12px;
}

.sp-contact-newsletter h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sp-text);
  margin-bottom: 1rem;
}

.sp-contact-newsletter p {
  color: var(--sp-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sp-newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.sp-newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(92, 54, 40, 0.95);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(10, 5, 6, 0.8);
  color: var(--sp-text);
}

.sp-newsletter-form input:focus {
  outline: 1px solid var(--sp-primary);
  border-color: var(--sp-primary);
  background: rgba(10, 5, 6, 0.9);
}

@media (max-width: 768px) {
  .sp-contact-grid {
    grid-template-columns: 1fr;
  }

  .sp-contact-card {
    padding: 1.5rem;
  }

  .sp-contact-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .sp-newsletter-form {
    flex-direction: column;
  }

  .sp-newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sp-scroll-to-top {
    width: 44px;
    height: 44px;
  }

  .sp-scroll-to-top .material-icons {
    font-size: 20px;
  }
}

/* ===============================
   ROADMAP TIMELINE SECTION
   =============================== */
.sp-section-timeline {
  background: linear-gradient(135deg, #0a0506 0%, #1e1113 50%, #0a0506 100%);
  padding: 4rem 0;
  position: relative;
}

.sp-section-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 123, 41, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 123, 41, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.sp-section-timeline .sp-container {
  position: relative;
  z-index: 1;
}

.sp-section-timeline .sp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sp-section-timeline .sp-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sp-text);
  margin-bottom: 1rem;
}

.sp-section-timeline .sp-section-header p {
  font-size: 1.1rem;
  color: var(--sp-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sp-section-timeline {
    padding: 3rem 0;
  }

  .sp-section-timeline .sp-section-header h2 {
    font-size: 2rem;
  }

  .sp-section-timeline .sp-section-header p {
    font-size: 1rem;
  }
}
