/* index.css — styles for the main marketing landing page (Index.cshtml, non-tenant view) */

.marketing-hero {
    padding: 5rem 1rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.marketing-hero .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0891b2;
    background: #ecf8ff;
    border-radius: 99px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
}

.marketing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    color: #1f2937;
}

.marketing-hero .lead {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.marketing-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.marketing-ctas .btn-primary-dark {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.marketing-ctas .btn-primary-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

.marketing-ctas .btn-outline-dark-mkt {
    background: white;
    color: #0891b2;
    border: 2px solid #bfdbfe;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.marketing-ctas .btn-outline-dark-mkt:hover {
    border-color: #0891b2;
    background: #f0f9ff;
}

.features-section {
    padding: 4rem 1rem;
    background: #f9fafb;
}

.features-section .section-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0891b2;
    margin-bottom: 0.5rem;
}

.features-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 3rem;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.steps-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
}

.steps-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 3rem;
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cta-section {
    padding: 5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.cta-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-section .btn-primary-dark {
    background: linear-gradient(135deg, #0891b2 0%, #0d9488 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-section .btn-primary-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

/* -- Subscribe button ---------------------------------------- */
.btn-subscribed {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1.5px solid #a5d6a7;
}

.btn-subscribed:hover {
    background: #ffebee;
    color: #c62828;
    border-color: #ef9a9a;
}
