/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    color: #9ca3af;
}

/* STORE BUTTONS */
.store-buttons img {
    height: 45px;
    margin-right: 10px;
}

/* PHONES */
.phone-main {
    width: 260px;
    position: relative;
    z-index: 2;
}

.phone-back {
    width: 240px;
    position: absolute;
    top: 40px;
    left: 50px;
    opacity: 0.5;
}

/* FLOATING VEG */
.floating {
    position: absolute;
    width: 60px;
}

.veg1 { top: 10%; right: 10%; }
.veg2 { bottom: 10%; left: 20%; }

/* WORKS */
.works {
    background: #fff;
    padding: 80px 0;
}

.icon {
    font-size: 2rem;
    background: #22c55e;
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
}

/* SHOWCASE */
.showcase {
    padding: 80px 0;
    background: #f0fdf4;
}

.app-screen {
    width: 250px;
}

/* BUTTON */
.btn-main {
    background: #22c55e;
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
}

/* FOOTER */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0;
}

.footer input {
    padding: 10px;
    border-radius: 20px;
    border: none;
}

.footer button {
    background: #22c55e;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin-left: 10px;
}

/* WORKS SECTION */
.works {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* TITLES */
.section-tag {
    color: #22c55e;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-sub {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* CARD */
.work-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #22c55e;
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ICON */
.work-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* TEXT */
.work-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* HOVER EFFECT */
.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* HERO */
.hero {
    background: radial-gradient(circle at 20% 30%, #1e293b, #020617);
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

/* TAGLINE */
.tagline {
    color: #22c55e;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* TITLE */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero h1 span {
    background: linear-gradient(45deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESC */
.hero-desc {
    color: #cbd5f5;
    margin-top: 15px;
}

/* BUTTON */
.btn-main {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 30px;
    padding: 12px 25px;
    border: none;
    color: white;
}

/* STATS */
.hero-stats h4 {
    margin: 0;
    font-weight: 700;
}

.hero-stats span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* RIGHT SIDE */
.hero-right {
    position: relative;
}

/* GLOW */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #22c55e;
    filter: blur(120px);
    top: 20%;
    left: 30%;
    z-index: 0;
}

/* PHONES */
.phone-main {
    width: 260px;
    position: relative;
    z-index: 2;
}

.phone-back {
    width: 240px;
    position: absolute;
    top: 40px;
    left: 60px;
    opacity: 0.5;
}

/* FLOATING BADGES */
.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.08);
    padding: 8px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    animation: float 4s ease-in-out infinite;
}

.badge1 { top: 10%; left: 10%; }
.badge2 { top: 50%; right: 0; }
.badge3 { bottom: 10%; left: 20%; }

/* FLOATING VEG */
.floating {
    position: absolute;
    width: 60px;
}

.veg1 { top: 5%; right: 10%; }
.veg2 { bottom: 5%; left: 10%; }

/* ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* MOBILE */
@media(max-width:768px){
    .hero h1 {
        font-size: 2rem;
    }

    .phone-main {
        width: 200px;
    }
}

/* SHOWCASE */
.showcase {
    padding: 100px 0;
    background: #f0fdf4;
}

/* LEFT SIDE */
.showcase-left {
    position: relative;
}

/* GLOW */
.showcase-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #22c55e;
    filter: blur(120px);
    top: 20%;
    left: 30%;
    z-index: 0;
}

/* APP IMAGES */
.app-main {
    width: 260px;
    position: relative;
    z-index: 2;
}

.app-second {
    width: 220px;
    position: absolute;
    top: 40px;
    left: 80px;
    opacity: 0.6;
}

/* BADGES */
.showcase-badge {
    position: absolute;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.b1 { top: 10%; left: 10%; }
.b2 { bottom: 10%; right: 10%; }

/* TEXT */
.section-title span {
    color: #22c55e;
}

/* FEATURE LIST */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* MOBILE */
@media(max-width:768px){
    .app-main {
        width: 200px;
    }
}

/* FOOTER */
.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 80px 0 30px;
}

/* LOGO */
.logo-text {
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: #22c55e;
}

/* TEXT */
.footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* LINKS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: white;
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: white;
}

.newsletter button {
    background: #22c55e;
    border: none;
    padding: 10px 20px;
    color: white;
}

/* SOCIAL */
.social a {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #94a3b8;
    transition: 0.3s;
}

.social a:hover {
    color: white;
}

/* STORE BUTTONS */
.store-buttons img {
    height: 40px;
    margin-right: 10px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
}

