/*==============================
Hero Section
==============================*/

.hero{

padding:140px 8% 80px;

background:linear-gradient(180deg,#fff6f8,#ffffff);

}

.hero-container{

max-width:1300px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

flex-wrap:wrap;

}

.hero-content{

flex:1;

min-width:320px;

}

.badge{

display:inline-block;

background:#ffe5ec;

color:#d81b60;

padding:10px 18px;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.hero-content h1{

font-size:56px;

line-height:1.2;

font-weight:700;

color:#1E3A8A;

margin-bottom:20px;

}

.hero-content h1 span{

color:#D81B60;

}

.hero-content p{

font-size:18px;

line-height:1.8;

color:#555;

max-width:620px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-bottom:45px;

}

.btn-primary{

background:#D81B60;

color:#fff;

padding:15px 28px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

background:#c2185b;

}

.btn-secondary{

background:#fff;

color:#1E3A8A;

padding:15px 28px;

border-radius:50px;

border:2px solid #1E3A8A;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:#1E3A8A;

color:#fff;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

}

.hero-stats div{

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

text-align:center;

}

.hero-stats h2{

color:#1E3A8A;

font-size:28px;

margin-bottom:8px;

}

.hero-stats p{

font-size:14px;

margin:0;

color:#666;

}

.hero-image{

flex:1;

text-align:center;

min-width:300px;

}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 40px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .18));
  animation: float 4s ease-in-out infinite;
}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.hero{

padding-top:120px;

text-align:center;

}

.hero-content h1{

font-size:40px;

}

.hero-container{

flex-direction:column-reverse;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

.hero-content p{

margin:auto auto 30px;

}

.hero-buttons{

justify-content:center;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:32px;

}

.hero-content p{

font-size:16px;

}

.hero-stats{

grid-template-columns:1fr;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}

/*==============================
Features Section
==============================*/

.features{

padding:90px 8%;

background:#fff;

}

.section-title{

text-align:center;

max-width:760px;

margin:auto auto 60px;

}

.section-title span{

display:inline-block;

padding:8px 18px;

background:#FFE5EC;

color:#D81B60;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.section-title h2{

font-size:42px;

color:#1E3A8A;

margin-bottom:18px;

}

.section-title p{

font-size:17px;

color:#666;

line-height:1.8;

}

.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.feature-card{

background:#fff;

padding:35px 25px;

border-radius:22px;

box-shadow:0 12px 30px rgba(0,0,0,.06);

transition:.35s;

text-align:center;

border:1px solid #f5f5f5;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.feature-card .icon{

width:70px;

height:70px;

margin:auto;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

background:#FFE5EC;

margin-bottom:20px;

}

.feature-card h3{

font-size:22px;

color:#1E3A8A;

margin-bottom:15px;

}

.feature-card p{

font-size:15px;

color:#666;

line-height:1.7;

}

/*==============================
Responsive
==============================*/

@media(max-width:1100px){

.features-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

.section-title h2{

font-size:32px;

}

}

@media(max-width:576px){

.features-grid{

grid-template-columns:1fr;

}

.feature-card{

padding:30px 20px;

}

}

/*==============================
Premium Plans
==============================*/

.premium{

padding:100px 8%;

background:#FFF7FA;

}

.pricing-grid{

max-width:1200px;

margin:60px auto 0;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.pricing-card{

background:#fff;

border-radius:25px;

padding:40px 30px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

position:relative;

transition:.35s;

}

.pricing-card:hover{

transform:translateY(-10px);

}

.pricing-card h3{

font-size:28px;

color:#1E3A8A;

margin-bottom:20px;

}

.price{

font-size:46px;

font-weight:700;

color:#D81B60;

margin-bottom:25px;

}

.price span{

font-size:18px;

color:#777;

}

.pricing-card ul{

list-style:none;

margin-bottom:35px;

}

.pricing-card ul li{

padding:12px 0;

font-size:16px;

color:#555;

border-bottom:1px solid #eee;

}

.plan-btn{

display:inline-block;

padding:15px 35px;

border-radius:50px;

background:#1E3A8A;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.plan-btn:hover{

background:#D81B60;

}

.popular{

border:3px solid #D81B60;

transform:scale(1.05);

}

.badge-popular{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#D81B60;

color:#fff;

padding:8px 20px;

border-radius:50px;

font-size:13px;

font-weight:600;

}

.premium-btn{

background:#D81B60;

}

.premium-btn:hover{

background:#c2185b;

}

/*==============================
Responsive
==============================*/

@media(max-width:992px){

.pricing-grid{

grid-template-columns:1fr;

}

.popular{

transform:none;

}

}

/*==============================
APP SCREENSHOTS
==============================*/

.screenshots{

padding:100px 8%;

background:#fff;

}

.slider{

max-width:900px;

margin:auto;

position:relative;

overflow:hidden;

}

.slides{

display:flex;

justify-content:center;

align-items:center;

}

.slide{

display:none;

width:280px;

border-radius:28px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

transition:.5s;

}

.slide.active{

display:block;

animation:fade .5s ease;

}

@keyframes fade{

from{

opacity:.3;

transform:scale(.95);

}

to{

opacity:1;

transform:scale(1);

}

}

.prev,

.next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#D81B60;

color:#fff;

font-size:24px;

cursor:pointer;

transition:.3s;

}

.prev:hover,

.next:hover{

background:#1E3A8A;

}

.prev{

left:10px;

}

.next{

right:10px;

}

@media(max-width:768px){

.slide{

width:220px;

}

.prev,

.next{

width:42px;

height:42px;

font-size:20px;

}

}