/*
   google-pay.css
   Scoped styles for the Google Pay marketing page (google-pay.php).
   Lives inside the shared #info_content_container "paper" layout (~756px wide).
   No JavaScript: the "How it works" tabs use the CSS radio-button technique.
   Brand colours mirror master.css: red #ec012b / #f30233, grey #848484 / #656262.
*/

.gp-wrap {
    width: 100%;
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    color: #313131;
    box-sizing: border-box;
}
.gp-wrap * { box-sizing: border-box; }

/* ---------- Hero / intro ---------- */
.gp-hero {
    width: 100%;
    float: left;
    text-align: center;
    padding: 10px 0 34px 0;
    border-bottom: #e2e2e2 1px solid;
    margin: 0 0 28px 0;
}
.gp-hero-logo {
    display: inline-block;
    height: 46px;
    width: auto;
    margin: 4px 0 20px 0;
}
.gp-hero h2 {
    font-family: 'steelfish_rgregular', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #3a3a3a;
    font-size: 42px;
    line-height: 44px;
    margin: 0 0 14px 0;
    padding: 0;
    letter-spacing: 1px;
}
.gp-hero h2 span { color: #ec012b; }
.gp-hero p {
    max-width: 620px;
    margin: 0 auto 24px auto;
    padding: 0 12px;
    font-size: 15px;
    line-height: 23px;
    color: #656262;
}
.gp-cta {
    display: inline-block;
    background: #ec012b;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 34px;
    border-radius: 4px;
    transition: background 0.15s ease;
}
.gp-cta:hover { background: #c9001f; color: #ffffff; text-decoration: none; }

/* ---------- Section headings ---------- */
.gp-section { width: 100%; float: left; margin: 0 0 34px 0; }
.gp-section-head { text-align: center; margin: 0 0 26px 0; }
.gp-section-head h3 {
    font-family: 'steelfish_rgregular', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #3a3a3a;
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 8px 0;
    padding: 0;
}
.gp-section-head p {
    font-size: 14px;
    color: #656262;
    margin: 0;
    padding: 0;
}

/* ---------- Benefit grid (6 blocks) ---------- */
.gp-benefits {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}
.gp-benefit {
    float: left;
    width: 33.3333%;
    padding: 16px 14px;
    text-align: center;
}
.gp-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px auto;
    display: block;
    color: #ec012b;
}
.gp-benefit-icon svg { width: 56px; height: 56px; display: block; }
.gp-benefit h4 {
    font-size: 15px;
    font-weight: bold;
    color: #313131;
    margin: 0 0 8px 0;
    padding: 0;
}
.gp-benefit p {
    font-size: 13px;
    line-height: 18px;
    color: #656262;
    margin: 0;
    padding: 0;
}
.gp-benefits:after { content: ""; display: block; clear: both; }

/* ---------- How it works (Web) ---------- */
.gp-how { width: 100%; float: left; }
.gp-steps { width: 100%; float: left; list-style: none; margin: 0; padding: 0; }
.gp-step {
    float: left;
    width: 33.3333%;
    padding: 0 12px;
    text-align: center;
}
.gp-step-num {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #ec012b;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 10px 0;
}
.gp-step p {
    font-size: 13px;
    line-height: 18px;
    color: #656262;
    margin: 0;
    padding: 0;
}
.gp-steps:after { content: ""; display: block; clear: both; }

/* ---------- Real checkout screenshots ---------- */
.gp-screens {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 0 30px 0;
}
.gp-screen {
    flex: 1 1 320px;
    max-width: 360px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.gp-screen img {
    display: block;
    width: 100%;
    height: auto;
    border: #e2e2e2 1px solid;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.gp-screen figcaption {
    font-size: 12px;
    line-height: 17px;
    color: #656262;
    padding: 10px 4px 0 4px;
}
.gp-screen figcaption strong { color: #313131; }

/* ---------- Responsive fallback (paper layout is fixed-width, but be safe) ---------- */
@media (max-width: 760px) {
    .gp-benefit { width: 50%; }
    .gp-step { width: 100%; margin: 0 0 20px 0; }
}
