/* ===== HOW I WORK SECTION ===== */

.ptv-how-wrapper {
    padding: 80px 0;
    background: #fff8ee;
}

.ptv-how-heading-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.ptv-how-badge {
    display: inline-block;
    background: rgba(251, 169, 49, 0.15);
    color: var(--primary, #fba931);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ptv-how-heading {
    font-size: 36px;
    font-weight: 700;
    color: #590c19;
    margin-bottom: 16px;
}

.ptv-how-gradient {
    background: linear-gradient(90deg, var(--primary, #fba931), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ptv-how-subtitle {
    color: #590c19;
    font-size: 16px;
    line-height: 1.7;
}

.ptv-how-card {
    display: block;
    position: relative;
    background: #fff8ee;
    border: 1px solid rgba(251, 169, 49, 0.25);
    border-radius: 16px;
    padding: 36px 26px 28px 26px;
    height: 100%;
    text-align: center;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ptv-how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(251, 169, 49, 0.2);
    background: #fff;
}

.ptv-how-step-number {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 34px;
    font-weight: 700;
    color: rgba(251, 169, 49, 0.25);
}

.ptv-how-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(251, 169, 49, 0.12);
    font-size: 28px;
    color: var(--primary, #fba931);
    transition: background 0.35s ease, color 0.35s ease;
}

.ptv-how-card:hover .ptv-how-icon {
    background: var(--primary, #fba931);
    color: #fff;
}

.ptv-how-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--secondary, #3d422f);
    margin-bottom: 10px;
}

.ptv-how-card p {
    font-size: 14.5px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ptv-how-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary, #fba931);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .ptv-how-wrapper { padding: 55px 0; }
    .ptv-how-heading { font-size: 28px; }
    .ptv-how-card { padding: 30px 20px 24px 20px; }
}