/* ==========================================================
   WILD ANIMAL LANDING
   PART 1 - GLOBAL + HERO
========================================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#222;

    line-height:1.7;

}

/* CONTAINER */

.was-container{

    width:100%;

    max-width:1100px;

    margin:0 auto;

    padding:0 20px;

}

/* ==========================================================
   HERO
========================================================== */

.was-hero{

    background:linear-gradient(180deg,#f5fff6 0%,#ffffff 100%);

    padding:60px 0;

    text-align:center;

}

/* Cover */

.was-cover{

    display:block;

    width:100%;

    max-width:850px;

    margin:0 auto 25px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* Rating */

.was-rating{

    color:#f4b400;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

/* Title */

.was-hero h1{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    max-width:900px;

    margin:0 auto 20px;

}

/* Subtitle */

.was-subtitle{

    max-width:760px;

    margin:0 auto 25px;

    font-size:22px;

    color:#666;

}

/* Feature List */

.was-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    max-width:760px;

    margin:0 auto 30px;

}

.was-features div{

    background:#ffffff;

    border-radius:12px;

    padding:14px 18px;

    box-shadow:0 6px 18px rgba(0,0,0,.06);

    font-weight:600;

}

/* BUY BUTTON */

.was-button{

    display:inline-block;

    padding:18px 42px;

    background:#2ca24c;

    color:#fff;

    text-decoration:none;

    font-size:24px;

    font-weight:700;

    border-radius:12px;

    transition:.25s;

}

.was-button:hover{

    background:#22843e;

    transform:translateY(-2px);

}

/* Small text */

.was-small{

    margin-top:15px;

    color:#777;

    font-size:15px;

}

/* EDD Button */

.was-buy-button{

    margin-top:25px;

}

.was-buy-button .edd-submit,
.was-buy-button input[type="submit"]{

    background:#2ca24c !important;

    color:#fff !important;

    border:none;

    border-radius:12px;

    padding:18px 40px;

    font-size:24px;

    font-weight:700;

    cursor:pointer;

}

.was-buy-button .edd-submit:hover,
.was-buy-button input[type="submit"]:hover{

    background:#22843e !important;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px){

.was-hero{

    padding:40px 0;

}

.was-hero h1{

    font-size:34px;

}

.was-subtitle{

    font-size:18px;

}

.was-features{

    grid-template-columns:1fr;

}

.was-button{

    width:100%;

    font-size:20px;

}

}
/* ==========================================================
   PART 2 - VIDEO
========================================================== */

.was-video{

    padding:50px 0;

    background:#ffffff;

}

.was-video h2{

    text-align:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:12px;

}

.was-video p{

    text-align:center;

    max-width:700px;

    margin:0 auto 30px;

    color:#666;

    font-size:18px;

}

.was-video-wrapper{

    max-width:900px;

    margin:0 auto;

}

.was-video video{

    width:100%;

    display:block;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}


/* ==========================================================
   GALLERY
========================================================== */

.was-gallery{

    padding:50px 0;

    background:#f8fbf8;

}

.was-gallery h2{

    text-align:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:12px;

}

.was-gallery p{

    text-align:center;

    max-width:700px;

    margin:0 auto 30px;

    color:#666;

    font-size:18px;

}

.was-gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.was-gallery-grid img{

    width:100%;

    display:block;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.25s;

    cursor:pointer;

}

.was-gallery-grid img:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.16);

}


/* ==========================================================
   FEATURES
========================================================== */

.was-features-section{

    padding:50px 0;

    background:#ffffff;

}

.was-features-section h2{

    text-align:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:12px;

}

.was-features-section > .was-container > p{

    text-align:center;

    max-width:700px;

    margin:0 auto 35px;

    color:#666;

    font-size:18px;

}

.was-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.was-card{

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.25s;

}

.was-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.was-icon{

    font-size:44px;

    margin-bottom:18px;

}

.was-card h3{

    margin-bottom:12px;

    font-size:24px;

}

.was-card p{

    color:#666;

    font-size:16px;

    line-height:1.7;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){

.was-gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.was-cards{

    grid-template-columns:1fr;

}

}

@media (max-width:768px){

.was-video{

    padding:40px 0;

}

.was-gallery{

    padding:40px 0;

}

.was-features-section{

    padding:40px 0;

}

.was-video h2,
.was-gallery h2,
.was-features-section h2{

    font-size:32px;

}

.was-gallery-grid{

    grid-template-columns:1fr;

}

}
/* ==========================================================
   PART 3 - BENEFITS
========================================================== */

.was-benefits{

    padding:50px 0;

    background:#f5fff6;

}

.was-benefits h2{

    text-align:center;

    font-size:42px;

    margin-bottom:15px;

}

.was-benefits-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.was-benefit{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.25s;

}

.was-benefit:hover{

    transform:translateY(-6px);

}

.was-benefit-icon{

    font-size:42px;

    margin-bottom:15px;

}

.was-benefit h3{

    margin-bottom:10px;

    font-size:24px;

}

.was-benefit p{

    color:#666;

}


/* ==========================================================
   FAQ
========================================================== */

.was-faq{

    padding:50px 0;

    background:#fff;

}

.was-faq h2{

    text-align:center;

    font-size:42px;

    margin-bottom:30px;

}

.was-faq-item{

    max-width:850px;

    margin:0 auto 20px;

    padding:25px;

    border-radius:15px;

    background:#f8fbf8;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.was-faq-item h3{

    margin-bottom:10px;

    font-size:22px;

}

.was-faq-item p{

    color:#666;

}


/* ==========================================================
   CTA
========================================================== */

.was-cta{

    padding:60px 0;

    background:linear-gradient(135deg,#2ca24c,#39c764);

    color:#fff;

    text-align:center;

}

.was-cta h2{

    font-size:46px;

    margin-bottom:15px;

}

.was-cta p{

    max-width:700px;

    margin:0 auto 30px;

    font-size:20px;

}

.was-price{

    font-size:42px;

    font-weight:700;

    margin-bottom:30px;

}

.was-cta .was-button{

    background:#fff;

    color:#2ca24c;

}

.was-cta .was-button:hover{

    background:#f3f3f3;

}

.was-guarantee{

    margin-top:25px;

    font-size:18px;

    opacity:.95;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:768px){

.was-benefits{

    padding:40px 0;

}

.was-benefits-grid{

    grid-template-columns:1fr;

}

.was-faq{

    padding:40px 0;

}

.was-cta{

    padding:45px 0;

}

.was-cta h2{

    font-size:32px;

}

.was-price{

    font-size:30px;

}

}
/* ==========================================================
   PART 4 - FOOTER
========================================================== */

.was-footer{

    background:#1f2937;

    color:#ffffff;

    padding:50px 0;

    text-align:center;

}

.was-footer h3{

    font-size:30px;

    margin-bottom:12px;

}

.was-footer p{

    max-width:650px;

    margin:0 auto 25px;

    color:#cfd8dc;

}

.was-footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:25px;

}

.was-footer-links a{

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

.was-footer-links a:hover{

    color:#8ef0a9;

}

.was-footer-copy{

    font-size:15px;

    color:#9ca3af;

}

/* ==========================================================
   GLOBAL IMPROVEMENTS
========================================================== */

section{

    overflow:hidden;

}

img{

    max-width:100%;

    height:auto;

    display:block;

}

video{

    display:block;

    max-width:100%;

}

h1,h2,h3{

    letter-spacing:-0.5px;

}

.was-card,
.was-benefit,
.was-faq-item{

    transition:
        transform .25s,
        box-shadow .25s;

}

.was-card:hover,
.was-benefit:hover,
.was-faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

/* Nice text selection */

::selection{

    background:#2ca24c;

    color:#ffffff;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

.was-footer{

    padding:40px 0;

}

.was-footer h3{

    font-size:24px;

}

.was-footer-links{

    flex-direction:column;

    gap:15px;

}

}
/* ===========================
HEADER
=========================== */

.was-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#ffffff;

    box-shadow:0 2px 20px rgba(0,0,0,.08);

}

.was-header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:75px;

}

.was-logo{

    font-size:28px;

    font-weight:700;

    color:#222;

}

.was-header-button{

    background:#2ca24c;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:12px;

    font-weight:700;

    transition:.25s;

}

.was-header-button:hover{

    background:#22843e;

}