﻿/* ========================================================================== */
/* Digital Platform Analyzer - Home Page Styles */
/* ========================================================================== */

/* Hero Section */
.analysis-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.analysis-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.analysis-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.analysis-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.analysis-hero-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

.analysis-cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.analysis-cta-primary:hover {
    background-color: #0052a3;
    color: white;
}

/* Platform Grid Section */
.platform-grid-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.platform-grid-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.platform-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px;
}

.platform-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.platform-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

.platform-logo-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f5f5f5;
    padding: 8px;
}

.platform-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.platform-rating-badge {
    display: inline-block;
    background-color: #e8f0ff;
    color: #0066cc;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.platform-rating-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.platform-features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.platform-action-btn {
    display: inline-block;
    background-color: #f0f0f0;
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.platform-action-btn:hover {
    background-color: #e0e0e0;
}

/* Information Sections */
.info-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    margin: 40px 0;
}

.info-section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.info-section-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.info-section-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 12px;
}

.info-section-content h3:first-child {
    margin-top: 0;
}

.info-section-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-section-content ul {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

.info-section-content ul li {
    margin-bottom: 8px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
    color: white;
    padding: 60px 20px;
    margin: 60px 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-button {
    padding: 12px 30px;
    background-color: white;
    color: #0066cc;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.newsletter-button:hover {
    background-color: #f0f0f0;
}

/* Evaluation Criteria Section */
.criteria-section {
    padding: 60px 20px;
    background-color: white;
}

.criteria-container {
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.criteria-card {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.criteria-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f0ff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0066cc;
    font-size: 24px;
}

.criteria-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.criteria-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Features & Tools Section */
.features-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff3cd;
    padding: 25px;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    max-width: 1000px;
    margin: 40px auto;
}

.disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

/* ========================================================================== */
/* New Sections - Why Choose, Categories, Guide, FAQ, Benefits, etc */
/* ========================================================================== */

/* Section Container and Title */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-choose-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Popular Categories Section */
.popular-categories-section {
    padding: 60px 20px;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    border-color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Guide Section */
.guide-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.guide-step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.guide-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.guide-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: white;
}

.faq-items {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f1f2;
}

.faq-item[open] .faq-question {
    background-color: #e8f0ff;
    color: #0066cc;
}

.faq-answer {
    padding: 20px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsible Use Section */
.responsible-use-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.responsible-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.responsible-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.responsible-checklist {
    list-style: none;
    padding: 0;
}

.responsible-checklist li {
    background-color: white;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Latest Updates Section */
.latest-updates-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.update-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.update-date {
    display: inline-block;
    background-color: #e8f0ff;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.update-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.update-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* User Experience Section */
.user-experience-section {
    padding: 60px 20px;
    background-color: white;
}

.ux-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.ux-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.ux-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ux-feature {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.ux-feature h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ux-feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: #e8f0ff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #0066cc;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .analysis-hero-title {
        font-size: 32px;
    }

    .analysis-hero-subtitle {
        font-size: 16px;
    }

    .analysis-hero-description {
        font-size: 15px;
    }

    .platform-grid-title,
    .section-title {
        font-size: 28px;
    }

    .info-section-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-description {
        font-size: 14px;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .platform-cards-container {
        grid-template-columns: 1fr;
    }

    .why-choose-grid,
    .categories-grid,
    .guide-steps,
    .benefits-grid,
    .updates-grid,
    .ux-features {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .analysis-hero {
        padding: 40px 15px;
    }

    .analysis-hero-title {
        font-size: 24px;
    }

    .analysis-hero-description {
        font-size: 14px;
    }

    .platform-grid-wrapper {
        margin: 40px auto;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .info-section {
        padding: 40px 15px;
    }

    .info-section-content {
        padding: 20px;
    }

    .why-choose-section,
    .popular-categories-section,
    .guide-section,
    .faq-section,
    .responsible-use-section,
    .benefits-section,
    .latest-updates-section,
    .user-experience-section {
        padding: 40px 15px;
    }

    .why-choose-card,
    .category-card,
    .guide-step,
    .update-card,
    .benefit-item,
    .ux-feature {
        padding: 20px;
    }

    .final-cta-section {
        padding: 50px 15px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .newsletter-section {
        padding: 30px 15px;
        margin: 30px 0;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-description {
        font-size: 13px;
    }

    .newsletter-input {
        min-width: auto;
    }
}
