/* Delta styles for Who Its For page */

/* Fix highlight color in section headers */
.hero h1 span,
.section-header h2 span,
.highlight-color {
    color: var(--primary-color);
}

/* Trades Section */
.trades-section {
    padding: 100px 0;
    background-color: white;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.trade-card {
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.trade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Colored accent bar at top */
.trade-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.trade-bg-1 {
    background-color: #F89B2D;
}

/* Primary */
.trade-bg-2 {
    background-color: #0C335F;
}

/* Secondary */
.trade-bg-3 {
    background-color: #3B82F6;
}

/* Blue */
.trade-bg-4 {
    background-color: #10B981;
}

/* Green */
.trade-bg-5 {
    background-color: #6366F1;
}

/* Indigo */
.trade-bg-6 {
    background-color: #EC4899;
}

/* Pink */

.trade-content {
    width: 100%;
}

.trade-icon {
    font-size: 64px !important;
    /* Larger icon */
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: block;
}

.trade-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.find-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.find-link span {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.find-link:hover span {
    transform: translateX(4px);
}

.find-link.blue {
    color: var(--secondary-color);
}

.see-all-container {
    margin-top: 48px;
    text-align: center;
}


/* Persona Section Adjustments */
.persona-section {
    padding: 100px 0;
}

.solopreneurs {
    background-color: white;
}

.companies {
    background-color: #f9fafb;
    border-top: 1px solid #E5E7EB;
}

/* Responsive Trades Grid */
@media (max-width: 1024px) {
    .trades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trades-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefit Blocks for Solopreneurs */
.benefit-block {
    padding-left: 24px;
}

.benefit-block.slow {
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2.5rem;
}

.benefit-block.busy {
    border-left: 4px solid var(--secondary-color);
}

/* Orange Fill Card for Companies Section */
.card-orange-fill {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.card-orange-fill * {
    color: white !important;
}

/* Remove border from tagline */
.no-border-tagline {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}