/* ============================================
   PAGES STYLES
   ============================================ */

a.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-small {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.hero-small h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-small p {
    font-size: 16px;
    opacity: 0.95;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 20px;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
}

.values-list strong {
    color: var(--primary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-size {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Comparison Table */
.comparison-table {
    margin-top: 50px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table-scroll {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

table th {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
}

table tr:hover {
    background: var(--bg-light);
}

table tr:last-child td {
    border-bottom: none;
}

.check-mark {
    color: #4caf50;
    font-weight: bold;
}

.cross-mark {
    color: #d32f2f;
}

/* ============================================
   RESPONSIVE PAGES
   ============================================ */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-small h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h3 {
        font-size: 24px;
    }

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .table-scroll {
        overflow-x: auto;
    }

    table th,
    table td {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-small h2 {
        font-size: 24px;
    }

    .about-content h3 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .pricing-size {
        font-size: 18px;
    }

    .pricing-price {
        font-size: 24px;
    }
}
