/* Base custom utilities for Finance Star */
body { 
    background-color: #FAFAF9; 
    color: #1C1917; 
}

/* Homepage Hero Pattern */
.hero-pattern {
    background-color: #0F172A;
    background-image: radial-gradient(circle at 100% 0%, #1E293B 0%, transparent 40%),
                      radial-gradient(circle at 0% 100%, #1E293B 0%, transparent 40%);
}

/* Subpage Hero Pattern - slightly more subdued */
.subhero-pattern {
    background-color: #0F172A;
    background-image: linear-gradient(135deg, #020617 0%, #0F172A 100%);
}

/* Abstract Background Pattern for visual depth */
.bg-abstract-pattern {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 11px);
}

/* Journey Line Component */
.journey-line::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    bottom: -2rem;
    width: 2px;
    background-color: #E7E5E4;
    z-index: 0;
}

@media (min-width: 768px) {
    .journey-line::before { left: 2rem; }
}

/* Hide last line connecting to nothing */
.journey-step:last-child .journey-line::before { display: none; }

/* Comparison Table Defaults */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: #F5F5F4;
    text-align: left;
    font-weight: 600;
    color: #0F172A;
    padding: 1rem;
    border-bottom: 2px solid #E7E5E4;
}

.comparison-table td {
    padding: 1rem;
    vertical-align: top;
    border-bottom: 1px solid #E7E5E4;
    color: #292524;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}
