/* =====================================
PREMIUM PAGE
===================================== */

.premium-title{
text-align:center;
padding:80px 20px 40px;
max-width:1000px;
margin:auto;
}

.premium-title h1{
font-size:3rem;
color:#17351F;
margin-bottom:20px;
}

.premium-title p{
font-size:1.15rem;
color:#555;
max-width:700px;
margin:auto;
}

/* =====================================
PRICE CARD
===================================== */

.price-card{
background:#C9A227;
color:#000;
border-radius:20px;
max-width:320px;
margin:40px auto 0;
padding:30px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.price{
font-size:4rem;
font-weight:700;
line-height:1;
}

.period{
font-size:1.2rem;
font-weight:600;
margin-top:10px;
}

.price-card p{
margin-top:15px;
font-size:.95rem;
}

/* =====================================
UPGRADE SCREENSHOT
===================================== */

.premium-highlight{
text-align:center;
padding:40px 20px 80px;
}

.premium-highlight img{
width:100%;
max-width:340px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.2);
}

/* =====================================
BENEFITS
===================================== */

.benefits{
padding:80px 20px;
background:#F7F5EE;
}

.benefits h2{
text-align:center;
color:#17351F;
margin-bottom:50px;
}

.benefits-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.benefit-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 6px 20px rgba(0,0,0,.08);
transition:.2s ease;
}

.benefit-card:hover{
transform:translateY(-5px);
}

.benefit-card h3{
color:#17351F;
margin-bottom:15px;
}

.benefit-card p{
color:#666;
line-height:1.6;
}

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

.screenshots{
padding:80px 20px;
text-align:center;
}

.screenshots h2{
color:#17351F;
margin-bottom:40px;
}

.screenshots-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.screenshots-grid img{
width:100%;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,.1);
transition:.2s ease;
}

.screenshots-grid img:hover{
transform:scale(1.02);
}

/* =====================================
COMPARISON TABLE
===================================== */

.comparison{
padding:80px 20px;
background:#F7F5EE;
}

.comparison h2{
text-align:center;
color:#17351F;
margin-bottom:40px;
}

.comparison table{
width:100%;
max-width:1000px;
margin:auto;
border-collapse:collapse;
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.comparison th{
background:#17351F;
color:white;
padding:18px;
text-align:left;
}

.comparison td{
padding:16px 18px;
border-bottom:1px solid #eee;
}

.comparison tr:last-child td{
border-bottom:none;
}

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

.cta-section{
text-align:center;
padding:100px 20px;
background:#17351F;
color:white;
}

.cta-section h2{
font-size:2.5rem;
margin-bottom:20px;
}

.cta-section p{
max-width:600px;
margin:auto auto 40px;
font-size:1.1rem;
}

.upgrade-btn{
display:inline-block;
background:#C9A227;
color:#000;
text-decoration:none;
font-weight:700;
padding:16px 32px;
border-radius:10px;
transition:.2s ease;
}

.upgrade-btn:hover{
transform:translateY(-2px);
}

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

@media(max-width:900px){

.benefits-grid{
    grid-template-columns:1fr;
}

.screenshots-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.premium-title h1{
    font-size:2.2rem;
}

.price{
    font-size:3rem;
}

.screenshots-grid{
    grid-template-columns:1fr;
}

.comparison{
    overflow-x:auto;
}

}
