:root {
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --secondary: #212121;
    --accent: #E91E63;
    --text: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 800px;
}

.highlight {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 193, 7, 0.2);
    z-index: -1;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    text-align: center;
    background: var(--white);
}

.main-logo {
    max-height: 80px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge {
    background: var(--secondary);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #000;
    transform: translateY(-3px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.secure-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.secure-badges i {
    color: #4CAF50;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-item i {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Ideal For */
.ideal-for {
    padding: 100px 0;
}

.ideal-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ideal-img {
    flex: 1;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ideal-content {
    flex: 1;
}

.text-left {
    text-align: left;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: #4CAF50;
    font-size: 1.4rem;
}

/* Bonuses */
.bonuses {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
}

.bonuses .section-title {
    color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.bonus-img img {
    width: 180px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.bonus-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.price-val {
    display: block;
    text-decoration: line-through;
    color: #999;
    margin-top: 15px;
}

.free-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.testimonial-img {
    max-width: 320px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Format */
.format {
    padding: 80px 0;
    background: var(--bg-light);
}

.format-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.format-card i {
    font-size: 4rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: radial-gradient(circle, #fff8e1 0%, #fff 100%);
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.price-tag {
    margin: 30px 0;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 20px;
}

.new-price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
}

.pricing-note {
    margin-bottom: 30px;
    color: var(--text-light);
}

.guarantee-box {
    background: #f0fdf4;
    border: 1px dashed #4CAF50;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: #4CAF50;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 2.5rem;
    color: #ccc;
}

.payment-methods i:hover {
    color: var(--secondary);
    transition: color 0.3s ease;
}

/* Footer */
.main-footer {
    padding: 60px 0;
    background: var(--secondary);
    color: #aaa;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Notification Popups */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
}

.notification img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.notif-content p {
    font-size: 0.9rem;
    font-weight: 600;
}

.notif-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero .container, .ideal-layout {
        flex-direction: column;
        text-align: center;
    }
    .hero-title { font-size: 2.8rem; }
    .problem-grid, .features-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
    .text-left { text-align: center; }
    .check-list li { justify-content: center; }
    .bonus-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .new-price { font-size: 3.5rem; }
    .pricing-box { padding: 30px 20px; }
}
