/* Procedure ver1 */

/* Hero */
.pv1-hero {
    background: linear-gradient(135deg, #182b38 0%, #2c4a5e 100%);
    padding: 56px 0 48px;
    text-align: center;
}
.pv1-hero-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.pv1-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.4;
}
.pv1-hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    margin: 0;
}

/* Section header */
.pv1-section-header {
    text-align: center;
    margin-bottom: 36px;
}
.pv1-section-label {
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.pv1-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2a3a;
    margin: 0;
}

/* Compare */
.pv1-compare {
    padding: 50px 0;
    background: #f5f6f8;
}
.pv1-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.pv1-compare-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.pv1-compare-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.pv1-compare-featured {
    border-color: #182b38;
    box-shadow: 0 4px 20px rgba(24,43,56,.12);
    position: relative;
}
.pv1-compare-header {
    padding: 28px 24px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
.pv1-compare-featured .pv1-compare-header {
    background: linear-gradient(135deg, #182b38, #2c4a5e);
}
.pv1-compare-featured .pv1-compare-title,
.pv1-compare-featured .pv1-compare-desc,
.pv1-compare-featured .pv1-compare-badge {
    color: #fff;
}
.pv1-compare-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: .1em;
    margin-bottom: 8px;
}
.pv1-compare-recommend {
    display: inline-block;
    background: #f0c040;
    color: #1a2a3a;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    margin-left: 6px;
}
.pv1-compare-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 6px;
}
.pv1-compare-title i {
    margin-right: 6px;
    font-size: 16px;
}
.pv1-compare-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
}
.pv1-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pv1-compare-list li {
    padding: 14px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}
.pv1-compare-list li:last-child {
    border-bottom: none;
}
.pv1-compare-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 2px;
}
.pv1-compare-list strong {
    color: #27ae60;
    font-size: 16px;
}
.pv1-compare-note {
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    color: #666;
}

/* Steps */
.pv1-steps {
    padding: 56px 0;
    background: #fff;
}
.pv1-steps-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.pv1-steps-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #182b38, #2c4a5e);
    border-radius: 1px;
}
.pv1-step-item {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
}
.pv1-step-item:last-child {
    padding-bottom: 0;
}
.pv1-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #182b38, #2c4a5e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(24,43,56,.2);
}
.pv1-step-body {
    padding-top: 10px;
}
.pv1-step-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 6px;
}
.pv1-step-body p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Features */
.pv1-features {
    padding: 56px 0;
    background: #f5f6f8;
}
.pv1-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.pv1-feature-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.pv1-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.pv1-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #182b38, #2c4a5e);
    color: #fff;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pv1-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 10px;
}
.pv1-feature-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.pv1-cta {
    padding: 56px 0;
    background: #fff;
}
.pv1-cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #182b38, #2c4a5e);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(24,43,56,.15);
}
.pv1-cta-card h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.pv1-cta-card p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin: 0 0 24px;
}

/* Responsive */
@media (max-width: 767px) {
    .pv1-hero { padding: 36px 16px; }
    .pv1-hero-title { font-size: 1.5rem; }
    .pv1-compare-grid { grid-template-columns: 1fr; }
    .pv1-features-grid { grid-template-columns: 1fr; }
    .pv1-compare, .pv1-steps, .pv1-features, .pv1-cta { padding: 36px 0; }
    .pv1-cta-card { padding: 28px 20px; }
    .pv1-cta-card h2 { font-size: 18px; }
}
