/* =========================================================
   PDF INSPECTOR
   Main Website Styles
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f5f2;
    color: #171717;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

ul {
    list-style: none;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container,
.pi-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    background: #111111;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    padding: 0 7px;
    background: #ff4d4d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    border-radius: 5px;
}

.logo-text {
    font-size: 20px;
    letter-spacing: -0.03em;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.main-nav > a,
.dropdown-toggle {
    color: #d7d7d7;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* Dropdown */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dropdown-arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: 280px;
    transform: translateX(-50%) translateY(8px);
    padding: 10px;
    background: #1b1b1b;
    border: 1px solid #333333;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    color: #d8d8d8;
    font-size: 13px;
    border-radius: 7px;
}

.dropdown-menu a:hover {
    background: #292929;
    color: #ffffff;
}


/* Mobile menu */

.mobile-menu-toggle,
.mobile-nav {
    display: none;
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.pi-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,77,77,0.12),
            transparent 30%
        ),
        #f5f5f2;
    border-bottom: 1px solid #deded9;
}

.pi-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    padding: 85px 0;
}


/* Hero content */

.pi-label,
.pi-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e23e3e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.pi-label {
    margin-bottom: 22px;
}

.pi-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4d;
}

.pi-hero h1 {
    max-width: 620px;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.pi-hero h1 span {
    color: #ed4646;
}

.pi-hero-content > p {
    max-width: 560px;
    margin-top: 28px;
    color: #666660;
    font-size: 18px;
    line-height: 1.7;
}


/* Hero buttons */

.pi-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.pi-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.pi-button:hover {
    transform: translateY(-2px);
}

.pi-button-red {
    background: #ed4646;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(237,70,70,0.2);
}

.pi-button-red:hover {
    background: #d93636;
}

.pi-button-light {
    background: #ffffff;
    color: #222222;
    border: 1px solid #d9d9d4;
}

.pi-trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #898984;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pi-trust-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #b3b3ad;
}


/* =========================================================
   HERO PDF VISUAL
   ========================================================= */

.pi-hero-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Measurement */

.pi-measure-top {
    position: absolute;
    top: 18px;
    left: 15%;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777770;
    font-size: 11px;
}

.pi-measure-top span {
    flex: 1;
    height: 1px;
    background: #bdbdb6;
}

.pi-measure-top strong {
    font-size: 11px;
    white-space: nowrap;
}


/* Side measurement */

.pi-measure-side {
    position: absolute;
    top: 24%;
    left: 2%;
    height: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #777770;
    font-size: 11px;
}

.pi-measure-side span {
    width: 1px;
    flex: 1;
    background: #bdbdb6;
}

.pi-measure-side strong {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 10px 0;
}


/* PDF */

.pi-document {
    position: relative;
    width: 300px;
    height: 420px;
    padding: 42px 35px 25px;
    background: #ffffff;
    border: 1px solid #d7d7d2;
    border-radius: 5px;
    box-shadow:
        0 35px 70px rgba(20,20,20,0.13),
        10px 10px 0 #ecece7;
    transform: rotate(-4deg);
}

.pi-document-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #eeeeea;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.pi-document-tag {
    display: inline-flex;
    padding: 6px 9px;
    background: #ed4646;
    color: #ffffff;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.pi-document-title {
    margin-top: 34px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.pi-document-lines {
    display: grid;
    gap: 8px;
    margin-top: 26px;
}

.pi-document-lines i {
    display: block;
    height: 5px;
    background: #e1e1dc;
    border-radius: 5px;
}

.pi-document-lines i:nth-child(2) {
    width: 80%;
}

.pi-document-lines i:nth-child(3) {
    width: 92%;
}

.pi-document-lines i:nth-child(4) {
    width: 65%;
}

.pi-document-lines i:nth-child(5) {
    width: 85%;
}

.pi-document-box {
    height: 100px;
    margin-top: 28px;
    padding: 15px;
    border: 1px solid #ddddda;
}

.pi-document-box div {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            #ededE9 0,
            #ededE9 3px,
            transparent 3px,
            transparent 9px
        );
}

.pi-document-footer {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    color: #777770;
    font-size: 10px;
    font-weight: 800;
}


/* Result card */

.pi-result-card {
    position: absolute;
    right: 2%;
    bottom: 45px;
    width: 270px;
    padding: 19px;
    background: #171717;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.22);
}

.pi-result-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 13px;
    border-bottom: 1px solid #333333;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.pi-result-header span {
    color: #7ee29a;
}

.pi-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #2b2b2b;
    font-size: 12px;
}

.pi-result-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pi-result-row span {
    color: #969696;
}

.pi-result-row strong {
    color: #ffffff;
}

.pi-floating-mark {
    position: absolute;
    right: 10%;
    top: 15%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ed4646;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    box-shadow: 0 12px 25px rgba(237,70,70,0.25);
}


/* =========================================================
   QUICK TOOLS
   ========================================================= */

.pi-tool-strip {
    padding: 95px 0;
    background: #ffffff;
}

.pi-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.pi-section-heading h2,
.pi-directory-intro h2,
.pi-showcase-copy h2,
.pi-process-heading h2,
.pi-faq h2,
.pi-final h2 {
    margin-top: 10px;
    color: #171717;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.pi-section-heading p {
    max-width: 300px;
    color: #777770;
    font-size: 14px;
}

.pi-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pi-quick-card {
    position: relative;
    min-height: 270px;
    padding: 25px;
    background: #f7f7f4;
    border: 1px solid #deded9;
    border-radius: 10px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.pi-quick-card:hover {
    transform: translateY(-6px);
    border-color: #ed4646;
    box-shadow: 0 20px 40px rgba(20,20,20,0.08);
}

.pi-quick-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ed4646;
    color: #ffffff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}

.pi-quick-icon.purple {
    background: #6357d8;
}

.pi-card-number {
    margin-top: 30px;
    color: #aaa9a2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.pi-quick-card h3 {
    margin-top: 5px;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.pi-quick-card p {
    margin-top: 9px;
    color: #777770;
    font-size: 13px;
}

.pi-card-arrow {
    position: absolute;
    right: 24px;
    bottom: 23px;
    color: #ed4646;
    font-size: 22px;
}


/* =========================================================
   TOOL DIRECTORY
   ========================================================= */

.pi-directory {
    padding: 110px 0;
    background: #171717;
    color: #ffffff;
}

.pi-directory-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.pi-directory-intro h2 {
    color: #ffffff;
}

.pi-directory-intro p {
    max-width: 390px;
    margin-top: 22px;
    color: #999999;
}

.pi-text-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 28px;
    color: #ff6868;
    font-size: 13px;
    font-weight: 800;
}

.pi-tool-list {
    border-top: 1px solid #363636;
}

.pi-tool-row {
    display: grid;
    grid-template-columns: 50px 1fr 30px;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #363636;
    transition: padding 0.2s ease;
}

.pi-tool-row:hover {
    padding-left: 10px;
}

.pi-tool-row > span {
    color: #777777;
    font-size: 11px;
    font-weight: 800;
}

.pi-tool-row strong {
    display: block;
    font-size: 15px;
}

.pi-tool-row small {
    display: block;
    margin-top: 3px;
    color: #818181;
    font-size: 12px;
}

.pi-tool-row b {
    color: #ff5b5b;
    font-size: 19px;
}


/* =========================================================
   SHOWCASE
   ========================================================= */

.pi-showcase {
    padding: 110px 0;
    background: #f5f5f2;
}

.pi-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}


/* Screen */

.pi-showcase-screen {
    overflow: hidden;
    background: #171717;
    border-radius: 13px;
    box-shadow: 0 35px 70px rgba(20,20,20,0.16);
}

.pi-screen-top {
    display: flex;
    justify-content: space-between;
    padding: 17px 20px;
    border-bottom: 1px solid #333333;
    color: #aaaaaa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pi-screen-top span:last-child {
    color: #76df91;
}

.pi-screen-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    padding: 35px;
}

.pi-screen-page {
    position: relative;
    min-height: 350px;
    padding: 25px;
    background: #ffffff;
    border-radius: 5px;
    transform: rotate(-2deg);
}

.screen-pdf {
    display: inline-block;
    padding: 5px 7px;
    background: #ed4646;
    color: #ffffff;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 900;
}

.screen-lines {
    display: grid;
    gap: 8px;
    margin-top: 25px;
}

.screen-lines i {
    height: 4px;
    background: #deded9;
}

.screen-lines i:nth-child(2) {
    width: 80%;
}

.screen-lines i:nth-child(3) {
    width: 90%;
}

.screen-lines i:nth-child(4) {
    width: 60%;
}

.screen-lines i:nth-child(5) {
    width: 85%;
}

.screen-lines i:nth-child(6) {
    width: 72%;
}

.screen-box {
    height: 100px;
    margin-top: 30px;
    border: 1px solid #ddddda;
}

.pi-screen-data {
    align-self: center;
}

.screen-data-heading {
    margin-bottom: 15px;
    color: #888888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.pi-screen-data > div:not(.screen-data-heading) {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid #303030;
    color: #898989;
    font-size: 12px;
}

.pi-screen-data strong {
    color: #ffffff;
}


/* Showcase copy */

.pi-showcase-copy p {
    margin-top: 20px;
    color: #777770;
    font-size: 15px;
}

.pi-showcase-copy ul {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.pi-showcase-copy li {
    position: relative;
    padding-left: 25px;
    color: #3e3e3a;
    font-size: 14px;
}

.pi-showcase-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ed4646;
    font-weight: 900;
}


/* =========================================================
   PROCESS
   ========================================================= */

.pi-process {
    padding: 105px 0;
    background: #ffffff;
}

.pi-process-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pi-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pi-process-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: #f6f6f3;
    border: 1px solid #dfdfda;
    border-radius: 10px;
}

.pi-process-card > span {
    position: absolute;
    top: 22px;
    right: 23px;
    color: #aaa9a2;
    font-size: 11px;
    font-weight: 800;
}

.pi-process-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ed4646;
    color: #ffffff;
    border-radius: 8px;
    font-size: 25px;
}

.pi-process-card h3 {
    margin-top: 30px;
    font-size: 21px;
}

.pi-process-card p {
    margin-top: 8px;
    color: #777770;
    font-size: 13px;
}


/* =========================================================
   FAQ
   ========================================================= */

.pi-faq {
    padding: 105px 0;
    background: #f5f5f2;
}

.pi-faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.pi-faq-list {
    border-top: 1px solid #d4d4cf;
}

.pi-faq details {
    border-bottom: 1px solid #d4d4cf;
}

.pi-faq summary {
    position: relative;
    padding: 22px 45px 22px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
}

.pi-faq summary::-webkit-details-marker {
    display: none;
}

.pi-faq summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 18px;
    color: #ed4646;
    font-size: 22px;
    font-weight: 400;
}

.pi-faq details[open] summary::after {
    content: "−";
}

.pi-faq details p {
    max-width: 720px;
    padding: 0 45px 24px 0;
    color: #777770;
    font-size: 14px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.pi-final {
    padding: 70px 0;
    background: #ffffff;
}

.pi-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    background: #ed4646;
    color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 55px rgba(237,70,70,0.2);
}

.pi-final-box > div > span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.pi-final h2 {
    margin-top: 8px;
    color: #ffffff;
}

.pi-final p {
    margin-top: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

.pi-final-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-height: 54px;
    padding: 0 23px;
    background: #171717;
    color: #ffffff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.pi-final-button:hover {
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 65px 0 25px;
    background: #111111;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 290px;
    margin-top: 18px;
    color: #777777;
    font-size: 13px;
}

.footer-column h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.footer-column ul {
    display: grid;
    gap: 9px;
}

.footer-column a {
    color: #858585;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid #292929;
}

.footer-bottom p {
    color: #666666;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: 1px solid #333333;
        border-radius: 6px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        background: #ffffff;
    }

    .mobile-nav {
        display: none;
        padding: 15px 20px 25px;
        background: #171717;
        border-top: 1px solid #292929;
    }

    .mobile-nav.active {
        display: grid;
    }

    .mobile-nav a,
    .mobile-tools-title {
        padding: 12px 0;
        color: #d0d0d0;
        font-size: 14px;
    }

    .mobile-tools-title {
        color: #ff5b5b;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .pi-hero-grid {
        grid-template-columns: 1fr;
    }

    .pi-hero-content {
        text-align: center;
    }

    .pi-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .pi-label,
    .pi-trust-line,
    .pi-hero-buttons {
        justify-content: center;
    }

    .pi-hero-visual {
        min-height: 500px;
    }

    .pi-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pi-directory-grid,
    .pi-showcase-grid,
    .pi-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pi-process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .container,
    .pi-container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .logo-text {
        font-size: 18px;
    }

    .pi-hero-grid {
        padding: 65px 0;
    }

    .pi-hero h1 {
        font-size: 49px;
    }

    .pi-hero-content > p {
        font-size: 15px;
    }

    .pi-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pi-button {
        width: 100%;
    }

    .pi-hero-visual {
        min-height: 430px;
        transform: scale(0.88);
        transform-origin: center;
        margin-top: -20px;
    }

    .pi-document {
        width: 245px;
        height: 345px;
        padding: 30px 27px 20px;
    }

    .pi-document-title {
        margin-top: 25px;
        font-size: 24px;
    }

    .pi-result-card {
        right: -2%;
        bottom: 20px;
        width: 225px;
    }

    .pi-floating-mark {
        right: 3%;
        top: 8%;
    }

    .pi-tool-strip,
    .pi-directory,
    .pi-showcase,
    .pi-process,
    .pi-faq {
        padding: 75px 0;
    }

    .pi-section-heading {
        display: block;
    }

    .pi-section-heading p {
        margin-top: 15px;
    }

    .pi-quick-grid {
        grid-template-columns: 1fr;
    }

    .pi-directory-grid {
        gap: 40px;
    }

    .pi-showcase-screen {
        transform: scale(0.96);
    }

    .pi-screen-content {
        grid-template-columns: 1fr;
    }

    .pi-screen-page {
        min-height: 300px;
    }

    .pi-final-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    .pi-final-button {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}