/* Page-specific styles */

/* Active nav link */
.nav-links a.active {
    background: #667eea;
    color: white;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Detailed Steps */
.detailed-steps {
    padding: 4rem 0;
}

.step-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-detail.reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    text-align: center;
}

.step-visual .step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step-badge {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.step-content {
    flex: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Timeline */
.timeline {
    padding: 4rem 0;
    background: white;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #667eea;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: #667eea;
}

.cta-section .btn:hover {
    background: #f0f0f0;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.store-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.store-logo {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.store-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.store-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.store-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e8f2ff;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.plan-period {
    color: #666;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #555;
}

.plan-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Download Page */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    margin: 1rem auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Support Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Search Bar */
.search-bar {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Legal Document Styles */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.document-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.document-meta p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.document-meta p:last-child {
    margin-bottom: 0;
}

.document-section {
    margin-bottom: 3rem;
}

.document-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.document-section h3 {
    color: #444;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.document-section p {
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.document-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.document-section li {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.document-section a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.document-section a:hover {
    border-bottom-color: #667eea;
}

.contact-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #444;
}

.contact-details strong {
    color: #333;
    font-weight: 600;
}

/* Table of Contents (if needed) */
.table-of-contents {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid #e0e0e0;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    color: #333;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Agreement Section Styles */
.agreement-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #667eea;
    margin-top: 2rem;
}

.agreement-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.agreement-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.agreement-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.agreement-option.agree {
    border-left: 4px solid #10b981;
}

.agreement-option.disagree {
    border-left: 4px solid #e74c3c;
}

.agreement-option.contact {
    border-left: 4px solid #667eea;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-icon {
    font-size: 1.5rem;
}

.option-header strong {
    font-size: 1.2rem;
    color: #333;
}

.agreement-option p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.agreement-btn {
    display: inline-block;
    min-width: 150px;
    text-align: center;
    margin-top: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.agreement-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.agreement-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* EULA Specific Styles */
.eula-intro {
    background: #e8f2ff;
    border: 2px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.eula-intro p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.acknowledgment-box {
    background: #f8f9fa;
    border: 2px solid #667eea;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.acknowledgment-box p {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.agreement-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.agreement-actions .btn {
    min-width: 180px;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Company Information Styling */
.contact-details p strong {
    color: #667eea;
    font-weight: 600;
}

/* Mobile Responsive for EULA */
@media (max-width: 768px) {
    .agreement-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .agreement-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .eula-intro {
        padding: 1rem;
    }
    
    .acknowledgment-box {
        padding: 1.5rem;
    }
}