/* =========================================================
   PDFLOOKS - PRIVACY POLICY
   COMPLETE RESPONSIVE CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #111827;

    background:
        #ffffff;

    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom:
        1px solid #eeeeee;

    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.04);
}


.header-container {
    width: 100%;
    max-width: 1280px;

    min-height: 72px;

    margin: 0 auto;

    padding:
        0 32px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    flex-shrink: 0;

    display: flex;

    align-items: center;
}


.logo a {
    display: flex;

    align-items: center;
}


.logo img {
    width: 195px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    flex: 1;

    display: flex;

    align-items: center;
}


.navigation > ul {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 34px;

    margin: 0;
    padding: 0;
}


.navigation li {
    position: relative;
}


.nav-dropdown-btn {
   min-height: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border: none;
    background: transparent;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    border-radius: 7px;
    transition: .2s ease;
}


.dropdown-arrow {
    font-size: 11px;

    transition:
        transform 0.2s ease;
}


.nav-dropdown:hover
.dropdown-arrow {
    transform:
        rotate(180deg);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 215px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: .2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 7px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: .2s ease;
}

.dropdown-menu a:hover {
    background: #fff2f2;
    color: #ed1c24;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


.header-actions > a {
    color: #111827;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;
}


.header-actions > a:hover {
    color: #287be8;
}


.signup-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding:
        0 20px;

    border-radius: 8px;

    background: #ef1b2d;

    color: #ffffff !important;

    box-shadow:
        0 8px 20px rgba(239, 27, 45, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.signup-btn:hover {
    transform:
        translateY(-1px);

    box-shadow:
        0 10px 24px rgba(239, 27, 45, 0.24);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 10px;

    background: #f5f7fb;

    color: #111827;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   MOBILE MENU
   PDFLooks
========================================================= */

@media (max-width: 650px) {

    .mobile-menu {
        position: absolute;

        top: 72px;
        right: 12px;

        width: calc(100% - 40px);
        max-width: 320px;

        background: #ffffff;

        border-radius: 16px;

        padding: 18px 10px;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.15);

        border: 1px solid #eeeeee;

        z-index: 9999;

        display: none;

        flex-direction: column;

        box-sizing: border-box;
    }


    /* =====================================================
       OPEN MENU
    ====================================================== */

    .mobile-menu.show-menu {
        display: flex;
    }


    /* =====================================================
       MENU LINKS
    ====================================================== */

    .mobile-menu a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 10px 14px;

        box-sizing: border-box;

        text-decoration: none;

        color: #111827;

        font-size: 16px;

        font-weight: 700;

        border-radius: 10px;

        transition:
            background 0.2s ease,
            color 0.2s ease;
    }


    /* =====================================================
       HOVER / TAP
    ====================================================== */

    .mobile-menu a:hover {

        background: #f5f7fb;

        color: #111827;
    }


    /* =====================================================
       SUPPORT US
    ====================================================== */

    .mobile-menu a.support-link {

        color: #f21d2b;
    }


    /* =====================================================
       SIGN UP BUTTON
    ====================================================== */

    .mobile-menu a.signup-btn {

        justify-content: center;

        margin: 6px 0;

        min-height: 48px;

        background: #f21d2b;

        color: #ffffff;

        border-radius: 8px;

        font-size: 16px;

        font-weight: 700;

        box-shadow:
            0 7px 16px rgba(242, 29, 43, 0.18);
    }


    .mobile-menu a.signup-btn:hover {

        background: #d91524;

        color: #ffffff;
    }


    /* =====================================================
       MENU BUTTON
    ====================================================== */

    .menu-btn {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 44px;

        height: 44px;

        padding: 0;

        border: 0;

        border-radius: 10px;

        background: #f7f9fc;

        color: #111827;

        font-size: 28px;

        line-height: 1;

        cursor: pointer;

        z-index: 10000;
    }


    .menu-btn:hover {

        background: #eef2f7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .mobile-menu {

        top: 68px;

        right: 10px;

        width: calc(100% - 30px);

        max-width: none;

        padding: 14px 8px;

        border-radius: 15px;
    }


    .mobile-menu a {

        min-height: 46px;

        padding: 9px 12px;

        font-size: 15px;
    }


   
.mobile-signup {
    margin-top: 4px;
    background: #ed1c24 !important;
    color: #ffffff !important;
    text-align: center;
}



    .menu-btn {

        width: 42px;

        height: 42px;

        font-size: 27px;
    }

}


/* =========================================================
   PRIVACY PAGE
========================================================= */

.privacy-page {
    width: 100%;

    padding:
        64px 20px
        90px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 82%,
            #fffafa 100%
        );
}


.privacy-container {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto;
}


/* =========================================================
   PRIVACY HEADER
========================================================= */

.privacy-header {
    text-align: center;

    margin-bottom: 52px;
}


.privacy-badge {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        8px 16px;

    border-radius: 999px;

    background:
        rgba(220, 38, 38, 0.10);

    color:
        #dc2626;

    font-size:
        14px;

    font-weight:
        700;

    margin-bottom:
        17px;
}


.privacy-header h1 {
    margin:
        0 0 14px;

    color:
        #111827;

    font-size:
        clamp(38px, 5vw, 54px);

    font-weight:
        800;

    line-height:
        1.12;

    letter-spacing:
        -1px;
}


.privacy-header p {
    width: 100%;

    max-width: 720px;

    margin:
        0 auto;

    color:
        #667085;

    font-size:
        17px;

    line-height:
        1.7;
}


.privacy-updated {
    margin-top:
        14px;

    color:
        #98a2b3;

    font-size:
        14px;
}


/* =========================================================
   PRIVACY CARD
========================================================= */

.privacy-card {
    width: 100%;

    padding:
        42px;

    background:
        rgba(255, 255, 255, 0.98);

    border:
        1px solid #e6e6e6;

    border-radius:
        18px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   PRIVACY SECTIONS
========================================================= */

.privacy-section {
    margin-bottom:
        42px;
}


.privacy-section:last-child {
    margin-bottom: 0;
}


.privacy-section h2 {
    margin:
        0 0 16px;

    color:
        #ef1b2d;

    font-size:
        25px;

    font-weight:
        800;

    line-height:
        1.3;
}


.privacy-section h3 {
    margin:
        25px 0 10px;

    color:
        #111827;

    font-size:
        18px;

    font-weight:
        700;
}


.privacy-section p {
    margin:
        0 0 16px;

    color:
        #15365f;

    font-size:
        16px;

    line-height:
        1.8;
}


.privacy-section ul {
    margin:
        12px 0 18px;

    padding-left:
        25px;
}


.privacy-section li {
    margin-bottom:
        10px;

    color:
        #15365f;

    font-size:
        16px;

    line-height:
        1.75;
}


.privacy-section li:last-child {
    margin-bottom: 0;
}


.privacy-section a {
    color:
        #dc2626;

    font-weight:
        600;

    text-decoration:
        none;
}


.privacy-section a:hover {
    text-decoration:
        underline;
}


/* =========================================================
   PRIVACY NOTE
========================================================= */

.privacy-note {
    margin-top:
        20px;

    padding:
        18px 20px;

    border-left:
        4px solid #dc2626;

    border-radius:
        8px;

    background:
        rgba(220, 38, 38, 0.06);
}


.privacy-note p {
    margin: 0;

    color:
        #344054;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.privacy-contact {
    padding:
        24px;

    border:
        1px solid rgba(220, 38, 38, 0.12);

    border-radius:
        12px;

    background:
        rgba(220, 38, 38, 0.06);
}


.privacy-contact p {
    margin:
        0 0 8px;

    color:
        #344054;
}


.privacy-contact p:last-child {
    margin-bottom:
        0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    background:
        #101d35;

    color:
        #ffffff;

    padding:
        48px 42px
        0;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 100%;

    max-width:
        1280px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.15fr
        1.15fr;

    gap:
        40px;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.footer-column h3 {
    margin:
        0 0 14px;

    color:
        #ffffff;

    font-size:
        13px;

    font-weight:
        800;

    letter-spacing:
        0.2px;
}


.footer-column > a {
    margin-bottom:
        9px;

    color:
        #d8deea;

    font-size:
        12px;

    line-height:
        1.35;

    transition:
        color 0.2s ease;
}


.footer-column > a:hover {
    color:
        #ffffff;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.brand-column {
    align-items:
        flex-start;
}


.footer-logo {
    width:
        150px;

    height:
        auto;

    max-height:
        52px;

    object-fit:
        contain;

    object-position:
        left center;

    margin:
        0 0 16px;
}


.brand-column p {
    max-width:
        235px;

    margin:
        0 0 16px;

    color:
        #d8deea;

    font-size:
        12px;

    line-height:
        1.5;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {
    display:
        flex;

    align-items:
        center;

    gap:
        9px;
}


.social-links a {
    width:
        30px;

    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid #30415f;

    border-radius:
        6px;

    color:
        #ffffff;

    font-size:
        12px;

    font-weight:
        700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.social-links a:hover {
    background:
        #1d2d49;

    border-color:
        #526582;
}


/* =========================================================
   MOBILE APP BUTTONS
========================================================= */

.mobile-apps-column {
    align-items:
        flex-start;
}


.app-badge {
    width:
        126px;

    min-height:
        38px;

    padding:
        5px 9px;

    margin-bottom:
        9px !important;

    display:
        flex !important;

    flex-direction:
        column;

    align-items:
        flex-start;

    justify-content:
        center;

    border:
        1px solid #30415f;

    border-radius:
        6px;

    background:
        transparent;
}


.app-badge span {
    display:
        block;

    color:
        #ffffff;

    font-size:
        7px;

    line-height:
        1.1;
}


.app-badge strong {
    display:
        block;

    color:
        #ffffff;

    font-size:
        12px;

    line-height:
        1.2;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    max-width:
        1280px;

    margin:
        32px auto 0;

    padding:
        15px 0;

    border-top:
        1px solid #30415f;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}


.footer-bottom p {
    margin:
        0;

    color:
        #d8deea;

    font-size:
        11px;
}


.footer-bottom p span {
    color:
        #ffffff;

    font-weight:
        700;
}


.footer-legal {
    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-end;

    gap:
        8px;

    flex-wrap:
        wrap;
}


.footer-legal a,
.footer-legal span {
    color:
        #d8deea;

    font-size:
        11px;
}


.footer-legal a:hover {
    color:
        #ffffff;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .header-container {
        max-width:
            1380px;

        padding-left:
            40px;

        padding-right:
            40px;
    }


    .footer-container,
    .footer-bottom {
        max-width:
            1380px;
    }


    .privacy-container {
        max-width:
            1000px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .header-container {
        min-height:
            68px;

        padding:
            0 22px;

        gap:
            18px;
    }


    .logo img {
        width:
            170px;
    }


    .navigation > ul {
        gap:
            20px;
    }


    .nav-dropdown-btn {
        font-size:
            14px;
    }


    .header-actions {
        gap:
            12px;
    }


    .header-actions > a {
        font-size:
            14px;
    }


    .signup-btn {
        min-height:
            40px;

        padding:
            0 16px;
    }


    .footer {
        padding-left:
            28px;

        padding-right:
            28px;
    }


    .footer-container {
        grid-template-columns:
            1.4fr
            1fr
            1fr
            1fr;

        gap:
            34px 28px;
    }


    .brand-column {
        grid-column:
            span 2;
    }


    .mobile-apps-column {
        grid-column:
            span 2;
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 768px) {

    .header-container {
        min-height:
            64px;

        padding:
            0 15px;

        gap:
            10px;
    }


    .logo img {
        width:
            145px;

        max-height:
            48px;
    }


    .navigation {
        display:
            none;
    }


    .header-actions {
        margin-left:
            auto;

        gap:
            8px;
    }


    .header-actions > a {
        display:
            none;
    }


    .menu-btn {
        display:
            flex;
    }


    .mobile-menu {
        display:
            none;
    }


    .mobile-menu.active {
        display:
            block;
    }


    /* =====================================================
       PRIVACY MOBILE
    ====================================================== */

    .privacy-page {
        padding:
            42px 14px
            60px;
    }


    .privacy-container {
        width:
            100%;
    }


    .privacy-header {
        margin-bottom:
            34px;
    }


    .privacy-badge {
        padding:
            7px 14px;

        font-size:
            13px;
    }


    .privacy-header h1 {
        font-size:
            38px;

        letter-spacing:
            -0.6px;
    }


    .privacy-header p {
        padding:
            0 8px;

        font-size:
            16px;

        line-height:
            1.7;
    }


    .privacy-updated {
        font-size:
            13px;
    }


    .privacy-card {
        padding:
            25px 20px;

        border-radius:
            14px;
    }


    .privacy-section {
        margin-bottom:
            34px;
    }


    .privacy-section h2 {
        font-size:
            22px;

        line-height:
            1.35;
    }


    .privacy-section h3 {
        font-size:
            17px;
    }


    .privacy-section p,
    .privacy-section li {
        font-size:
            15px;

        line-height:
            1.75;
    }


    .privacy-section ul {
        padding-left:
            22px;
    }


    /* =====================================================
       FOOTER MOBILE
       
       ROW 1:
       PDF TOOLS | IMAGE TOOLS | COMPANY

       ROW 2:
       RESOURCES | MOBILE APPS
    ====================================================== */

    .footer {
        padding:
            38px 16px
            0;
    }


    .footer-container {
        max-width:
            100%;

        display:
            grid;

        grid-template-columns:
            repeat(6, minmax(0, 1fr));

        gap:
            30px 12px;
    }


    /* BRAND REMAINS SEPARATE
       Do not disturb logo/content */

    .brand-column {
        grid-column:
            1 / -1;

        align-items:
            center;

        text-align:
            center;

        margin-bottom:
            4px;
    }


    .footer-logo {
        width:
            150px;

        max-height:
            55px;

        margin:
            0 auto 15px;
    }


    .brand-column p {
        max-width:
            290px;

        margin:
            0 auto 16px;

        font-size:
            12px;

        line-height:
            1.55;
    }


    .social-links {
        justify-content:
            center;
    }


    /* PDF TOOLS */

    .footer-column:nth-child(2) {
        grid-column:
            1 / 3;

        align-items:
            center;

        text-align:
            center;
    }


    /* IMAGE TOOLS */

    .footer-column:nth-child(3) {
        grid-column:
            3 / 5;

        align-items:
            center;

        text-align:
            center;
    }


    /* COMPANY */

    .footer-column:nth-child(4) {
        grid-column:
            5 / 7;

        align-items:
            center;

        text-align:
            center;
    }


    /* RESOURCES */

    .footer-column:nth-child(5) {
        grid-column:
            1 / 4;

        align-items:
            center;

        text-align:
            center;
    }


    /* MOBILE APPS */

    .footer-column:nth-child(6) {
        grid-column:
            4 / 7;

        align-items:
            center;

        text-align:
            center;
    }


    .footer-column h3 {
        margin-bottom:
            13px;

        font-size:
            13px;
    }


    .footer-column > a {
        margin-bottom:
            8px;

        font-size:
            12px;

        line-height:
            1.35;
    }


    .mobile-apps-column {
        grid-column:
            4 / 7;
    }


    .app-badge {
        width:
            125px;

        margin-left:
            auto;

        margin-right:
            auto;
    }


    /* FOOTER BOTTOM */

    .footer-bottom {
        margin-top:
            28px;

        padding:
            16px 0
            18px;

        flex-direction:
            column;

        align-items:
            center;

        justify-content:
            center;

        gap:
            8px;

        text-align:
            center;
    }


    .footer-bottom p {
        font-size:
            11px;
    }


    .footer-legal {
        justify-content:
            center;

        gap:
            6px;
    }


    .footer-legal a,
    .footer-legal span {
        font-size:
            10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-container {
        min-height:
            60px;

        padding:
            0 12px;
    }


    .logo img {
        width:
            132px;
    }


    .menu-btn {
        width:
            42px;

        height:
            42px;

        font-size:
            23px;
    }


    .mobile-menu {
        right:
            10px;

        width:
            calc(100vw - 20px);
    }


    .privacy-page {
        padding:
            34px 11px
            50px;
    }


    .privacy-header {
        margin-bottom:
            28px;
    }


    .privacy-badge {
        font-size:
            12px;

        padding:
            7px 13px;
    }


    .privacy-header h1 {
        font-size:
            34px;

        margin-bottom:
            12px;
    }


    .privacy-header p {
        padding:
            0 4px;

        font-size:
            15px;
    }


    .privacy-card {
        padding:
            22px 17px;

        border-radius:
            12px;
    }


    .privacy-section {
        margin-bottom:
            30px;
    }


    .privacy-section h2 {
        font-size:
            21px;
    }


    .privacy-section h3 {
        font-size:
            16px;
    }


    .privacy-section p,
    .privacy-section li {
        font-size:
            14px;

        line-height:
            1.75;
    }


    /* =====================================================
       FOOTER SMALL MOBILE
    ====================================================== */

    .footer {
        padding:
            34px 12px
            0;
    }


    .footer-container {
        gap:
            28px 7px;
    }


    .footer-logo {
        width:
            145px;

        max-height:
            52px;
    }


    .brand-column p {
        max-width:
            270px;

        font-size:
            11px;
    }


    .footer-column h3 {
        font-size:
            12px;

        margin-bottom:
            11px;
    }


    .footer-column > a {
        font-size:
            11px;

        margin-bottom:
            7px;
    }


    .app-badge {
        width:
            118px;

        min-height:
            36px;
    }


    .app-badge span {
        font-size:
            6px;
    }


    .app-badge strong {
        font-size:
            11px;
    }


    .footer-bottom {
        margin-top:
            25px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .logo img {
        width:
            120px;
    }


    .privacy-header h1 {
        font-size:
            31px;
    }


    .privacy-card {
        padding:
            20px 15px;
    }


    .footer-container {
        gap:
            25px 4px;
    }


    .footer-column h3 {
        font-size:
            11px;
    }


    .footer-column > a {
        font-size:
            10px;
    }


    .app-badge {
        width:
            108px;
    }

}

/* =========================================================
   MOBILE MENU — DESKTOP PAR HIDDEN
========================================================= */

.mobile-menu {
    display: none !important;
}


/* =========================================================
   MOBILE SCREEN
========================================================= */

@media (max-width: 650px) {

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu.show-menu {
        display: flex !important;
    }

}

