:root {
    --primary: #f97316; 
    --primary-hover: #ea580c;
    --accent: #fbbf24; 
    --primary-soft: #fff7ed;
    --secondary: #1e293b; 
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
    --glass: rgba(255, 255, 255, 0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fafafa;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.bg-blobs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.blob { position: absolute; filter: blur(100px); border-radius: 50%; opacity: 0.15; animation: move 20s infinite alternate; }
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--accent); bottom: -100px; right: -50px; }
@keyframes move { from { transform: translate(0, 0); } to { transform: translate(100px, 50px); } }

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}

.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon {
    width: 45px; height: 45px; background: var(--primary); 
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; transform: rotate(-10deg);
}
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; display: inline-flex; align-items: center; }
.logo-text .rev { color: var(--primary); }
.logo-text .no { color: var(--text-dark); }

.inline-logo { font-size: inherit; vertical-align: middle; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 700; transition: 0.3s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }

.btn-login {
    background: var(--secondary); color: white; padding: 12px 25px;
    border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
}

/* Hero Section */
.hero { 
    padding: 30px 8% 80px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 40px; 
    min-height: 80vh;
}
.hero-content { flex: 1.2; z-index: 2; }
.top-label { 
    display: inline-block; padding: 8px 16px; background: var(--primary-soft);
    color: var(--primary); border-radius: 50px; font-weight: 800; font-size: 0.85rem; margin-bottom: 20px;
}
.hero-content h1 { 
    font-family: 'Outfit', sans-serif; 
    font-size: 4rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: var(--text-dark);
}
.hero-content p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 580px; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 50px; }
.btn-hero-main {
    background: var(--primary); color: white; padding: 18px 40px;
    border-radius: 15px; text-decoration: none; font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3); transition: 0.3s;
    display: inline-block;
}
.btn-hero-main:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4); }

.hero-stats { display: flex; gap: 40px; }
.stat-item b { display: block; font-size: 1.8rem; color: var(--text-dark); font-family: 'Outfit'; }
.stat-item span { color: var(--text-light); font-size: 0.9rem; font-weight: 600; }

.hero-image { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }
.image-wrapper { position: relative; width: 100%; max-width: 550px; }
.hero-image img { width: 100%; height: auto; animation: float 5s ease-in-out infinite; object-fit: contain; }

.floating-card {
    position: absolute; background: white; padding: 15px 25px; border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); font-weight: 800; display: flex; align-items: center; gap: 10px;
    white-space: nowrap; z-index: 5;
}
.floating-card i { color: #22c55e; }
.c1 { top: 15%; right: -5%; animation: float 6s ease-in-out infinite reverse; }
.c2 { bottom: 15%; left: -5%; animation: float 7s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Payments */
.payment-section { padding: 0 8%; margin-top: -30px; }
.payment-strip { background: white; padding: 40px; border-radius: 30px; box-shadow: var(--shadow); overflow: hidden; }
.strip-track { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.strip-track img { height: 35px; opacity: 0.6; grayscale: 100%; transition: 0.3s; }
.strip-track img:hover { opacity: 1; grayscale: 0; transform: scale(1.1); }

/* Offers Section - Optimized for Center Alignment */
#offers { padding: 100px 8%; }
.offers-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center; /* Centers cards if they don't fill the row */
    align-items: stretch;
}

.offer-card { 
    background: white; padding: 30px; border-radius: 30px; 
    border: 1px solid #eee; position: relative; transition: 0.4s;
    width: 100%;
    max-width: 400px; /* Limits width on mobile for better center feel */
    margin: 0 auto; /* Centers the card within its grid cell */
}

.offer-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: var(--shadow); }
.offer-tag { 
    position: absolute; top: 20px; right: 20px; background: #f0fdf4; 
    color: #16a34a; padding: 5px 12px; border-radius: 8px; font-weight: 800; font-size: 0.7rem;
}
.offer-tag.gold { background: #fef3c7; color: #d97706; }

.offer-head { display: flex; gap: 15px; align-items: center; margin-bottom: 25px; }
.offer-icon { 
    width: 60px; height: 60px; background: var(--primary-soft); 
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.6rem;
}
.offer-head h3 { font-size: 1.3rem; }
.offer-sub { color: var(--text-light); font-size: 0.85rem; font-weight: 600; }

.offer-perks { display: flex; justify-content: space-between; margin-bottom: 25px; color: var(--text-light); font-size: 0.9rem; font-weight: 600; }
.offer-perks i { color: #22c55e; margin-right: 5px; }

.offer-payout { 
    display: flex; justify-content: space-between; align-items: center; 
    background: #f8fafc; padding: 15px 20px; border-radius: 20px;
    font-size: 1.4rem; font-weight: 900; color: var(--primary);
}
.offer-payout a { 
    background: var(--primary); color: white; padding: 8px 20px; 
    border-radius: 12px; text-decoration: none; font-size: 0.95rem; font-weight: 700;
}

/* Features */
.features-section { background: transparent; padding: 100px 8%; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-content: center; }
.feat-box { 
    padding: 40px; background: white; border-radius: 35px; text-align: center; border: 1px solid #f1f5f9; 
    transition: 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.02); max-width: 400px; margin: 0 auto;
}
.feat-box:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--primary-soft); }
.feat-icon { 
    font-size: 2.8rem; color: var(--primary); margin-bottom: 25px; background: var(--primary-soft);
    width: 80px; height: 80px; line-height: 80px; border-radius: 22px; margin: 0 auto 25px;
}
.feat-box h3 { font-family: 'Outfit'; font-size: 1.5rem; margin-bottom: 15px; }
.feat-box p { color: var(--text-light); font-weight: 500; }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.section-title h2 { font-size: 3rem; font-family: 'Outfit'; }
.section-title span { color: var(--primary); }
.section-title p { color: var(--text-light); font-weight: 600; margin-top: 10px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.faq-item { background: white; padding: 25px; border-radius: 20px; margin-bottom: 15px; border: 1px solid #eee; }
.faq-item h4 { font-size: 1.1rem; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; }
.faq-item h4::after { content: '+'; color: var(--primary); font-size: 1.4rem; }
.faq-answer { margin-top: 15px; color: var(--text-light); font-weight: 600; }

/* Notification */
.notif {
    position: fixed; bottom: 30px; left: 30px; background: white;
    padding: 15px 25px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px; z-index: 10000;
    transform: translateX(-150%); transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.notif.active { transform: translateX(0); }
.notif-img-box { 
    width: 45px; height: 45px; background: var(--primary); color: white; 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.notif-text b { display: block; color: var(--primary); font-size: 0.85rem; }
.notif-text span { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

/* Media Queries */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-image { flex: 0.8; }
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 30px; min-height: auto; gap: 60px; }
    .hero-content { flex: 1; width: 100%; }
    .hero-content h1 { font-size: 3.2rem; }
    .hero-content p { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { width: 100%; max-width: 600px; margin: 0 auto; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stat-item b { font-size: 1.4rem; }
    .section-title h2 { font-size: 2.2rem; }
    .payment-strip { padding: 25px; }
    .strip-track { gap: 30px; }
    .notif { width: 90%; left: 5%; bottom: 20px; }
    .floating-card { display: none; }
    
    /* Ensuring Center Alignment on Mobile */
    .offers-container { padding: 0 15px; gap: 20px; }
    .offer-card { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .btn-hero-main { width: 100%; text-align: center; }
}
