/* Hero Section - Left Aligned */
.header-pro {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.header-content-pro {
    max-width: 700px;
}

.headline-pro {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.subheadline-pro {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.7;
}

.header-actions-pro {
    display: flex;
    gap: 1rem;
}

/* Features - Timeline */
.features-pro {
    padding: 60px 0;
    background: #fff;
}

.timeline-pro {
    position: relative;
    padding-left: 2rem;
}

.timeline-pro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.node-pro {
    position: relative;
    padding: 1.5rem 0 2rem 2rem;
    border-left: 1px solid #e2e8f0;
}

.node-pro::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: #1e40af;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #1e40af;
}

.node-pro:last-child {
    border-left: none;
}

.node-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #1e40af;
    color: #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 32px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.node-pro h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.node-pro p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.node-icon-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 2px;
    font-size: 0.85rem;
    color: #475569;
}

.node-icon-pro img {
    width: 20px;
}

/* Security */
.trust-pro {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-content-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-text-pro h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.trust-text-pro > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trust-badges-pro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
}

.badge-pro img {
    width: 24px;
}

.badge-pro span {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
}

/* Use Cases - Table */
.cases-pro {
    padding: 60px 0;
    background: #fff;
}

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

.table-pro th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-pro td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.table-pro tr:hover td {
    background: #f8fafc;
}

.table-pro td:first-child {
    font-weight: 600;
    color: #1e293b;
    width: 200px;
}

.table-pro td:last-child {
    color: #64748b;
}

.table-icon-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.table-icon-pro img {
    width: 20px;
}

/* CTA */
.banner-pro {
    padding: 60px 0;
    background: repeating-linear-gradient(
        45deg,
        #1e40af,
        #1e40af 10px,
        #1e3a8a 10px,
        #1e3a8a 20px
    );
    text-align: left;
}

.banner-content-pro {
    max-width: 600px;
}

.banner-content-pro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.banner-content-pro p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .headline-pro {
        font-size: 1.6rem;
    }

    .trust-content-pro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .table-pro {
        font-size: 0.85rem;
    }

    .table-pro th,
    .table-pro td {
        padding: 0.75rem 0.5rem;
    }

    .banner-pro {
        text-align: center;
    }

    .banner-content-pro {
        max-width: 100%;
    }
}
