/* ==========================
   Pikzy - Premium SaaS Theme
   Part 1
========================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fffb;
    color:#1f2937;
    line-height:1.7;
}

/* Theme */
:root{
    --primary:#2E7D32;
    --primary-dark:#1B5E20;
    --secondary:#66BB6A;
    --light:#ffffff;
    --bg:#f8fffb;
    --text:#1f2937;
    --muted:#6b7280;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --radius:18px;
}

/* Links */
a{
    text-decoration:none;
    color:inherit;
}

img{
    width:100%;
    display:block;
}

/* Sections */
section{
    padding:90px 8%;
}

/* Heading */
h1,h2,h3{
    color:var(--text);
}

.section-subtitle{
    text-align:center;
    color:var(--muted);
    margin-top:10px;
    margin-bottom:50px;
}

/* ==========================
   Navbar
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar{
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:28px;
}

.nav-links a{
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ==========================
   Hero
========================== */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    background:
    radial-gradient(circle at top left,#c8f7d0 0%,transparent 40%),
    radial-gradient(circle at bottom right,#b7f3c5 0%,transparent 35%),
    #f8fffb;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-text p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:35px;
    max-width:550px;
}

/* Button */

.play-btn{
    display:inline-block;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:white;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(46,125,50,.3);
    transition:.3s;
}

.play-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(46,125,50,.35);
}

/* Phone */

.hero-image{
    display:flex;
    justify-content:center;
}

.phone-mockup{
    width:320px;
    background:white;
    border-radius:35px;
    padding:15px;
    box-shadow:
    0 35px 80px rgba(0,0,0,.15);
    animation:float 4s ease-in-out infinite;
}

.phone-mockup img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}

/* ==========================
   Titles
========================== */

h2{
    font-size:42px;
    text-align:center;
    margin-bottom:10px;
}

/* ==========================
   Animations
========================== */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* ==========================================
   FEATURES SECTION
========================================== */

#features{
    background:#ffffff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:40px;
}

.card{
    background:rgba(255,255,255,.9);
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid rgba(46,125,50,.08);
    transition:all .35s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(46,125,50,.15);
}

.card h3{
    color:var(--primary);
    margin-bottom:20px;
    font-size:24px;
}

.card ul{
    list-style:none;
}

.card li{
    padding:10px 0;
    border-bottom:1px solid #eef2f3;
    color:var(--muted);
}

.card li:last-child{
    border-bottom:none;
}

.card li::before{
    content:"✓ ";
    color:var(--primary);
    font-weight:bold;
}

/* ==========================================
   SCREENSHOTS
========================================== */

#screenshots{
    background:linear-gradient(180deg,#f8fffb,#eefcf1);
}

.screenshots-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
    justify-items:center;
}

.shot{
    width:220px;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
}

.shot:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(46,125,50,.18);
}

.shot img{
    width:100%;
    display:block;
    border-radius:20px;
}

/* ==========================================
   CONTACT
========================================== */

#contact{
    background:#ffffff;
}

.contact-card{
    max-width:700px;
    margin:auto;
    padding:40px;
    border-radius:20px;
    background:white;
    text-align:center;
    box-shadow:var(--shadow);
}

.contact-card p{
    margin:20px 0;
    color:var(--muted);
}

.contact-card strong{
    color:var(--primary);
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:40px 20px;
}

.footer-links{
    margin:20px 0;
}

.footer-links a{
    color:white;
    margin:0 15px;
    transition:.3s;
}

.footer-links a:hover{
    opacity:.8;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding-top:140px;
}

.hero-text p{
margin:auto auto 35px;
}

.phone-mockup{
margin-top:40px;
}

.screenshots-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

.nav-links{
display:none;
position:absolute;
top:75px;
left:0;
width:100%;
background:white;
padding:25px;
flex-direction:column;
gap:18px;
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero-text h1{
font-size:42px;
}

h2{
font-size:34px;
}

section{
padding:70px 6%;
}

.phone-mockup{
width:260px;
}

.contact-card{
padding:25px;
}

}

@media(max-width:600px){
    .screenshots-grid{
        grid-template-columns:1fr;
    }

    .shot{
        width:260px;
    }
}

@media(max-width:480px){

.hero-text h1{
font-size:34px;
}

.hero-text p{
font-size:16px;
}

.play-btn{
padding:14px 24px;
font-size:15px;
}

.logo{
font-size:24px;
}

.navbar{
padding:15px 6%;
}

}

.nav-links a.active{
    color: var(--primary);
    font-weight: 600;
}