/**
 * Homepage-Specific Styles
 * Styles unique to index.html that don't apply to other marketing pages
 * Standard CSS (no @apply directives)
 * Target: ~300 lines
 */

/* ========================================
   PERSONA SECTION DETAILS
   ======================================== */

.persona-detail-section {
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
}

.persona-detail-section:nth-child(even) {
    background-color: #f9fafb;
}

.persona-detail-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.persona-detail-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.persona-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 768px) {
    .persona-detail-title {
        font-size: 1.875rem;
    }
}

.persona-detail-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.persona-challenges {
    margin-bottom: 2rem;
}

.persona-challenges-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.persona-challenges-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.persona-challenge-item {
    display: flex;
    align-items: flex-start;
}

.persona-challenge-item svg {
    height: 1.25rem;
    width: 1.25rem;
    color: #ef4444;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.persona-solutions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.persona-solution-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.persona-solution-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #dcfce7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.persona-solution-icon svg {
    color: #16a34a;
}

.persona-solution-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.persona-solution-content p {
    color: #4b5563;
    font-size: 0.875rem;
}

/* ========================================
   PROBLEM/SOLUTION SECTIONS
   ======================================== */

.problem-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.problem-headline {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .problem-headline {
        font-size: 2.25rem;
    }
}

.problem-description {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.solution-section {
    padding: 4rem 0;
}

.solution-columns {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .solution-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.solution-column {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.75rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    transition: all 0.2s;
}

.solution-column:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border-color: #bfdbfe;
}

.solution-column-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-column-content {
    flex: 1;
    padding-left: 1.5rem;
    border-left: 2px solid #e5e7eb;
}

.solution-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.solution-column-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-column-list li {
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    font-size: 0.9375rem;
}

.solution-column-list li:before {
    content: "•";
    color: #2563eb;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ========================================
   FEATURES PREVIEW (Homepage)
   ======================================== */

.features-preview-section {
    padding: 4rem 0;
    margin-top: 4rem;
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
}

.features-preview-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .features-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-preview-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.feature-preview-card:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border-color: #93c5fd;
}

.feature-preview-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-preview-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.feature-preview-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.feature-preview-description {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.feature-preview-link {
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.feature-preview-link:hover {
    color: #1d4ed8;
}

/* ========================================
   PRICING TEASER (Homepage)
   ======================================== */

.pricing-teaser-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-teaser-content {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-value-prop {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-value-prop {
        font-size: 3rem;
    }
}

.pricing-features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
}

.pricing-feature-item svg {
    height: 1.25rem;
    width: 1.25rem;
    color: #22c55e;
    margin-right: 0.5rem;
}

/* ========================================
   TRUST SECTION (Homepage)
   ======================================== */

.trust-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.trust-principles {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .trust-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.trust-principle {
    display: flex;
    align-items: flex-start;
}

.trust-principle-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.trust-principle-icon svg {
    color: #2563eb;
}

.trust-principle-content h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.trust-principle-content p {
    color: #4b5563;
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .persona-detail-title {
        font-size: 1.25rem;
    }

    .persona-detail-quote {
        font-size: 1.125rem;
    }

    .problem-headline {
        font-size: 1.5rem;
    }

    .pricing-value-prop {
        font-size: 1.875rem;
    }
}
