/* Shared Landing Page Styles - Ensures Consistency Across All Pages */

/* Purple Hero Section - MUST be present on ALL landing pages */
.solution-page__hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.solution-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.solution-page__subtitle {
    font-size: 1.25rem;
    max-width: 800px;
 margin: 0 auto;
    opacity: 0.95;
}

/* Content Section */
.solution-page__content {
    padding: 4rem 0;
}

.solution-page__section {
    margin-bottom: 4rem;
}

.solution-page__section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.solution-page__section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
  margin-bottom: 1rem;
}

/* List Items with Checkmarks - FIX for question marks */
.solution-page__section ul {
    list-style: none;
 padding-left: 0;
}

.solution-page__section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
font-size: 1.125rem;
  line-height: 1.6;
}

/* Card Styles */
.solution-page__card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
  margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.solution-page__card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.solution-page__card p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.solution-page__cta {
    background: linear-gradient(135deg, #2f80ed 0%, #1a5fc4 100%);
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.solution-page__cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.solution-page__cta p {
color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
}

/* Consistent CTA Button Styling - matches Home page */
.home__btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #2f80ed;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 250ms ease-in-out;
    cursor: pointer;
    border: none;
}

.home__btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    color: #2f80ed;
}

.home__btn-cta:active {
  transform: translateY(0);
}

/* Icon inside CTA button */
.home__btn-icon {
    width: 24px;
    height: 24px;
    /* Blue color filter for #2f80ed */
    filter: brightness(0) saturate(100%) invert(46%) sepia(93%) saturate(1735%) hue-rotate(199deg) brightness(95%) contrast(89%);
}

/* Comparison Table */
.solution-page__comparison {
  width: 100%;
    border-collapse: collapse;
  margin: 2rem 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}

.solution-page__comparison th {
    background: #2f80ed;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.solution-page__comparison td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.solution-page__comparison tbody tr:hover {
    background: #f9fafb;
}

/* Steps/Numbered List */
.solution-page__steps {
counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.solution-page__steps li {
    counter-increment: step-counter;
    padding: 2rem;
padding-left: 4rem;
    margin-bottom: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 4px solid #2f80ed;
    position: relative;
}

.solution-page__steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: -1.5rem;
    top: 2rem;
    background: #2f80ed;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.solution-page__steps h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

/* Footer Styles */
.home__footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
}

.home__footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.home__footer-section h4 {
 font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ccd6f6;
}

.home__footer-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.home__footer-section a {
    color: #2f80ed;
    text-decoration: underline;
}

.home__footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #334155;
  margin-top: 2rem;
}

.home__footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Inline arrow icon for "becomes" transitions */
.inline-arrow-icon {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.4rem;
    /* Blue color filter for #2f80ed */
    filter: brightness(0) saturate(100%) invert(46%) sepia(93%) saturate(1735%) hue-rotate(199deg) brightness(95%) contrast(89%);
}

/* Responsive */
@media (max-width: 768px) {
    .solution-page__hero {
     padding: 3rem 0;
    }
    
    .solution-page__title {
        font-size: 2rem;
    }
    
    .solution-page__subtitle {
   font-size: 1.125rem;
    }
    
    .home__footer-grid {
        grid-template-columns: 1fr;
    }
}
