/* ======================================================
   NAJLEPSZYTATA.PL
   STYLE.CSS
   WERSJA PRODUKCYJNA
====================================================== */


/* ======================================================
   01. VARIABLES
====================================================== */

:root{

    --bg:#ffffff;
    --white:#ffffff;

    --text:#243229;
    --text-light:#66756d;

    --green:#6f9b79;
    --green-dark:#5d8566;
    --green-light:#eef7ef;

    --shadow:0 25px 70px rgba(0,0,0,.08);

    --radius:28px;

}


/* ======================================================
   02. RESET
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


/* ======================================================
   03. GLOBAL
====================================================== */

.nt-container{

    width:min(1280px,92%);
    margin:0 auto;

}

/* ======================================================
   04. BUTTONS
====================================================== */

.nt-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:14px;

    padding:22px 44px;

    border:none;
    border-radius:22px;

    font-family:'Poppins',sans-serif;
    font-size:20px;
    font-weight:700;
    line-height:1.2;

    text-decoration:none;
    text-align:center;

    cursor:pointer;

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        filter .28s ease;

}

/* ==========================================
   PRIMARY
========================================== */

.nt-btn--primary{

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #ff8a3d 0%,
        #ff6a3d 45%,
        #ff4f6d 100%
    );

    box-shadow:
        0 14px 35px rgba(255,106,61,.35),
        inset 0 1px 0 rgba(255,255,255,.30);

}

.nt-btn--primary::before{

    content:"";

    position:absolute;

    top:0;
    left:-140%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:left .8s ease;

}

.nt-btn--primary:hover{

    transform:
        translateY(-4px)
        scale(1.03);

    filter:brightness(1.05);

    box-shadow:
        0 24px 60px rgba(255,106,61,.45);

}

.nt-btn--primary:hover::before{

    left:160%;

}

.nt-btn--primary:active{

    transform:
        translateY(-1px)
        scale(.98);

}

/* ==========================================
   SECONDARY
========================================== */

.nt-btn--secondary{

    background:#ffffff;

    color:var(--text);

    border:2px solid #ececec;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

}

.nt-btn--secondary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);

}

/* ==========================================
   HEADER
========================================== */

.nt-btn--header{

    padding:18px 34px;

    font-size:17px;

}

/* ==========================================
   BUTTON ICON
========================================== */

.nt-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:30px;

}

.nt-btn__icon{

    order:2;

    display:flex;

    align-items:center;
    justify-content:center;

    width:42px;
    min-width:42px;
    max-width:42px;

    height:42px;
    min-height:42px;
    max-height:42px;

    flex:0 0 42px;

    object-fit:contain;
    object-position:center;

    transform:scale(1.6);

    filter:drop-shadow(0 0 12px rgba(57,255,20,.70));

    animation:ntClickPulse 1.4s ease-in-out infinite;

}

@keyframes ntClickPulse{

     0%{
        transform:scale(1.35);
    }

    50%{
        transform:scale(1.65);
    }

    100%{
        transform:scale(1.35);
    }

}

/* ======================================================
   06. HERO
====================================================== */

.hero{

    padding:0 0 90px;
    background:var(--bg);
    overflow:hidden;

}

.hero-grid{

    display:grid;
    grid-template-columns:52% 48%;
    align-items:center;
    gap:40px;

    min-height:720px;

}

.hero-left{

    position:relative;
    z-index:2;

}

.hero-label{

    display:inline-flex;
    align-items:center;

    padding:12px 22px;
    margin-bottom:28px;

    border-radius:999px;

    background:var(--green-light);
    color:var(--green);

    font-size:14px;
    font-weight:700;

}

.hero-left h1{

    font-family:'Poppins',sans-serif;

    font-size:74px;
    line-height:1;
    letter-spacing:-2px;

    color:var(--text);

    margin-bottom:26px;

}

.hero-left h2{

    font-size:30px;
    line-height:1.4;
    font-weight:600;

    color:var(--text);

    margin-bottom:28px;

}

.hero-left p{

    max-width:none;

    margin-bottom:18px;

    font-size:19px;
    line-height:1.85;

    color:var(--text-light);

}

.hero-list{

    display:flex;
    flex-direction:column;
    gap:14px;

    margin:36px 0;

}

.hero-list li{

    display:flex;
    align-items:flex-start;

    font-size:19px;
    line-height:1.65;

    color:var(--text);

}

.hero-list .check{

    flex-shrink:0;

    margin-right:12px;

    color:var(--green);

    font-weight:700;

}

.hero-buttons{

    display:flex;
    align-items:center;

    gap:20px;

}

.hero-mobile-image{

    display:none;

}

/* ======================================================
   HERO TRUST
====================================================== */

.hero-trust{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-top:34px;

}

.hero .hero-trust{

    display:none;

}

.hero-trust__item{

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;

    background:#fff;

    border:1px solid #e8eee9;
    border-radius:999px;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

    font-size:15px;
    font-weight:600;

    color:var(--text-light);

}

/* ======================================================
   HERO IMAGE
====================================================== */

.hero-right{

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    min-height:650px;

    transform:translateY(-45px);

}

.hero__bg{

    width:820px;
    max-width:none;

    transform:translateX(25px);

    filter:drop-shadow(0 45px 90px rgba(0,0,0,.16));

}

/* ======================================================
   07. STORY
====================================================== */

.story{

    padding:100px 0;

    background:#ffffff;

}

.story__content{

    width:100%;
    max-width:1280px;
    margin:0 auto;

    text-align:center;

}

.story__badge{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:12px 24px;
    margin-bottom:28px;

    border-radius:999px;

    background:var(--green-light);
    color:var(--green);

    font-size:15px;
    font-weight:700;

}

.story h2{

    max-width:820px;

    margin:0 auto 34px;

    font-family:'Poppins',sans-serif;

    font-size:48px;
    line-height:1.18;
    letter-spacing:-1px;

    color:var(--text);

}

.story p{

    max-width:760px;

    margin:0 auto 24px;

    font-size:20px;
    line-height:1.9;

    color:var(--text-light);

}

.story__quote{

    max-width:760px;

    margin:50px auto 0;

    padding:42px;

    background:#f8fbf8;

    border-left:6px solid var(--green);

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.04);

    font-size:24px;
    line-height:1.7;

    font-style:italic;

    color:var(--text);

}

/* ======================================================
   08. BENEFITS
====================================================== */

.benefits{

    padding:90px 0;

    background:#ffffff;

}

.benefits .nt-container{

    max-width:1280px;

}

.benefits .story__badge{

    display:inline-flex;

    margin-bottom:24px;

}

.benefits h2{

    max-width:820px;

    margin:0 auto 40px;

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    line-height:1.18;

    letter-spacing:-1px;

    color:var(--text);

}

.benefits__list{

    display:flex;

    flex-direction:column;

    gap:18px;

    max-width:760px;

    margin:0 auto;

    padding:0;

}

.benefits__list li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    padding:22px 26px;

    background:#f8fbf8;

    border:1px solid #e6ece7;

    border-radius:20px;

    font-size:19px;

    line-height:1.75;

    color:var(--text);

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.benefits__list li:hover{

    transform:translateY(-2px);

    transition:.25s ease;

}

.benefits__ending{

    max-width:640px;

    margin:46px auto 0;

    text-align:center;

    font-size:22px;

    line-height:1.8;

    font-weight:600;

    color:var(--text);

}

/* ======================================================
   09. BOOK VISUAL
====================================================== */

.book-visual{

    padding:20px 0 110px;

    background:#ffffff;

}

.book-visual .nt-container{

    max-width:1280px;

    text-align:center;

}

.book-visual__img{

    display:block;

    width:100%;

    max-width:100%;

    margin:0 auto;

    filter:drop-shadow(0 35px 70px rgba(0,0,0,.12));

    transition:
        transform .35s ease,
        filter .35s ease;

}

.book-visual__img:hover{

    transform:translateY(-8px) scale(1.02);

    filter:drop-shadow(0 45px 90px rgba(0,0,0,.16));

}

.book-visual__caption{

    max-width:620px;

    margin:34px auto 0;

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

}

/* ======================================================
   10. AUTHOR
====================================================== */

.author{

    padding:110px 0;

    background:#f8faf8;

}

.author .nt-container{

    max-width:1280px;

}

.author__content{

    max-width:1280px;

    margin:0 auto;

}

.author .story__badge{

    display:inline-flex;

    margin-bottom:24px;

}

.author h2{

    max-width:720px;

    margin:0 0 34px;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    line-height:1.18;

    letter-spacing:-1px;

    color:var(--text);

}

.author p{

    margin-bottom:24px;

    font-size:20px;

    line-height:1.9;

    color:var(--text-light);

}

.author__image{

    margin:60px auto;

    text-align:center;

}

.author__img{

    display:block;

    width:100%;

    max-width:100%;

    margin:0 auto;

    border-radius:28px;

    box-shadow:0 28px 70px rgba(0,0,0,.10);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.author__img:hover{

    transform:translateY(-8px);

    box-shadow:0 40px 90px rgba(0,0,0,.14);

}

.author .story__quote{

    max-width:720px;

    margin:0 auto 40px;

    padding:34px 36px;

    background:#ffffff;

    border-left:4px solid var(--green);

    border-radius:22px;

    box-shadow:0 14px 40px rgba(0,0,0,.05);

    font-size:23px;

    line-height:1.75;

    font-style:italic;

    color:var(--text);

}

.author p:last-child{

    margin-bottom:0;

}

/* ======================================================
   11. PREVIEW INVITE
====================================================== */

.preview-invite{

    padding:110px 0;

    background:#ffffff;

}

.preview-invite .nt-container{

    max-width:1280px;

    text-align:center;

}

.preview-invite .story__badge{

    margin-bottom:24px;

}

.preview-invite h2{

    max-width:760px;

    margin:0 auto 28px;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    line-height:1.18;

    letter-spacing:-1px;

    color:var(--text);

}

.preview-invite__lead{

    max-width:700px;

    margin:0 auto 50px;

    font-size:20px;

    line-height:1.9;

    color:var(--text-light);

}

.preview-invite__image{

    margin:0 auto 50px;

    text-align:center;

}

.preview-invite__img{

    display:block;

    width:100%;

    max-width:100%;

    margin:0 auto;

    filter:drop-shadow(0 30px 70px rgba(0,0,0,.12));

    transition:
        transform .35s ease,
        filter .35s ease;

}

.preview-invite__img:hover{

    transform:translateY(-8px) scale(1.02);

    filter:drop-shadow(0 45px 90px rgba(0,0,0,.18));

}

.preview-invite__action{

    margin-bottom:20px;

}

.preview-invite__action .nt-btn{

    min-width:340px;

    min-height:72px;

    font-size:20px;

}

.preview-invite__note{

    font-size:15px;

    line-height:1.7;

    color:var(--text-light);

}

/* ======================================================
   12. FOOTER
====================================================== */

.nt-footer{

    margin-top:10px;
    padding:10px 0 0;

    background:#f8f5f1;

    border-top:1px solid #ece6df;

}

.nt-footer__top{

    max-width:760px;
    margin:0 auto;

    text-align:center;

}

.nt-footer__logo{

    width:280px;
    height:auto;

    margin:0 auto 22px;

}

.nt-footer__desc{

    max-width:650px;

    margin:0 auto 42px;

    font-size:18px;
    line-height:1.9;

    color:var(--text-light);

}

.nt-footer__values{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:36px;

    margin-bottom:70px;

}

.nt-footer__values span{

    display:flex;
    align-items:center;
    gap:10px;

    font-size:17px;
    font-weight:600;

    color:var(--text);

}

.nt-footer__links{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:40px;

    padding:50px 0;

    border-top:1px solid #e8e3dc;
    border-bottom:1px solid #e8e3dc;

}

.nt-footer__links a{

    display:block;

    color:var(--text-light);

    font-size:16px;

    transition:
        color .25s ease,
        transform .25s ease;

}

.nt-footer__links a:hover{

    color:var(--green);

    transform:translateY(-2px);

}

.nt-footer__bottom{

    padding:28px 0;

    text-align:center;

    font-size:15px;

    color:#8b8b8b;

}

@media (max-width:900px){

    .nt-footer{

        margin-top:70px;
        padding-top:70px;

    }

    .nt-footer__logo{

        width:220px;

    }

    .nt-footer__desc{

        font-size:16px;

    }

    .nt-footer__values{

        flex-direction:column;
        gap:18px;

    }

    .nt-footer__links{

        grid-template-columns:1fr;

        gap:18px;

        text-align:center;

        padding:36px 0;

    }

}

/* ======================================================
   13. PREVIEW
====================================================== */

.preview{

    min-height:100vh;

    background:#ffffff;

}

/* ======================================================
   PREVIEW HERO
====================================================== */

.preview-hero{

    position:relative;

    overflow:hidden;

    padding:7px 0 35px;

}

.preview-logo{

    display:flex;
    justify-content:center;

    margin-bottom:26px;

}

.preview-logo img{

    width:280px;
    height:auto;

    transition:transform .35s ease;

}

.preview-logo:hover img{

    transform:scale(1.03);

}

.preview-heading{

    max-width:860px;
    margin:0 auto;

    text-align:center;

}

.preview-badge{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:12px 24px;

    margin-bottom:22px;

    border-radius:999px;

    background:var(--green-light);

    color:var(--green);

    font-size:15px;
    font-weight:700;

}

.preview-heading h1{

    font-family:'Poppins',sans-serif;

    font-size:58px;

    line-height:1.08;

    letter-spacing:-2px;

    color:var(--text);

    margin-bottom:20px;

}

.preview-heading p{

    max-width:760px;

    margin:0 auto 30px;

    font-size:20px;

    line-height:1.8;

    color:var(--text-light);

}

.preview-heading .nt-btn{

    min-width:330px;
    min-height:72px;

    font-size:20px;

}

/* ======================================================
   PREVIEW PAGES
====================================================== */

.preview-pages{

    position:relative;

    padding:35px 0 80px;

}

.preview-pages .nt-container{

    max-width:980px;

}

.preview-page{

    position:relative;

    margin-bottom:75px;

    text-align:center;

}

.preview-page:last-child{

    margin-bottom:0;

}

/* ======================================================
   PAGE LABEL
====================================================== */

.preview-page__label{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:11px 22px;

    margin-bottom:22px;

    border-radius:999px;

    background:var(--green-light);

    color:var(--green);

    font-size:15px;
    font-weight:700;

}


/* ======================================================
   PAGE IMAGE
====================================================== */

.preview-page img{

    display:block;

    width:100%;
    height:auto;

    background:#fff;

    border-radius:28px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.08),
        0 45px 90px rgba(0,0,0,.12);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

.preview-page:hover img{

    transform:
        translateY(-8px)
        scale(1.015);

    box-shadow:
        0 28px 60px rgba(0,0,0,.10),
        0 60px 120px rgba(0,0,0,.16);

}

/* ======================================================
   PAGE DESCRIPTION
====================================================== */

.preview-page p{

    max-width:700px;

    margin:24px auto 0;

    font-size:20px;

    line-height:1.85;

    color:var(--text-light);

}


/* ======================================================
   PAGE DIVIDER
====================================================== */

.preview-page::after{

    content:"";

    display:block;

    width:90px;
    height:1px;

    margin:36px auto 0;

    background:#e7e2da;

}

.preview-page:last-child::after{

    display:none;

}

/* ======================================================
   PREVIEW END
====================================================== */

.preview-end{

    position:relative;

    padding:100px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8faf8 100%
    );

    border-top:1px solid #ece6df;

}

.preview-end .nt-container{

    max-width:980px;

    text-align:center;

}

.preview-end h2{

    max-width:860px;

    margin:0 auto 24px;

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.15;

    letter-spacing:-1px;

    color:var(--text);

}

.preview-end__lead{

    max-width:740px;

    margin:0 auto 50px;

    font-size:20px;

    line-height:1.85;

    color:var(--text-light);

}

/* ======================================================
   PREVIEW BENEFITS
====================================================== */

.preview-benefits{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin:55px 0;

}

.preview-benefit{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:24px;

    background:#fff;

    border:1px solid #ebefeb;

    border-radius:22px;

    box-shadow:0 14px 30px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.preview-benefit:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.10);

}

.preview-benefit span{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--green-light);

    color:var(--green);

    font-size:20px;

    font-weight:700;

}

.preview-benefit strong{

    display:block;

    margin-bottom:6px;

    font-size:19px;

    color:var(--text);

}

.preview-benefit p{

    margin:0;

    font-size:16px;

    line-height:1.7;

    color:var(--text-light);

}


/* ======================================================
   PREVIEW QUOTE
====================================================== */

.preview-end__quote{

    max-width:720px;

    margin:60px auto 45px;

    padding:34px;

    background:#ffffff;

    border-left:5px solid var(--green);

    border-radius:22px;

    box-shadow:0 14px 35px rgba(0,0,0,.05);

    font-size:22px;

    line-height:1.75;

    font-style:italic;

    color:var(--text);

}

/* ======================================================
   PREVIEW CTA
====================================================== */

.preview-end .nt-btn{

    min-width:360px;

    min-height:72px;

    font-size:20px;

    margin-bottom:18px;

}

.preview-end .nt-btn + p{

    margin-top:0;

    font-size:15px;

    line-height:1.7;

    color:var(--text-light);

}

.preview-end__note{

    margin-top:14px;
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
    font-size:14px;
    line-height:1.6;
    color:#66736b;
    text-align:center;
}

/* ======================================================
   14. SUPPORT MODAL
====================================================== */

.support-modal{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:32px;

    opacity:0;
    visibility:hidden;

    transition:
        opacity .30s ease,
        visibility .30s ease;

    z-index:9999;

}

.support-modal.active{

    opacity:1;
    visibility:visible;

}


/* ======================================================
   OVERLAY
====================================================== */

.support-modal__overlay{

    position:absolute;
    inset:0;

    background:rgba(21,28,24,.65);

    backdrop-filter:blur(10px);

}


/* ======================================================
   WINDOW
====================================================== */

.support-modal__window{

    position:relative;

    width:100%;
    max-width:760px;

    padding:56px;

    background:#fff;

    border-radius:30px;

    box-shadow:0 35px 120px rgba(0,0,0,.22);

    transform:translateY(40px) scale(.97);

    transition:transform .35s ease;

    z-index:2;

}

.support-modal.active .support-modal__window{

    transform:none;

}


/* ======================================================
   CLOSE
====================================================== */

.support-modal__close{

    position:absolute;

    top:22px;
    right:22px;

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:var(--green-light);

    color:var(--green);

    font-size:30px;

    cursor:pointer;

    transition:.25s;

}

.support-modal__close:hover{

    transform:rotate(90deg);

    background:#dcecdc;

}


/* ======================================================
   HEADER
====================================================== */

.support-modal__header{

    text-align:center;

    margin-bottom:46px;

}

.support-modal__badge{

    display:inline-flex;

    padding:10px 22px;

    margin-bottom:24px;

    border-radius:999px;

    background:var(--green-light);

    color:var(--green);

    font-size:15px;
    font-weight:700;

}

.support-modal__header h2{

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.2;

    color:var(--text);

    margin-bottom:18px;

}

.support-modal__header p{

    max-width:600px;

    margin:0 auto;

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

}


/* ======================================================
   PRICE
====================================================== */

.support-price{

    margin:50px 0;

}

.support-price h3{

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:30px;

    color:var(--text);

    margin-bottom:18px;

}

.support-price__info{

    max-width:560px;

    margin:0 auto 38px;

    text-align:center;

    font-size:17px;

    line-height:1.85;

    color:var(--text-light);

}

.support-price__info strong{

    color:var(--text);

}


/* ======================================================
   SLIDER
====================================================== */

.support-range{

    display:flex;
    justify-content:space-between;

    margin-bottom:14px;

    font-size:15px;
    font-weight:700;

    color:var(--text-light);

}

.support-range__slider{

    width:100%;

    height:14px;

    appearance:none;
    -webkit-appearance:none;

    border-radius:999px;

    background:#e7ece8;

    cursor:pointer;

    margin-bottom:40px;

}

.support-range__slider::-webkit-slider-thumb{

    -webkit-appearance:none;

    width:34px;
    height:34px;

    border-radius:50%;

    background:var(--green);

    border:5px solid #fff;

    box-shadow:0 8px 22px rgba(111,155,121,.35);

}

.support-range__slider::-webkit-slider-thumb:hover{

    transform:scale(1.12);

}


/* ======================================================
   MANUAL INPUT
====================================================== */

.support-price__field{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;

}

.support-price__field input{

    width:220px;
    height:64px;

    border:2px solid #e5ebe6;

    border-radius:18px;

    text-align:center;

    font-size:28px;
    font-weight:700;

    color:var(--text);

    transition:.25s;

}

.support-price__field input:focus{

    outline:none;

    border-color:var(--green);

    box-shadow:0 0 0 5px rgba(111,155,121,.12);

}

.support-price__field span{

    font-size:26px;
    font-weight:700;

    color:var(--text);

}

/* ======================================================
   SUMMARY
====================================================== */

.support-summary{

    margin:50px 0;

    padding:30px 34px;

    background:#f8fbf9;

    border:1px solid #e6ece8;

    border-radius:22px;

}

.support-summary__row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.support-summary__row:not(:last-child){

    border-bottom:1px solid #e8eeea;

}

.support-summary__row span{

    font-size:17px;

    color:var(--text-light);

}

.support-summary__row strong{

    font-size:24px;

    font-weight:800;

    color:var(--text);

}

#supportDonation{

    color:var(--green);

    font-weight:800;

}


/* ======================================================
   BENEFITS
====================================================== */

.support-benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:46px 0;

}

.support-benefit{

    padding:20px 24px;

    background:#f7faf8;

    border:1px solid #e5ece6;

    border-radius:18px;

    font-size:17px;

    line-height:1.7;

    color:#425148;

}


/* ======================================================
   ACTIONS
====================================================== */

.support-actions{

    text-align:center;

    margin-top:46px;

}

.support-actions .nt-btn{

    width:100%;

    min-height:72px;

    font-size:20px;

}

.support-secure{

    margin-top:16px;

    font-size:15px;

    color:var(--text-light);

}


/* ======================================================
   MODAL RESPONSIVE
====================================================== */

@media(max-width:768px){

    .support-modal{

        padding:18px;

        align-items:flex-end;

    }

    .support-modal__window{

        width:100%;

        max-height:90vh;

        overflow-y:auto;

        padding:30px;

        border-radius:24px 24px 0 0;

    }

    .support-modal__header h2{

        font-size:34px;

    }

    .support-modal__header p{

        font-size:16px;

    }

    .support-price h3{

        font-size:24px;

    }

    .support-range{

        font-size:13px;

    }

    .support-price__field{

        flex-direction:column;

        gap:10px;

    }

    .support-price__field span{

        font-size:18px;

    }

    .support-summary{

        padding:22px;

    }

    .support-summary__row{

        flex-direction:column;

        gap:8px;

        text-align:center;

    }

    .support-summary__row strong{

        font-size:20px;

    }

    .support-benefit{

        padding:18px;

        font-size:16px;

    }

    .support-actions .nt-btn{

        width:100%;

        min-width:0;

    }

}

/* ======================================================
   15. RESPONSIVE
====================================================== */


/* ======================================================
   TABLET
====================================================== */

@media (max-width:1024px){

    /* =========================
       CONTAINER
    ========================= */

    .nt-container{

        width:min(92%,900px);

    }

    /* =========================
       HERO
    ========================= */

    .hero{

        padding:40px 0 90px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:70px;

        min-height:auto;

    }

    .hero-left{

        max-width:760px;

        margin:0 auto;

        text-align:center;

    }

    .hero-left p{

        max-width:680px;

        margin-left:auto;
        margin-right:auto;

    }

    .hero-list{

        max-width:620px;

        margin:40px auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-right{

        min-height:auto;

        transform:none;

    }

    .hero__bg{

        width:100%;

        max-width:650px;

        transform:none;

    }

    .hero-trust{

        justify-content:center;

    }

    /* =========================
       STORY
    ========================= */

    .story{

        padding:90px 0;

    }

    .story h2{

        font-size:40px;

    }

    .story p{

        font-size:19px;

    }

    .story__quote{

        font-size:22px;

        padding:36px;

    }

    /* =========================
       FOOTER
    ========================= */

    .nt-footer{

        margin-top:70px;

    }

    .nt-footer__logo{

        width:240px;

    }

    .nt-footer__values{

        gap:22px;

    }

    .nt-footer__links{

        grid-template-columns:1fr;

        gap:22px;

        text-align:center;

    }

        /* =========================
       BENEFITS
    ========================= */

    .benefits{

        padding:80px 0;

    }

    .benefits h2{

        font-size:40px;

    }

    .benefits__list{

        max-width:700px;

    }

    .benefits__list li{

        font-size:18px;

    }

    .benefits__ending{

        font-size:20px;

    }

    /* =========================
       BOOK VISUAL
    ========================= */

    .book-visual{

        padding:10px 0 90px;

    }

    .book-visual__img{

        max-width:540px;

    }

    /* =========================
       AUTHOR
    ========================= */

    .author{

        padding:90px 0;

    }

    .author h2{

        font-size:40px;

    }

    .author p{

        font-size:19px;

    }

    .author__img{

        max-width:100%;

    }

    /* =========================
       PREVIEW INVITE
    ========================= */

    .preview-invite{

        padding:90px 0;

    }

    .preview-invite h2{

        font-size:40px;

    }

    .preview-invite__lead{

        font-size:19px;

    }

    .preview-invite__img{

        max-width:100%;

    }

}

/* ======================================================
   16.MOBILE
====================================================== */

@media (max-width:768px){

    /* =========================
       HERO
    ========================= */

    .hero{

        padding:0 0 32px;

    }

    .hero-grid{

        display:flex;
        flex-direction:column;

        gap:0;

    }

    .hero-left{

        text-align:center;

    }

    .hero-label{

        margin:0 auto 12px;

        padding:8px 18px;

        font-size:12px;

    }

    .hero-left h1{

        font-size:38px;

        line-height:1.08;

        letter-spacing:-1.2px;

        margin-bottom:18px;

    }

    .hero-left h2{

        display:none;

    }

    .hero-left p{

        max-width:360px;

        margin:0 auto 20px;

        text-align:left;

        font-size:17px;

        line-height:1.75;

    }

    /* =========================
       HERO IMAGE
    ========================= */

    .hero-image{

        margin-top:-28px;

        margin-bottom:28px;

    }

    .hero-image .nt-container{

        text-align:center;

    }

    .hero-image__img{

        display:block;

        width:100%;

        max-width:360px;

        margin:0 auto;

    }

    /* =========================
       HERO LIST
    ========================= */

    .hero-list{

        max-width:360px;

        margin:0 auto 28px;

    }

    .hero-list li{

        font-size:17px;

        line-height:1.55;

        margin-bottom:10px;

    }

    .hero-list .check{

        margin-right:8px;

    }

    /* =========================
       HERO CTA
    ========================= */

    .hero-buttons{

        justify-content:center;

        margin-bottom:22px;

    }

    .hero-buttons .nt-btn{

        width:100%;
        max-width:360px;

        min-height:68px;

        padding:18px 24px;

        border-radius:18px;

        font-size:18px;

    }

    /* =========================
       HERO TRUST
    ========================= */

    .hero .hero-trust{

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:8px;

        margin-top:0;

    }

    .hero-trust__item{

        justify-content:center;

        padding:10px 8px;

        font-size:11px;

        line-height:1.3;

        text-align:center;

    }



    /* =========================
       STORY
    ========================= */

    .story{

        padding:70px 0;

    }

    .story__content{

        max-width:100%;

    }

    .story__badge{

        margin-bottom:20px;

        padding:10px 18px;

        font-size:13px;

    }

    .story h2{

        font-size:34px;

        line-height:1.18;

        margin-bottom:24px;

    }

    .story p{

        font-size:17px;

        line-height:1.8;

        margin-bottom:20px;

    }

    .story__quote{

        margin:34px 0 0;

        padding:26px;

        border-radius:20px;

        font-size:20px;

        line-height:1.7;

    }

    /* =========================
       PREVIEW
    ========================= */

    .preview-hero{

     padding:4px 0 30px;

    }

    .preview-logo{

        margin-bottom:24px;

    }

    .preview-logo img{

        width:160px !important;
        max-width:160px !important;

    }

    .preview-badge{

        margin-bottom:18px;
        padding:10px 18px;
        font-size:13px;

    }

    .preview-heading h1{

        font-size:34px;
        line-height:1.15;
        letter-spacing:-0.8px;
        margin-bottom:18px;

    }

    .preview-heading p{

        font-size:17px;
        line-height:1.75;
        margin-bottom:26px;

    }

    .preview-heading .nt-btn{

        width:100%;
        max-width:360px;
        min-height:58px;
        font-size:17px;

    }

    .preview-pages{

        padding:35px 0 45px;

    }

    .preview-page{

        margin-bottom:45px;

    }

    .preview-page__label{

        font-size:13px;
        padding:10px 18px;
        margin-bottom:16px;

    }

    .preview-page p{

        font-size:16px;
        line-height:1.7;
        max-width:95%;

    }

    .preview-end{

        padding:55px 0;

    }

    .preview-end h2{

        font-size:32px;
        line-height:1.15;
        margin-bottom:18px;

    }

    .preview-end__lead{

        font-size:16px;
        line-height:1.7;
        margin-bottom:28px;
        max-width:95%;
        margin-left:auto;
        margin-right:auto;

    }

    .preview-benefits{

        grid-template-columns:1fr;
        gap:14px;
        margin:38px 0;

    }

    .preview-benefit{

        padding:18px 20px;
        border-radius:22px;

    }

    .preview-end__quote{

        margin:34px auto 28px;
        padding:24px;
        font-size:18px;
        line-height:1.6;

    }

    .preview-end .nt-btn{

        width:100%;
        min-width:0;
        max-width:360px;

    }

    /* =========================
       FOOTER
    ========================= */

    .nt-footer{

        margin-top:4px;

        padding:60px 0 0;

    }

    .nt-footer__logo{

        width:180px;

        margin:0 auto 20px;

    }

    .nt-footer__desc{

        padding:0 10px;

        margin-bottom:28px;

        font-size:15px;

        line-height:1.7;

    }

    .nt-footer__values{

        display:none;

    }

    .nt-footer__links{

        display:flex;

        flex-direction:column;

        gap:16px;

        padding:28px 0;

    }

    .nt-footer__links a{

        font-size:15px;

    }

    .nt-footer__bottom{

        padding:22px 0;

        font-size:13px;

    }

    /* =========================
       SUPPORT MODAL
    ========================= */

    .support-modal{

        padding:16px;

        align-items:flex-end;

    }

    .support-modal__window{

        width:100%;

        max-height:92vh;

        overflow-y:auto;

        padding:28px;

        border-radius:24px 24px 0 0;

    }

    .support-modal__header h2{

        font-size:34px;

    }

    .support-modal__header p{

        font-size:16px;

    }

    .support-price h3{

        font-size:24px;

    }

    .support-price__field{

        flex-direction:column;

        gap:10px;

    }

    .support-price__field input{

        width:100%;

        max-width:240px;

    }

    .support-summary{

        padding:22px;

    }

    .support-summary__row{

        flex-direction:column;

        gap:8px;

        text-align:center;

    }

    .support-benefits{

        gap:14px;

    }

    .support-actions .nt-btn{

        width:100%;

        min-width:0;

    }

    /* =========================
       BENEFITS
    ========================= */

    .benefits{

        padding:45px 0;

    }

    .benefits .story__badge{

        margin-bottom:18px;

        padding:10px 18px;

        font-size:13px;

    }

    .benefits h2{

        font-size:34px;

        line-height:1.18;

        margin-bottom:28px;

    }

    .benefits__list{

        gap:14px;

    }

    .benefits__list li{

        padding:18px 20px;

        font-size:17px;

        line-height:1.65;

    }

    .benefits__ending{

        margin-top:22px;

        font-size:18px;

        line-height:1.65;

    }


    /* =========================
       BOOK VISUAL
    ========================= */

    .book-visual{

        padding:0 0 35px;

    }

    .book-visual__img{

        max-width:360px;

    }


    /* =========================
       AUTHOR
    ========================= */

    .author{

        padding:55px 0;

    }

    .author__content{

        max-width:100%;

    }

    .author .story__badge{

        margin-bottom:20px;

    }

    .author h2{

        font-size:34px;

        line-height:1.18;

        margin-bottom:24px;

    }

    .author p{

        font-size:17px;

        line-height:1.8;

        margin-bottom:20px;

    }

    .author__image{

        margin:24px auto 28px;

    }

    .author__img{

        max-width:100%;

        border-radius:22px;

    }

    .author .story__quote{

        padding:24px;

        font-size:20px;

        line-height:1.7;

    }


    /* =========================
       PREVIEW INVITE
    ========================= */

    .preview-invite{

        padding:55px 0;

    }

    .preview-invite .story__badge{

        margin-bottom:18px;

    }

    .preview-invite h2{

        font-size:34px;

        line-height:1.18;

        margin-bottom:22px;

    }

    .preview-invite__lead{

        font-size:17px;

        line-height:1.8;

        margin-bottom:34px;

    }

    .preview-invite__img{

        max-width:100%;

    }

    .preview-invite__action{

        margin-top:10px;

    }

    .preview-invite__action .nt-btn{

        width:100%;

        max-width:360px;

        min-width:0;

    }

    .preview-invite__note{

        margin-top:16px;

        font-size:14px;

    }
}

/* ======================================================
   17.SMALL MOBILE
====================================================== */

@media (max-width:480px){

    /* =========================
       GLOBAL
    ========================= */

    .nt-container{

        width:min(94%,360px);

    }

    /* =========================
       HERO
    ========================= */

    .hero{

        padding:2px 0 2px;

    }

    .hero-label{

        font-size:11px;

        padding:8px 14px;

    }

    .hero-left h1{

        font-size:30px;

        line-height:1.08;

        letter-spacing:-.8px;

    }

    .hero-left p{

        font-size:16px;

    }

    .hero-list li{

        font-size:16px;

    }

    .hero-buttons .nt-btn{

        min-height:64px;

        font-size:17px;

        padding:16px 20px;

    }

    .hero .hero-trust{

        grid-template-columns:1fr;

        gap:10px;

    }

    .hero-trust__item{

        font-size:13px;

        padding:12px;

    }

    /* =========================
       STORY
    ========================= */

    .story{

        padding:55px 0;

    }

    .story h2{

        font-size:28px;

    }

    .story p{

        font-size:16px;

        line-height:1.75;

    }

    .story__quote{

        padding:22px;

        font-size:18px;

    }

    /* =========================
       PREVIEW
    ========================= */

    .preview-heading h1{

        font-size:30px;

    }

    .preview-heading p{

        font-size:16px;

    }

    .preview-page p{

        font-size:16px;

    }

    .preview-end{

        padding:60px 0;

    }

    .preview-end h2{

        font-size:30px;

    }

    .preview-end__lead{

        font-size:16px;

    }

    .preview-benefit{

        padding:18px;

    }

    .preview-benefit strong{

        font-size:18px;

    }

    .preview-benefit p{

        font-size:15px;

    }

    .preview-end__quote{

        padding:22px;

        font-size:18px;

    }

    /* =========================
       FOOTER
    ========================= */

    .nt-footer{

        padding-top:4px;

    }

    .nt-footer__logo{

        width:160px;

    }

    .nt-footer__desc{

        font-size:14px;

    }

    .nt-footer__links a{

        font-size:14px;

    }

    .nt-footer__bottom{

        font-size:12px;

    }

    /* =========================
       MODAL
    ========================= */

    .support-modal{

        padding:10px;

    }

    .support-modal__window{

        padding:22px;

    }

    .support-modal__header h2{

        font-size:28px;

    }

    .support-modal__header p{

        font-size:15px;

    }

    .support-price h3{

        font-size:22px;

    }

    .support-price__field input{

        height:58px;

        font-size:24px;

    }

    .support-summary{

        padding:18px;

    }

    .support-summary__row strong{

        font-size:18px;

    }

    .support-benefit{

        font-size:15px;

    }

    /* =========================
       BENEFITS
    ========================= */

    .benefits{

        padding:50px 0;

    }

    .benefits h2{

        font-size:28px;

    }

    .benefits__list li{

        padding:16px 18px;

        font-size:16px;

        line-height:1.6;

    }

    .benefits__ending{

        margin-top:28px;

        font-size:17px;

        line-height:1.7;

    }


    /* =========================
       BOOK VISUAL
    ========================= */

    .book-visual{

        padding:0 0 50px;

    }

    .book-visual__img{

        max-width:300px;

    }


    /* =========================
       AUTHOR
    ========================= */

    .author{

        padding:55px 0;

    }

    .author h2{

        font-size:28px;

    }

    .author p{

        font-size:16px;

        line-height:1.75;

    }

    .author__image{

        margin:28px auto;

    }

    .author__img{

        max-width:100%;

        border-radius:18px;

    }

    .author .story__quote{

        padding:20px;

        border-left:3px solid var(--green);

        font-size:18px;

    }


    /* =========================
       PREVIEW INVITE
    ========================= */

    .preview-invite{

        padding:55px 0;

    }

    .preview-invite h2{

        font-size:28px;

    }

    .preview-invite__lead{

        font-size:16px;

        line-height:1.75;

    }

    .preview-invite__img{

        max-width:100%;

    }

    .preview-invite__action .nt-btn{

        min-height:64px;

        font-size:17px;

        padding:16px 22px;

    }

    .preview-invite__note{

        font-size:13px;

    }

}

/* ======================================================
   17.FIX - KADENCE TOP SPACE
====================================================== */

.content-area,
.site-main,
#primary,
article,
.entry-content{

    margin-top:0 !important;
    padding-top:0 !important;

}
