@charset "UTF-8";
/* ── SOLUTIONS HERO (DISTINCT FROM INDUSTRY PAGES) ── */
.solution-hero {
  padding: 60px 28px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background accent exclusively for solution pages */
.solution-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Premium Top Badge */
.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-med);
  color: var(--ink-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

/* Headline Overrides */
.solution-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.15;
}

.solution-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

/* The Star Divider */
.hero-star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 36px auto;
  max-width: 500px;
}

.hero-star-divider .line {
  flex: 1;
  height: 1px;
  /* Fades the line out at the edges for a clean look */
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
}

.hero-star-divider .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
}

/* Paragraph Overrides */
.solution-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 14px;
  text-wrap: balance;
}

/* Actions Area */
.solution-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.sh-trial-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sh-trial-text i {
  color: var(--green);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .solution-hero {
    padding: 60px 20px 40px;
  }
  .hero-star-divider {
    gap: 16px;
    margin: 28px auto;
  }
}
/* ── SPLIT SECTION (THE PROBLEM) ── */
.ind-split-section {
  position: relative;
  padding: 40px 0;
}

.ind-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Clean Text Formatting */
.ind-split-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ind-split-content p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── STACKED PROBLEM CARDS ── */
.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-dim); /* Neutral, elegant background */
  color: var(--red); /* Neutral, elegant icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.pc-text span {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ind-split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ind-split-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .ind-split-content h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .ind-split-grid {
    gap: 40px;
  }
  .problem-card {
    padding: 16px 20px;
    gap: 16px;
  }
  .problem-card:hover {
    transform: none; /* Disable hover shift on touch devices */
  }
}
/* ── STACKED VERTICAL TIMELINE (STEPS) ── */
.stacked-steps {
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  padding-left: 10px;
}

/* The vertical connecting line */
.stacked-steps::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 50px;
  left: 28px; /* Centers the line exactly under the numbers */
  width: 2px;
  background: var(--border);
  z-index: 0;
}

@media (max-width: 768px) {
  .stacked-steps::before {
    display: none;
  }
}
.st-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.st-step:last-child {
  margin-bottom: 0;
}

/* The Number Bubble */
.st-num {
  width: 38px;
  height: 38px;
  padding-left: 1px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px #fff; /* Creates a clean break in the vertical line */
}

/* Make the last checkmark gold for a nice finish */
.st-step:last-child .st-num {
  background: var(--gold);
  color: var(--ink);
}

.st-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--ink);
  margin-top: 6px; /* Aligns visually with the number */
}

.st-content p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ── STACKED FILTER SHOWCASE (CENTERPIECE) ── */
.stacked-showcase {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-header h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.showcase-header p {
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 500px;
  margin: 0 auto 24px;
}

.showcase-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tag-old {
  background: transparent;
  border-color: var(--border-med);
  color: var(--ink-3);
}

.tag-new {
  background: #fff;
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(245, 200, 66, 0.15);
}

/* Stacked Routing Cards */
.showcase-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}

/* Borrowing your existing fv-card styles but enforcing full width */
.fv-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.fv-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fv-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fv-icon.red {
  background: var(--red-dim);
  color: var(--red);
}

.fv-icon.grn {
  background: var(--green-dim);
  color: var(--green);
}

.fv-card-body {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0;
}

.fv-stars-neg {
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.fv-stars-pos {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.fv-route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}

.route-private {
  background: var(--mist);
  color: var(--ink-2);
}

.route-google {
  background: rgba(66, 133, 244, 0.1);
  color: #4285F4;
}

.text-muted {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .ind-split-content p {
    text-wrap: balance;
  }
  .stacked-steps {
    padding-left: 0;
  }
  .st-step {
    gap: 16px;
  }
  .st-num {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    box-shadow: 0 0 0 4px #fff;
    padding-top: 1px;
  }
  .stacked-showcase {
    padding: 20px 20px;
  }
  .fv-card {
    padding: 0;
  }
}/*# sourceMappingURL=styles_solutions.css.map */