/* ============================================
   TikTok Landing Page - SEO Sections
   Extends tiktok-download.css for hero section
   ============================================ */

/* ============================================
   Guide Section with Images
   ============================================ */

.tiktok-landing-content {
    background: #fff;
}

.landing-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.landing-section + .landing-section {
    border-top: 1px solid #f0f0f0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-paragraph {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Guide Steps */
.guide-steps-landing {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 32px;
}

.guide-step-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.guide-step-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guide-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4a90e2 0%, #10b981 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-step-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.guide-step-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.guide-step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 8px;
}

.guide-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8faf3 100%);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Hero image under input */
.hero-illustration {
    margin-top: 32px;
    text-align: center;
}

.hero-illustration img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Features / Advantages */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4a90e2 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #4a90e2 0%, #10b981 100%);
}

.comparison-table thead th {
    padding: 14px 16px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 12px 16px;
    color: #444;
    line-height: 1.5;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Reasons List */
.reasons-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.reasons-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.reasons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Disclaimer Section */
.disclaimer-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 28px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #92400e;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.disclaimer-box ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 15px;
    color: #92400e;
    line-height: 1.7;
}

.disclaimer-box ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #d97706;
    font-weight: 700;
}

/* Internal Links */
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.internal-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.internal-link-item:hover {
    background: #f0f7ff;
    border-color: #4a90e2;
    color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.internal-link-item i {
    font-size: 18px;
    color: #4a90e2;
    flex-shrink: 0;
}

.info-links-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.info-links-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.info-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.info-links-list a {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-links-list a:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}

.landing-footer-note {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-top: 16px;
    font-style: italic;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .landing-section {
        padding: 40px 20px;
    }

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

    .section-desc {
        font-size: 15px;
    }

    .guide-step-item {
        padding: 20px;
    }

    .guide-step-item h3 {
        font-size: 17px;
    }

    .feature-item {
        padding: 16px;
    }

    .faq-item {
        padding: 18px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table thead th,
    .comparison-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .landing-section {
        padding: 32px 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .guide-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .step-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
