/* Platforms Page Specific Styles */

/* Platforms Hero Section */
.platforms-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.platforms-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platforms-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.platforms-hero .hero-subtitle {
    color: var(--text-gray);
}

.platforms-hero .feature-item span {
    color: var(--text-dark);
}

.platforms-hero .hero-cta .btn-secondary {
    color: var(--text-dark);
    border-color: var(--border-color);
}

.platforms-hero .hero-cta .btn-secondary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.platforms-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platforms-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

/* Platform Cards Section */
.platform-cards-section {
    padding: 80px 0;
    background: #ffffff;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.platform-card-large {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.platform-card-large:hover {
    box-shadow: 0 12px 30px rgba(0, 100, 250, 0.15);
    transform: translateY(-5px);
    border-color: rgb(0, 100, 250);
}

.platform-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.platform-logo-large {
    max-width: 200px;
    height: auto;
}

.platform-card-content {
    padding: 40px;
}

.platform-card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.platform-card-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.platform-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.platform-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.platform-features-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-downloads {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-downloads .btn-primary,
.platform-downloads .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Platform Comparison Section */
.platform-comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgb(0, 100, 250) 0%, rgb(0, 80, 200) 100%);
    color: #ffffff;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.table-logo {
    max-width: 80px;
    height: auto;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.3s;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* Trading Tools Section */
.trading-tools-section {
    padding: 80px 0;
    background: #ffffff;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    box-shadow: 0 12px 30px rgba(0, 100, 250, 0.1);
    transform: translateY(-5px);
    border-color: rgb(0, 100, 250);
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 100, 250, 0.1) 0%, rgba(0, 100, 250, 0.05) 100%);
    border-radius: 50%;
}

.tool-icon img {
    width: 40px;
    height: 40px;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tool-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tool-link {
    color: rgb(0, 100, 250);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.tool-link:hover {
    color: rgb(0, 80, 200);
}

/* Mobile Trading Section */
.mobile-trading-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mobile-trading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-trading-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mobile-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mobile-features {
    margin-bottom: 2rem;
}

.mobile-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.mobile-feature img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.mobile-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mobile-feature p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--text-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid var(--text-dark);
}

.app-btn:hover {
    background: rgb(0, 100, 250);
    border-color: rgb(0, 100, 250);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 100, 250, 0.3);
}

.app-icon {
    font-size: 2rem;
    width: 30px;
    text-align: center;
}

.app-btn small {
    font-size: 0.75rem;
    display: block;
    opacity: 0.8;
}

.app-btn strong {
    font-size: 1rem;
    display: block;
}

.mobile-trading-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-trading-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid rgb(0, 100, 250);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 100, 250, 0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platforms-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platforms-hero-text h1 {
        font-size: 2.5rem;
    }

    .platforms-hero-image {
        order: 2;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .mobile-trading-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-trading-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .platforms-hero {
        padding: 60px 0;
    }

    .platforms-hero-text h1 {
        font-size: 2rem;
    }

    .platform-cards-section,
    .platform-comparison-section,
    .trading-tools-section,
    .mobile-trading-section,
    .faq-section {
        padding: 60px 0;
    }

    .platform-card-header {
        padding: 30px;
        min-height: 150px;
    }

    .platform-logo-large {
        max-width: 150px;
    }

    .platform-card-content {
        padding: 30px 20px;
    }

    .platform-card-content h3 {
        font-size: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .mobile-trading-text h2 {
        font-size: 2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 0.9rem;
    }

    .table-logo {
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .platforms-hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .platform-downloads {
        flex-direction: column;
    }

    .platform-downloads .btn-primary,
    .platform-downloads .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .app-download-buttons {
        flex-direction: column;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-trading-text h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

