/**
 * Payments & Pricing Page Styles
 * S1: Hero  S2: Payment Methods By Service  S3: Pricing Information
 * S4: Contact Form (reuses contact.css)
 */

/* ==========================================
   SECTION 1 — HERO
   ========================================== */

.pp-hero {
    padding: 96px 150px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.pp-hero-title {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize;
}

.pp-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   SECTION 2 — PAYMENT METHODS BY SERVICE
   ========================================== */

.pp-methods {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.pp-methods-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.pp-methods-grid {
    display: flex;
    flex-direction: row;
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 24px;
    gap: 1px;
    padding: 1px;
    width: 100%;
    box-sizing: border-box;
}

.pp-methods-card {
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.pp-methods-card:first-child {
    border-radius: 23px 0 0 23px;
}

.pp-methods-card:last-child {
    border-radius: 0 23px 23px 0;
}

.pp-methods-card-header {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.pp-methods-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 15428.6px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}

.pp-methods-card-icon svg {
    width: 24px;
    height: 24px;
}

.pp-methods-card-icon--bare {
    border: none;
    border-radius: 0;
    overflow: visible;
}

.pp-methods-card-icon--bare svg {
    width: 48px;
    height: 48px;
}

.pp-methods-card-icon .flag-svg {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
}

.pp-methods-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 29px;
    letter-spacing: -0.02em;
}

.pp-methods-card-items {
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: disc !important;
}

.pp-methods-item {
    display: list-item;
}

.pp-methods-item-label,
.pp-methods-item-desc {
    display: block;
}

.pp-methods-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2D1F1F;
    line-height: 1.5;
}

.pp-methods-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2D1F1F;
    line-height: 1.5;
}

/* ==========================================
   SECTION 3 — PRICING INFORMATION
   ========================================== */

.pp-pricing {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.pp-pricing-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pp-pricing-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 1.2;
}

.pp-pricing-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.pp-pricing-right {
    flex: 1;
    border: 1px solid #E0DCD3;
    border-radius: 24px;
    padding: 32px;
}

.pp-pricing-list {
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pp-pricing-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ========================================== */

@media (max-width: 767px) {

    /* S1 — Hero */
    .pp-hero {
        padding: 48px 24px;
        gap: 12px;
    }

    .pp-hero-title {
        font-size: 32px;
    }

    .pp-hero-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    /* S2 — Payment Methods By Service */
    .pp-methods {
        padding: 64px 20px;
        gap: 32px;
    }

    .pp-methods-title {
        font-size: 24px;
    }

    .pp-methods-grid {
        flex-direction: column;
        border-radius: 16px;
    }

    .pp-methods-card {
        padding: 20px;
    }

    .pp-methods-card:first-child {
        border-radius: 15px 15px 0 0;
    }

    .pp-methods-card:last-child {
        border-radius: 0 0 15px 15px;
    }

    .pp-methods-card-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .pp-methods-card-icon {
        width: 36px;
        height: 36px;
        border-width: 0.75px;
    }

    .pp-methods-card-icon--bare {
        border: none;
    }

    .pp-methods-card-icon--bare svg {
        width: 36px;
        height: 36px;
    }

    .pp-methods-card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .pp-methods-item-label {
        font-size: 14px;
    }

    .pp-methods-item-desc {
        font-size: 14px;
    }

    /* S3 — Pricing Information */
    .pp-pricing {
        padding: 64px 20px;
        flex-direction: column;
        gap: 32px;
    }

    .pp-pricing-title {
        font-size: 24px;
    }

    .pp-pricing-right {
        padding: 24px;
    }

    .pp-pricing-list {
        gap: 16px;
    }

    .pp-pricing-list li {
        font-size: 14px;
    }
}

/* ==========================================
   RESPONSIVE — TABLET (768px - 1023px)
   ========================================== */

@media (min-width: 768px) and (max-width: 1023px) {

    /* S1 — Hero */
    .pp-hero {
        padding: 80px 40px 48px;
    }

    .pp-hero-title {
        font-size: 48px;
    }

    /* S2 — Payment Methods By Service */
    .pp-methods {
        padding: 80px 40px;
    }

    .pp-methods-card {
        padding: 24px;
    }

    .pp-methods-card-title {
        font-size: 20px;
    }

    .pp-methods-item-label {
        font-size: 14px;
    }

    .pp-methods-item-desc {
        font-size: 14px;
    }

    /* S3 — Pricing Information */
    .pp-pricing {
        padding: 80px 40px;
        gap: 32px;
    }

    .pp-pricing-list li {
        font-size: 14px;
    }
}
