/**
 * Nexuraplant US Landing Page - Additional Styles
 * Extracted from inline styles for better maintainability
 */

/* =====================================================
   HERO SECTION - US VERSION
   ===================================================== */
.hero .hero-title,
.hero h1.hero-title {
    font-size: 2.275rem !important;
    font-weight: 600 !important;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.hero .hero-tagline {
    font-size: 1.7rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero .hero-title,
    .hero h1.hero-title {
        font-size: 1.8rem !important;
    }
    .hero .hero-tagline {
        font-size: 1.4rem;
    }
}

/* =====================================================
   HERO STATS - US VERSION
   ===================================================== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(8px);
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #cbd5e1, transparent);
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.5px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* =====================================================
   EARLY ADOPTER PROMO PRICING
   ===================================================== */
.pricing-card {
    position: relative;
}

.pricing-badge-promo {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.pricing-card.featured .pricing-badge-promo {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.pricing-amount {
    white-space: nowrap;
}

.price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.pricing-savings {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card.featured .pricing-savings {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-top: 1px solid #e2e8f0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: #4F46E5;
}

.trust-badge.featured {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.trust-badge.featured svg {
    color: white;
}

/* =====================================================
   PERFECT FOR SECTION
   ===================================================== */
.perfect-for-section {
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.perfect-for-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.perfect-for-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.perfect-for-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.perfect-for-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
}

.perfect-for-badge:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.perfect-for-badge svg {
    width: 18px;
    height: 18px;
    color: #4F46E5;
}

/* =====================================================
   USE CASES SECTION
   ===================================================== */
.use-cases-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 900px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.use-case-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem;
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.4;
}

.use-case-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =====================================================
   IMAGE GALLERY SECTION
   ===================================================== */
.image-gallery-section {
    padding: 5rem 0;
    background: #fff;
}

.image-gallery-section.alt {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 900px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover img {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-caption {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

/* =====================================================
   CTA IMAGE SECTION
   ===================================================== */
.cta-image-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 800px) {
    .cta-image-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-image-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.cta-image-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: #334155;
    font-weight: 500;
}

@media (max-width: 800px) {
    .cta-benefits {
        display: inline-block;
        text-align: left;
    }
}

.cta-benefits li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-image-visual {
    text-align: center;
}

.cta-image-visual img {
    max-width: 350px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* =====================================================
   RHETORICAL QUESTIONS SECTION
   ===================================================== */
.questions-section {
    padding: 5rem 0;
    background: #fff;
}

.questions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.questions-header span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    color: #4F46E5;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.questions-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin: 0;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.question-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.question-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #c7d2fe;
}

.question-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.question-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.question-subtext {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 1.5rem;
    }
    .trust-badge {
        font-size: 0.85rem;
    }
    .questions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRICING BUTTON STYLES
   ============================================ */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    margin: 1.25rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.pricing-btn-featured {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
    border: none;
}

.pricing-btn-featured:hover {
    background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
    color: #fff;
    transform: translateY(-1px);
}

/* Kleinere Preise für bessere Darstellung */
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.price-original {
    font-size: 1.125rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.per-month {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}
