﻿.hero-portal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 40%, rgba(255,255,255,0.15) 0%, transparent 50%),
                            radial-gradient(circle at 75% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-portal .container {
    position: relative;
    z-index: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-portal h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-portal h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.content-wrapper{
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
}

.portal-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.portal-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.portal-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.portal-card p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

.demo-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.demo-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.demo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.demo-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.btn-demo {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.feature-item:hover p {
    color: white;
}

.feature-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.policy-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #e74c3c;
    margin-bottom: 30px;
}

.policy-card h2 {
    color: #c53030;
    margin-bottom: 25px;
}

.policy-card h2::after {
    background: linear-gradient(90deg, #e74c3c 0%, #c53030 100%);
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-card ul li {
    font-size: 1.05rem;
    color: #742a2a;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.policy-card ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-card p {
    color: #742a2a;
    margin-bottom: 15px;
}

.trial-cta {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.trial-cta h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.trial-cta h2::after {
    background: white;
    left: 50%;
    transform: translateX(-50%);
}

.trial-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.btn-trial {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #38a169;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.btn-trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f7fafc;
}

.pricing-section {
    margin: 30px 0;
}

.table-container-software {
    overflow-x: auto;
    margin: 25px 0;
    border-bottom: 2px solid #ccc;
}

table.software {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table.software thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

table.software th {
    padding: 20px;
    text-align: left;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

table.software td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
    color: #495057;
}

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

table.software tbody tr:hover {
    background: #f8f9fa;
}

.checkout-card {
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #1890ff;
    text-align: center;
}

.checkout-card h2 {
    color: #0050b3;
    margin-bottom: 20px;
}

.checkout-card h2::after {
    background: linear-gradient(90deg, #1890ff 0%, #0050b3 100%);
    left: 50%;
    transform: translateX(-50%);
}

.pbs {
    max-width: 200px;
    margin: 20px 0;
}

.checkout-card p {
    font-size: 1.2rem;
    color: #0050b3;
    font-weight: 600;
    margin: 20px 0;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

@media (max-width: 768px) {
    .hero-portal {
        padding: 80px 20px 60px;
    }

    .portal-card {
        padding: 35px 25px;
    }

    .demo-section,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .trial-cta,
    .checkout-card {
        padding: 30px 20px;
    }

    table.software th,
    table.software td {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .portal-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    table.software th,
    table.software td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}