/* ============================================
   MINDSETVAULT
   Premium AMOLED Wallpaper Store
============================================ */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#080808;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.7;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#b88a44;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d8b26d;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:110px 10%;

}

h1,h2,h3{

    font-family:'Cinzel',serif;

    letter-spacing:1px;

}

h2{

    font-size:42px;

    text-align:center;

    margin-bottom:20px;

}

p{

    color:#bdbdbd;

}

/*====================================
            NAVBAR
====================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 9%;

    background:rgba(0,0,0,.28);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(212,175,55,.12);

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo img{

    width:44px;

    height:44px;

    object-fit:contain;

    filter:

        drop-shadow(0 0 12px rgba(212,175,55,.35));

}

.logo span{

    font-family:'Cinzel',serif;

    font-size:22px;

    font-weight:600;

    color:#D4AF37;

    letter-spacing:1px;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-links a{

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.35s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.35s;

}

.nav-links a:hover{

    color:#D4AF37;

}

.nav-links a:hover::after{

    width:100%;

}

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

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.88)),
    url("Skyline.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:180px;

    background:linear-gradient(transparent,#080808);

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

}

.hero h1{

    font-size:68px;

    line-height:1.2;

    margin-bottom:30px;

}

.hero p{

    font-size:21px;

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}
/* ============================================
   BUTTONS
============================================ */

.primary-btn{

    display:inline-block;

    padding:16px 42px;

    background:#b88a44;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    border:2px solid #b88a44;

}

.primary-btn:hover{

    background:#d8b26d;

    border-color:#d8b26d;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(216,178,109,.30);

}

.secondary-btn{

    display:inline-block;

    padding:16px 42px;

    border:2px solid rgba(255,255,255,.15);

    border-radius:50px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    color:#fff;

    transition:.35s;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.10);

    border-color:#d8b26d;

    transform:translateY(-4px);

}



/* ============================================
   STATS
============================================ */

.stats{

    display:grid;

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

    gap:30px;

    text-align:center;

    background:#0d0d0d;

}

.stat-box{

    padding:45px 20px;

}

.stat-box h2{

    color:#d8b26d;

    font-size:56px;

    margin-bottom:10px;

}

.stat-box p{

    font-size:17px;

    color:#bdbdbd;

}



/* ============================================
   ABOUT
============================================ */

.about{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.about-text{

    max-width:900px;

}

.about-text h2{

    margin-bottom:35px;

}

.about-text p{

    font-size:19px;

    margin-bottom:40px;

}



/* ============================================
   COLLECTIONS
============================================ */

.collections{

    background:#0c0c0c;

}

.collections>p{

    text-align:center;

    margin-bottom:70px;

    color:#9d9d9d;

}

.collection-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.collection-card{

    background:#111;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.collection-card:hover{

    transform:translateY(-12px);

    border-color:#b88a44;

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

}

.collection-card img{

    height:420px;

    object-fit:cover;

    transition:.45s;
    border-top-left-radius:22px;
    border-top-right-radius:22px;

}

.collection-content{
    padding:34px 28px 28px;
}

.collection-content h3{
    margin:16px 0 18px;
}

.collection-content p{
    margin-bottom:28px;
    line-height:1.7;
}

.collection-content .secondary-btn{
    width:100%;
}

.collection-card:hover img{

    transform:scale(1.06);

}

.card-content{

    padding:28px;

}

.card-content h3{

    color:#d8b26d;

    margin-bottom:18px;

    font-size:28px;

}

.card-content p{

    margin-bottom:28px;

    min-height:110px;

}

.card-content a{

    color:#d8b26d;

    font-weight:600;

    transition:.3s;

}

.card-content a:hover{

    letter-spacing:1px;

}



/* ============================================
   CARD IMAGE SHADOW
============================================ */

.collection-card img{

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}



/* ============================================
   GOLD DIVIDER
============================================ */

.collections h2::after{

    content:"";

    display:block;

    width:80px;

    height:3px;

    margin:18px auto;

    background:#b88a44;

    border-radius:20px;

}

.about h2::after{

    content:"";

    display:block;

    width:80px;

    height:3px;

    margin:18px auto;

    background:#b88a44;

    border-radius:20px;

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

#features {
    scroll-margin-top: 100px;
}

.features{

    background:#080808;
}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:70px;

}

.feature-card{

    background:#111;

    border:1px solid rgba(255,255,255,.05);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#b88a44;

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

}

.feature-icon{

    font-size:52px;

    margin-bottom:25px;

}

.feature-card h3{

    color:#d8b26d;

    margin-bottom:18px;

}

.feature-card p{

    color:#bdbdbd;

}



/* ============================================
   TESTIMONIALS
============================================ */

.testimonials{

    background:#0c0c0c;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:70px;

}

.testimonial-card{

    background:#131313;

    border-radius:20px;

    padding:40px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#b88a44;

}

.stars{

    color:#d8b26d;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    margin-bottom:25px;

    font-style:italic;

}

.testimonial-card h4{

    color:#d8b26d;

}



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

.faq{

    background:#080808;

}

.faq-container{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#111;

    border-radius:16px;

    margin-bottom:22px;

    padding:30px;

    border-left:4px solid #b88a44;

}

.faq-item h3{

    margin-bottom:15px;

    color:#d8b26d;

}

.faq-item p{

    color:#bdbdbd;

}



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

.cta{

    text-align:center;

    background:linear-gradient(135deg,#111,#1a1a1a);

}

.cta h2{

    margin-bottom:25px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

    font-size:19px;

}



/* ============================================
   FOOTER
============================================ */

footer{

    background:#050505;

    padding:80px 10% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer-column h3{

    color:#d8b26d;

    margin-bottom:25px;

}

.footer-column p{

    color:#999;

}

.footer-column ul li{

    margin-bottom:14px;

}

.footer-column ul li a{

    color:#aaa;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#d8b26d;

    padding-left:6px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:30px;

    text-align:center;

    color:#777;

}



/* ============================================
   REVEAL ANIMATIONS
============================================ */

.collection-card,
.feature-card,
.testimonial-card,
.stat-box{

    transition:.4s ease;

}

.collection-card:hover,
.feature-card:hover,
.testimonial-card:hover{

    transform:translateY(-10px);

}



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

@media(max-width:1100px){

.hero h1{

font-size:52px;

}

.footer-container{

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

}

.stats{

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

}

}



@media(max-width:768px){

.navbar{

padding:18px 6%;

}

.nav-button{

display:none;

}

section{

padding:80px 7%;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.primary-btn,
.secondary-btn{

width:100%;

max-width:320px;

text-align:center;

}

.stats{

grid-template-columns:1fr;

}

.collection-grid{

grid-template-columns:1fr;

}

.features-grid{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

h2{

font-size:34px;

}

.page-header{

    padding:140px 7% 60px;

}

.page-header h1{

    font-size:27px;

    white-space:nowrap;

}

.page-header p{

    font-size:18px;

}

}



@media(max-width:480px){

.hero h1{

font-size:32px;

}

.logo{

font-size:24px;

}

.hero{

padding-top:80px;

}

}
/* =============================
   Scroll Reveal
============================= */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}


/* =============================
   Ripple
============================= */

.primary-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

transform:scale(0);

background:rgba(255,255,255,.35);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}


/* =============================
   Page Fade In
============================= */

body{

opacity:0;

transition:opacity .8s ease;

}

body.loaded{

opacity:1;

}
/* ============================================
   MOBILE MENU
============================================ */

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    width:26px;
    height:3px;
    background:#D4AF37;
    border-radius:10px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

@media (max-width:900px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{

    display:flex;

    position:fixed;

    top:81px;

    right:-100%;

    width:260px;

    height:calc(100vh - 81px);

    background:#090909;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    gap:35px;

    padding-top:60px;

    transition:right .35s ease;

    border-left:1px solid rgba(212,175,55,.15);

    z-index:998;

}

    .nav-links.active{

        right:0;

    }

}
/*====================================
        LEGAL PAGES
====================================*/

.page-header{

    padding:170px 9% 80px;

    text-align:center;

    background:#050505;

}

.page-header h1{

    font-family:'Cinzel',serif;

    font-size:58px;

    color:#fff;

    margin-bottom:20px;

    line-height:1.15;

    overflow-wrap:break-word;

}

.page-header p{

    max-width:700px;

    margin:auto;

    color:#999;

    font-size:18px;

    line-height:1.8;

}

.legal-page{

    padding:80px 9%;

    background:#050505;

}

.legal-container{

    max-width:900px;

    margin:auto;

}

.legal-container h2{

    font-family:'Cinzel',serif;

    color:#D4AF37;

    margin-top:60px;

    margin-bottom:18px;

    font-size:30px;

}

.legal-container p{

    color:#b5b5b5;

    line-height:2;

    font-size:17px;

    margin-bottom:20px;

}

.last-updated{

    margin-top:70px;

    color:#777;

    font-size:15px;

    text-align:center;

    border-top:1px solid rgba(212,175,55,.15);

    padding-top:35px;

}

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

@media (max-width:900px){

    .footer-container{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .footer-column{

        align-items:center;

    }

    .footer-column h3{

        margin-bottom:15px;

    }

    .footer-column ul{

        padding:0;

    }

    .footer-column li{

        margin-bottom:12px;

    }

    .footer-column p{

        max-width:320px;

        margin:auto;

        line-height:1.8;

    }

    .copyright{

        text-align:center;

        margin-top:50px;

        padding-top:25px;

    }

}

/* =====================================
   Collections page mobile fix
===================================== */

@media (max-width:768px){

    .page-header h1{

        font-size:40px !important;
        line-height:1.15;
        white-space:normal;
        overflow-wrap:normal;
        word-break:normal;
    }

}
/*====================================
        PRODUCT PAGE
====================================*/

.product-hero{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    padding:170px 9% 120px;

}

.product-hero-image{

    display:flex;

    justify-content:center;

}

.product-hero-image img{

    width:100%;

    max-width:420px;

    border-radius:24px;

    transition:.4s;

}

.product-hero-image img:hover{

    transform:translateY(-10px);

}

.collection-label{

    color:#D4AF37;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:18px;

}

.product-hero h1{

    font-family:'Cinzel',serif;

    font-size:64px;

    line-height:1.1;

    margin-bottom:30px;

}

.product-hero p{

    color:#B8B8B8;

    line-height:1.9;

    margin-bottom:35px;

    max-width:560px;

}

.product-meta{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:35px;

}

.product-meta span{

    border:1px solid rgba(212,175,55,.18);

    padding:10px 18px;

    border-radius:30px;

    color:#D4AF37;

    font-size:14px;

}

.product-price{

    font-size:44px;

    color:#D4AF37;

    font-weight:700;

    margin-bottom:30px;

}


/* Sections */

.story,
.included,
.gallery,
.compatibility,
.faq,
.product-cta{

    padding:110px 9%;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    margin-bottom:15px;

}

.section-title p{

    color:#999;

}


/* Included */

.included-grid{

    display:grid;

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

    gap:25px;

}

.included-item{

    background:#111;

    padding:28px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.12);

    text-align:center;

    transition:.35s;

}

.included-item:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

}


/* Gallery */

.gallery-grid{

    display:grid;

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

    gap:30px;

}

.gallery-grid img{

    width:100%;

    border-radius:22px;

    transition:.35s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}


/* Compatibility */

.compatibility p{

    text-align:center;

    max-width:850px;

    margin:auto;

    color:#A9A9A9;

    line-height:2;

}


/* FAQ */

.faq-item{

    max-width:900px;

    margin:0 auto 45px;

    border-bottom:1px solid rgba(212,175,55,.12);

    padding-bottom:25px;

}

.faq-item h3{

    margin-bottom:12px;

}

.faq-item p{

    color:#AAA;

}


/* CTA */

.product-cta{

    text-align:center;

}

.product-cta h2{

    font-family:'Cinzel',serif;

    font-size:52px;

    margin-bottom:20px;

}

.product-cta p{

    color:#999;

    margin-bottom:25px;

}


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

@media(max-width:900px){

.product-hero{

grid-template-columns:1fr;

text-align:center;

padding:150px 8% 90px;

}

.product-hero-image{

order:-1;

}

.product-hero h1{

font-size:42px;

}

.product-meta{

justify-content:center;

}

.included-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.product-cta h2{

font-size:38px;

}

}

/*====================================
          ARTICLE PAGES
====================================*/

.article{

    padding:70px 0 100px;

}

.article .container{

    max-width:1200px;

}

.article-cover{

    width:100%;

    border-radius:22px;

    display:block;

    margin:0 auto 35px;

    border:1px solid rgba(212,175,55,.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45),
        0 0 35px rgba(212,175,55,.08);

}

.article-meta{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:55px;

    color:#D4AF37;

    font-size:14px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:2px;

}

.article-content{

    max-width:760px;

    margin:70px auto 0;

}

.article-content h2{

    font-family:'Cinzel',serif;

    font-size:36px;

    color:#D4AF37;

    margin-top:70px;

    margin-bottom:22px;

    line-height:1.3;

    position:relative;

}

.article-content h2::after{

    content:"";

    width:80px;

    height:2px;

    background:#D4AF37;

    display:block;

    margin-top:14px;

}

.article-content p{

    font-size:18px;

    line-height:2;

    color:#d7d7d7;

    margin-bottom:28px;

}

.article-content strong{

    color:#ffffff;

}

.article-content a{

    color:#D4AF37;

    transition:.3s;

}

.article-content a:hover{

    opacity:.8;

}

.article-content blockquote{

    margin:55px 0;

    padding:35px;

    border-left:4px solid #D4AF37;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(10px);

    border-radius:18px;

    font-size:24px;

    font-family:'Cinzel',serif;

    color:#fff;

    line-height:1.6;

}

.article-content ul{

    margin:25px 0 35px 28px;

}

.article-content li{

    margin-bottom:16px;

    color:#d7d7d7;

    line-height:1.8;

}

.section-subtitle{

    display:inline-block;

    margin-bottom:32px;

    letter-spacing:3px;

}

.blog-cta{

    padding:110px 9%;

    text-align:center;

}

.blog-cta .container{

    max-width:820px;

}

.blog-cta h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    color:#D4AF37;

    margin-bottom:22px;

}

.blog-cta p{

    font-size:18px;

    line-height:1.9;

    color:#cfcfcf;

    max-width:700px;

    margin:0 auto 40px;

}

@media(max-width:768px){

    .article{

        padding:20px 0 70px;

    }

    .article-cover{

        border-radius:16px;

    }

    .article-meta{

        flex-direction:column;

        gap:8px;

        margin-bottom:40px;

    }

    .article-content{

        max-width:100%;

    }

    .article-content h2{

        font-size:28px;

        margin-top:50px;

    }

    .article-content p{

        font-size:17px;

        line-height:1.9;

    }

    .article-content blockquote{

        font-size:20px;

        padding:25px;

    }

    .blog-cta{

        padding:80px 9%;

    }

    .blog-cta h2{

        font-size:34px;

    }

}

.article-intro{

    max-width:760px;

    margin:0 auto 60px;

    font-size:24px;

    line-height:1.8;

    color:#ffffff;

    text-align:center;

    font-weight:300;

}

.page-header h1{

    max-width:700px;

    margin:0 auto 30px;

    text-wrap:balance;

}

.unlock-modal{

position:fixed;

inset:0;

background:rgba(0,0,0,.88);

display:none;

justify-content:center;

align-items:flex-start;

overflow-y:auto;

z-index:99999;

padding:40px 20px;

}

.unlock-modal.active{

display:flex;

}

.unlock-box{

max-width:520px;

width:100%;

background:#111;

border:1px solid rgba(212,175,55,.25);

padding:45px;

border-radius:18px;

text-align:center;

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

position:relative;

margin:auto 0;

}

.unlock-box h2{

margin-bottom:20px;

}

.unlock-box p{

margin:20px 0;

}

.unlock-box ul{

margin:25px 0;

text-align:left;

}

.unlock-box li{

margin:12px 0;

color:#ddd;

}

.modal-btn{

display:inline-block;

margin-top:24px;

padding:20px 48px;

background:#b88a44;

color:#fff;

border-radius:12px;

font-size:19px;

font-weight:700;

transition:.3s;

animation:goldPulse 2s infinite;

cursor:pointer;

}

.modal-btn:hover{

transform:translateY(-3px);

box-shadow:0 0 30px rgba(212,175,55,.45);

}

.close-modal{

position:absolute;

top:20px;

right:24px;

font-size:32px;

cursor:pointer;

}

@media (max-width:768px){

.unlock-box{

padding:30px 24px;

}

.modal-btn{

width:100%;

text-align:center;

}

}

.free-download-box{

max-width:620px;

margin:55px auto 0;

padding:40px;

text-align:center;

border-radius:22px;

border:1px solid rgba(212,175,55,.35);

background:linear-gradient(180deg,#111,#090909);

box-shadow:0 0 40px rgba(212,175,55,.08);

}

.free-badge{

display:inline-block;

padding:8px 18px;

border-radius:999px;

background:#D4AF37;

color:#000;

font-weight:700;

font-size:13px;

letter-spacing:2px;

margin-bottom:20px;

}

.free-download-box h3{

font-family:'Cinzel',serif;

font-size:34px;

margin-bottom:18px;

}

.free-download-box p{

color:#B5B5B5;

margin-bottom:28px;

}

.free-benefit{

margin-top:24px;

display:flex;

flex-direction:column;

gap:12px;

align-items:center;

font-size:16px;

color:#D4AF37;

opacity:.95;

font-weight:500;

}

@keyframes goldPulse{

0%{

box-shadow:0 0 0 rgba(212,175,55,.25);

}

50%{

box-shadow:0 0 30px rgba(212,175,55,.55);

}

100%{

box-shadow:0 0 0 rgba(212,175,55,.25);

}

}

@keyframes goldPulse{

0%{

box-shadow:0 0 0 rgba(212,175,55,.15);

}

50%{

box-shadow:0 0 28px rgba(212,175,55,.55);

}

100%{

box-shadow:0 0 0 rgba(212,175,55,.15);

}

}

/* ===========================
   KIT FORM
=========================== */

.formkit-form {
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 30px !important;
}

.formkit-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.formkit-input {
    width: 100% !important;
    height: 64px !important;

    background: #111 !important;
    border: 1px solid rgba(212,175,55,.35) !important;
    border-radius: 14px !important;

    color: white !important;
    font-size: 18px !important;

    padding: 0 22px !important;
}

.formkit-input::placeholder{
    color:#888 !important;
}

.formkit-submit {
    width:100% !important;

    height:70px !important;

    border:none !important;

    border-radius:18px !important;

    background:linear-gradient(135deg,#b97a14,#d4af37) !important;

    color:#fff !important;

    font-size:24px !important;

    font-weight:700 !important;

    cursor:pointer !important;

    transition:.25s !important;

    box-shadow:0 0 30px rgba(212,175,55,.25) !important;
}

.formkit-submit:hover{

    transform:translateY(-2px);

    box-shadow:0 0 40px rgba(212,175,55,.45) !important;

}

.formkit-powered-by-convertkit{

    display:none !important;

}