/* ============================================
   EMITRUST HOW TO PAY — css/how-to-pay.css
   Brand: ink #0D0D0D, teal #06AAC5, off #F5F5F3
   ============================================ */

/* ============================================
   PAGE HERO
   ============================================ */
.htp-hero {
    background: #0D0D0D;
    padding: 4rem 0;
    position: relative;
}

.htp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #06AAC5;
}

.htp-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #06AAC5;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(6,170,197,0.3);
    padding: 0.3rem 0.875rem;
    margin-bottom: 1rem;
}

.htp-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.htp-hero p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.htp-content { padding: 4rem 0; background: #F5F5F3; }

/* ============================================
   SECTION TITLES
   ============================================ */
.htp-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9A9A9A;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E8E8E5;
}

.htp-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0D0D0D;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.htp-sub {
    font-size: 0.875rem;
    color: #9A9A9A;
    margin-bottom: 2rem;
}

/* ============================================
   PAYMENT METHOD CARDS
   ============================================ */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.payment-card {
    background: white;
    border: 1px solid #E8E8E5;
    padding: 2rem;
    position: relative;
}

.payment-card.featured {
    border-color: #06AAC5;
    border-width: 2px;
}

.payment-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #06AAC5;
    color: white;
    padding: 0.2rem 0.6rem;
}

.payment-card-icon {
    width: 48px;
    height: 48px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #06AAC5;
    margin-bottom: 1.25rem;
}

.payment-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 0.3rem;
}

.payment-card .card-tagline {
    font-size: 0.8rem;
    color: #9A9A9A;
    margin-bottom: 1.75rem;
}

.card-tagline strong { color: #06AAC5; }

/* ============================================
   STEPS
   ============================================ */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #F5F5F3;
}

.step-item:last-child { border-bottom: none; }

.step-num {
    width: 28px;
    height: 28px;
    background: #06AAC5;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D0D0D;
    margin-bottom: 0.15rem;
}

.step-body small {
    font-size: 0.78rem;
    color: #9A9A9A;
    line-height: 1.5;
}

/* ============================================
   INFO BOXES
   ============================================ */
.info-box {
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    line-height: 1.6;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-box i { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.info-box ul {
    margin: 0.4rem 0 0 0;
    padding-left: 1rem;
}

.info-box ul li { margin-bottom: 0.2rem; }

.info-box.tip {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.info-box.warning {
    background: #fef9ec;
    border: 1px solid #fde68a;
    color: #b45309;
}

.info-box.info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { margin-bottom: 3rem; }

.faq-item {
    background: white;
    border: 1px solid #E8E8E5;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}

.faq-item:hover { border-color: #06AAC5; }

.faq-question {
    font-family: 'Syne', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i { color: #06AAC5; font-size: 0.875rem; }

.faq-answer {
    font-size: 0.85rem;
    color: #5A5A5A;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SUPPORT STRIP
   ============================================ */
.support-strip {
    background: #0D0D0D;
    padding: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.support-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #06AAC5;
}

.support-strip h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.support-strip p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
}

.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.support-channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-channel-icon {
    width: 36px;
    height: 36px;
    background: rgba(6,170,197,0.15);
    border: 1px solid rgba(6,170,197,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06AAC5;
    font-size: 1rem;
    flex-shrink: 0;
}

.support-channel-text strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1px;
}

.support-channel-text a {
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.support-channel-text a:hover { color: #06AAC5; }

/* ============================================
   CTA BANNER
   ============================================ */
.htp-cta {
    background: white;
    border: 1px solid #E8E8E5;
    padding: 2.5rem;
    text-align: center;
}

.htp-cta h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0D0D0D;
    margin-bottom: 0.5rem;
}

.htp-cta p {
    font-size: 0.875rem;
    color: #9A9A9A;
    margin-bottom: 1.5rem;
}

.btn-htp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0D0D0D;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.btn-htp-cta:hover { background: #06AAC5; color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .htp-hero     { padding: 2.5rem 0; }
    .htp-content  { padding: 2.5rem 0; }
    .payment-methods { grid-template-columns: 1fr; gap: 1rem; }
    .support-channels { flex-direction: column; gap: 1rem; }
    .payment-card { padding: 1.5rem; }
    .support-strip { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .payment-card { padding: 1.25rem; }
    .htp-cta { padding: 1.75rem 1.25rem; }
}