/*
=========================================================
PAYMENTPROCESSOR.COM
INDUSTRIES PAGE
=========================================================
*/


.pp-industries-page,
.pp-industries-page * {
    box-sizing: border-box;
}


.pp-industries-page {
    overflow: hidden;

    color: var(--pp-white);

    background: #010407;
}



/* =====================================================
   EYEBROW
   ===================================================== */

.pp-industries-eyebrow {
    margin: 0 0 16px;

    color: var(--pp-gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .18em;

    line-height: 1.3;
}



/* =====================================================
   HERO
   ===================================================== */

.pp-industries-hero {
    position: relative;

    overflow: hidden;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(231,167,47,.06),
            transparent 29%
        ),
        radial-gradient(
            circle at 73% 36%,
            rgba(22,42,57,.17),
            transparent 37%
        );
}


.pp-industries-hero-inner {
    min-height: 555px;

    padding: 78px 0;

    display: grid;

    grid-template-columns:
        minmax(0,1.03fr)
        minmax(430px,.97fr);

    align-items: center;

    gap: 70px;
}


.pp-industries-hero-copy {
    max-width: 700px;

    position: relative;

    z-index: 5;
}


.pp-industries-hero-copy h1 {
    margin: 0 0 24px;

    max-width: 690px;

    color: var(--pp-white);

    font-size:
        clamp(
            52px,
            4.3vw,
            70px
        );

    line-height: 1;

    letter-spacing: -.045em;

    font-weight: 700;
}


.pp-industries-hero-copy h1 span {
    display: block;

    color: var(--pp-gold-light);
}


.pp-industries-hero-text {
    max-width: 620px;

    margin: 0 0 28px;

    color: var(--pp-muted);

    font-size: 17px;

    line-height: 1.65;
}


.pp-industries-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}


.pp-industries-hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 12px 24px;

    color: #8d959e;

    font-size: 13px;
}


.pp-industries-hero-points > span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.pp-industries-hero-points > span > span {
    width: 18px;
    height: 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: var(--pp-gold-light);

    border:
        1px solid rgba(231,167,47,.42);

    border-radius: 50%;

    font-size: 10px;
}



/* =====================================================
   HERO VISUAL
   ===================================================== */

.pp-industries-hero-visual {
    min-height: 410px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 3;
}


.pp-industries-visual-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 430px;
    height: 430px;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(231,167,47,.10),
            rgba(20,38,52,.045) 44%,
            transparent 70%
        );

    filter: blur(14px);
}


.pp-industries-visual-grid {
    position: relative;

    width: min(100%,530px);

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 13px;
}


.pp-industries-visual-card {
    min-height: 110px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 16px;

    border:
        1px solid rgba(231,167,47,.17);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(15,17,19,.96),
            rgba(4,6,8,.98)
        );

    box-shadow:
        0 18px 45px rgba(0,0,0,.26);
}


.pp-industries-visual-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--pp-gold-light);

    border:
        1px solid rgba(231,167,47,.38);

    border-radius: 50%;
}


.pp-industries-visual-icon svg {
    width: 21px;
    height: 21px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.pp-industries-visual-card > span {
    color: #e8e8e5;

    font-size: 15px;

    font-weight: 600;
}



/* =====================================================
   SECTION HEADINGS
   ===================================================== */

.pp-industries-section-heading {
    max-width: 780px;

    margin-bottom: 43px;
}


.pp-industries-section-heading h2 {
    margin: 0 0 16px;

    color: var(--pp-white);

    font-size:
        clamp(
            37px,
            3.5vw,
            51px
        );

    line-height: 1.08;

    letter-spacing: -.035em;
}


.pp-industries-section-heading > p:last-child {
    max-width: 730px;

    margin: 0;

    color: var(--pp-muted);

    font-size: 16px;

    line-height: 1.65;
}


.pp-industries-heading-center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}



/* =====================================================
   INDUSTRY GRID
   ===================================================== */

.pp-industries-main {
    padding: 94px 0;
}


.pp-industries-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 18px;
}


.pp-industry-card {
    min-height: 250px;

    padding: 30px;

    display: grid;

    grid-template-columns:
        58px
        minmax(0,1fr);

    gap: 23px;

    color: inherit;

    text-decoration: none;

    border:
        1px solid rgba(255,255,255,.075);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(14,16,18,.91),
            rgba(5,7,9,.96)
        );

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.pp-industry-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(231,167,47,.30);
}


.pp-industry-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--pp-gold-light);

    border:
        1px solid rgba(231,167,47,.42);

    border-radius: 50%;
}


.pp-industry-card-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.pp-industry-card-label {
    margin: 2px 0 8px !important;

    color: var(--pp-gold);

    font-size: 9px !important;

    font-weight: 700;

    letter-spacing: .14em;
}


.pp-industry-card h3 {
    margin: 0 0 11px;

    color: #f1f1ee;

    font-size: 22px;

    line-height: 1.2;
}


.pp-industry-card p {
    max-width: 520px;

    margin: 0 0 15px;

    color: #8d959e;

    font-size: 14px;

    line-height: 1.62;
}


.pp-industry-card span {
    color: var(--pp-gold-light);

    font-size: 12px;

    font-weight: 650;
}



/* =====================================================
   WHY INDUSTRY MATTERS
   ===================================================== */

.pp-industries-why {
    padding: 92px 0;

    border-top:
        1px solid rgba(255,255,255,.05);

    border-bottom:
        1px solid rgba(255,255,255,.05);

    background:
        rgba(5,7,9,.34);
}


.pp-industries-why-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 17px;
}


.pp-industries-why-grid article {
    min-height: 215px;

    padding: 27px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(14,16,18,.87),
            rgba(5,7,9,.92)
        );
}


.pp-industries-why-grid article > span {
    display: block;

    margin-bottom: 29px;

    color: var(--pp-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;
}


.pp-industries-why-grid h3 {
    margin: 0 0 10px;

    color: #eeeeeb;

    font-size: 18px;
}


.pp-industries-why-grid p {
    margin: 0;

    color: #868e97;

    font-size: 13px;

    line-height: 1.62;
}



/* =====================================================
   PROCESS
   ===================================================== */

.pp-industries-process {
    padding: 92px 0;
}


.pp-industries-process-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));
}


.pp-industries-process-grid article {
    position: relative;

    padding: 7px 38px 0;

    text-align: center;
}


.pp-industries-process-grid
article:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 27px;

    left: calc(50% + 31px);

    width: calc(100% - 62px);

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(231,167,47,.34),
            rgba(231,167,47,.12)
        );
}


.pp-industries-step {
    width: 44px;
    height: 44px;

    margin: 0 auto 20px;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--pp-gold-light);

    border:
        1px solid rgba(231,167,47,.55);

    border-radius: 50%;

    background: #050709;

    font-size: 13px;
}


.pp-industries-process-grid h3 {
    margin: 0 0 10px;

    color: #eeeeeb;

    font-size: 17px;
}


.pp-industries-process-grid p {
    max-width: 340px;

    margin: 0 auto;

    color: #858d96;

    font-size: 13px;

    line-height: 1.6;
}



/* =====================================================
   TRUST
   ===================================================== */

.pp-industries-trust {
    padding: 20px 0 74px;
}


.pp-industries-trust-inner {
    min-height: 155px;

    padding: 30px 40px;

    display: grid;

    grid-template-columns:
        62px minmax(0,1fr);

    align-items: center;

    gap: 28px;

    border:
        1px solid rgba(231,167,47,.22);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(14,16,18,.96),
            rgba(5,7,9,.98)
        );
}


.pp-industries-trust-icon {
    width: 58px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--pp-gold-light);
}


.pp-industries-trust-icon svg {
    width: 48px;
    height: 53px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.pp-industries-trust h2 {
    margin: 0 0 9px;

    color: var(--pp-gold-light);

    font-size:
        clamp(
            23px,
            2.1vw,
            31px
        );
}


.pp-industries-trust p {
    max-width: 820px;

    margin: 0;

    color: var(--pp-muted);

    font-size: 14px;

    line-height: 1.65;
}



/* =====================================================
   FINAL CTA
   ===================================================== */

.pp-industries-final {
    padding: 0 0 88px;
}


.pp-industries-final-inner {
    padding: 66px 48px;

    text-align: center;

    overflow: hidden;

    border:
        1px solid rgba(231,167,47,.24);

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(231,167,47,.09),
            transparent 43%
        ),
        linear-gradient(
            135deg,
            rgba(14,16,18,.97),
            rgba(5,7,9,.98)
        );
}


.pp-industries-final
.pp-industries-eyebrow {
    text-align: center;
}


.pp-industries-final h2 {
    max-width: 820px;

    margin: 0 auto 17px;

    color: var(--pp-white);

    font-size:
        clamp(
            38px,
            3.7vw,
            54px
        );

    line-height: 1.08;

    letter-spacing: -.035em;
}


.pp-industries-final-inner > p:not(.pp-industries-eyebrow) {
    max-width: 680px;

    margin: 0 auto 27px;

    color: var(--pp-muted);

    font-size: 16px;

    line-height: 1.65;
}


.pp-industries-final-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}


.pp-industries-final-actions > span {
    color: #737b84;

    font-size: 12px;
}



/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

    .pp-industries-hero-inner {
        grid-template-columns: 1fr;

        gap: 48px;

        padding: 65px 0;
    }


    .pp-industries-hero-copy {
        max-width: 720px;
    }


    .pp-industries-hero-visual {
        width: min(100%,620px);

        margin: 0 auto;
    }


    .pp-industries-why-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


@media (max-width: 820px) {

    .pp-industries-main,
    .pp-industries-why,
    .pp-industries-process {
        padding: 72px 0;
    }


    .pp-industries-grid {
        grid-template-columns: 1fr;
    }


    .pp-industries-process-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .pp-industries-process-grid
    article:not(:last-child)::after {
        display: none;
    }

}


@media (max-width: 600px) {

    .pp-industries-hero-inner {
        min-height: 0;

        padding: 50px 0 58px;
    }


    .pp-industries-hero-copy h1 {
        font-size:
            clamp(
                43px,
                12vw,
                52px
            );

        line-height: 1.02;
    }


    .pp-industries-hero-text {
        font-size: 16px;
    }


    .pp-industries-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }


    .pp-industries-hero-actions
    .pp-button-primary,

    .pp-industries-hero-actions
    .pp-button-outline {
        width: 100%;
    }


    .pp-industries-hero-points {
        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .pp-industries-hero-visual {
        min-height: 0;
    }


    .pp-industries-visual-grid {
        grid-template-columns: 1fr;
    }


    .pp-industries-visual-card {
        min-height: 82px;
    }


    .pp-industry-card {
        min-height: 0;

        grid-template-columns: 1fr;

        padding: 27px 24px;
    }


    .pp-industries-why-grid {
        grid-template-columns: 1fr;
    }


    .pp-industries-trust-inner {
        padding: 28px 24px;

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .pp-industries-final {
        padding-bottom: 60px;
    }


    .pp-industries-final-inner {
        padding: 48px 24px;
    }


    .pp-industries-final h2 {
        font-size: 38px;
    }


    .pp-industries-final-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .pp-industries-final-actions
    .pp-button-primary {
        width: 100%;
    }

}