:root {
    --primary: #166534; /* Darker rich green */
    --primary-light: #22c55e;
    --primary-dark: #14532d;
    --accent: #facc15; /* High converting yellow/gold */
    --accent-hover: #eab308;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 45px; 
    -webkit-user-select: none;
    user-select: none;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section { padding: 90px 0; }
.py-10 { padding-top: 15px; padding-bottom: 15px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.bg-light { background-color: #f1f5f9; }
.bg-dark { background-color: var(--primary-dark); }
.bg-white { background-color: var(--bg-white); }
.text-white { color: var(--bg-white); }
.text-accent { color: var(--accent); }
.text-green { color: var(--primary); }
.text-green-light { color: var(--primary-light); }
.text-red { color: #dc2626; }
.text-center { text-align: center; }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.gap-15 { gap: 20px; }
.w-100 { width: 100%; }

.section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}
.section-title h2 { font-size: 2.4rem; color: var(--primary-dark); margin-bottom: 15px; font-weight: 900; line-height: 1.3;}
.section-title p { font-size: 1.2rem; color: var(--text-light); }
.divider { height: 5px; width: 100px; background-color: var(--accent); margin: 25px auto; border-radius: 3px; }

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: linear-gradient(90deg, #b91c1c, #991b1b, #b91c1c);
    color: var(--bg-white);
    border-bottom: 3px solid var(--accent);
    overflow: hidden; white-space: nowrap;
    padding: 12px 0; z-index: 9999;
    font-size: 16px; font-weight: 700;
}
.marquee-text {
    display: inline-block; padding-left: 100%;
    animation: marquee 25s linear infinite;
}
.marquee-text span { margin: 0 20px; color: var(--accent); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Trust Badges Top */
.top-trust-badges { border-bottom: 1px solid var(--border); font-size: 1rem; font-weight: 700; color: var(--text-dark); background: #f0fdf4; }
.icon-check { font-weight: 900; margin-right: 5px; font-size: 1.1rem;}

/* Buttons */
.btn {
    display: inline-block; text-decoration: none; text-align: center;
    border: none; cursor: pointer; font-weight: 900; border-radius: 50px;
    transition: all 0.3s ease; text-transform: uppercase;
}
.btn-primary {
    background: linear-gradient(180deg, var(--accent), #d97706);
    color: var(--bg-white); padding: 20px 40px; font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
    border: 3px solid #fef08a; text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(250, 204, 21, 0.7); filter: brightness(1.1);}

.pulse { animation: pulse-animation 2s infinite; }
.pulse-fast { animation: pulse-fast 1.5s infinite; }
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(250, 204, 21, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}
@keyframes pulse-fast {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.blink-text { animation: blink 1.2s infinite; }

/* Hero Section */
.hero { background: radial-gradient(circle at center, #ffffff 0%, #f0fdf4 100%); }
.hero-container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1.2; }
.hero-image { flex: 1; position: relative; text-align: center; }

.badge-accent {
    display: inline-block; background: var(--primary); color: white;
    padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 1rem; margin-bottom: 20px;
    box-shadow: var(--shadow-sm); border: 2px solid var(--primary-light);
}
.main-headline { font-size: 3rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; color: var(--primary-dark); }
.hero-content .subtitle { font-size: 1.3rem; color: var(--text-light); margin-bottom: 30px; line-height: 1.6; }

.hero-benefits p {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--primary-dark);
    display: flex; align-items: center; gap: 10px;
}

.price-box-hero {
    background: #fff; padding: 25px; border-radius: 20px; border: 3px dashed var(--primary);
    box-shadow: var(--shadow-lg); text-align: center; position: relative;
}
.offer-tag {
    background: #dc2626; color: white; display: inline-block; padding: 8px 20px;
    border-radius: 30px; font-weight: 900; font-size: 1.1rem; margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.stock-warning { color: #dc2626; font-weight: 800; font-size: 1.2rem; text-align: center; margin-top: 20px; }

/* Image Placeholder for Hero */
.image-placeholder {
    width: 100%; max-width: 450px; aspect-ratio: 3/4;
    background: #e2e8f0; border: 4px dashed #94a3b8; border-radius: 25px;
    display: flex; align-items: center; justify-content: center;
    color: #475569; font-weight: 800; text-align: center; margin: 0 auto;
    font-size: 1.4rem; padding: 20px;
}
/* When user adds actual img */
.actual-img { width: 100%; height: auto; border-radius: 25px; box-shadow: var(--shadow-xl); }

.floating-badge {
    position: absolute; bottom: 30px; left: -30px;
    background: white; padding: 15px 25px; border-radius: 20px;
    box-shadow: var(--shadow-xl); font-weight: 800; color: var(--primary-dark);
    border: 2px solid var(--accent); animation: float 4s ease-in-out infinite; font-size: 1.1rem;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Problem Section */
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.problem-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
    padding: 35px 25px; border-radius: 25px; transition: transform 0.3s;
    box-shadow: var(--shadow-lg);
}
.problem-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); border-color: var(--accent);}
.problem-card .icon { font-size: 3.5rem; margin-bottom: 20px; }
.problem-card h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.5rem; font-weight: 800;}
.problem-card p { font-size: 1.1rem; color: #e2e8f0; line-height: 1.6;}

/* Steps Mechanism */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px;
}
.step-card {
    background: var(--bg-white); padding: 40px 30px; border-radius: 25px;
    text-align: center; box-shadow: var(--shadow-lg); position: relative;
    border: 2px solid var(--border); transition: all 0.3s;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.step-number {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 60px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 900; border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}
.step-card h3 { font-size: 1.5rem; color: var(--primary-dark); margin: 20px 0 15px; }
.step-card p { font-size: 1.1rem; color: var(--text-light); }

/* Ingredients */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.ingredient-card {
    background: var(--bg-white); padding: 40px 30px; border-radius: 25px;
    text-align: center; box-shadow: var(--shadow-md); transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.ingredient-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.ingredient-card img { width: 140px; height: 140px; object-fit: cover; border-radius: 50%; margin-bottom: 25px; box-shadow: var(--shadow-md); border: 3px solid #f0fdf4;}
.ingredient-card h3 { color: var(--primary-dark); font-size: 1.6rem; margin-bottom: 15px; font-weight: 800;}
.ingredient-card p { color: var(--text-light); font-size: 1.1rem; line-height: 1.6; }

/* Guarantee */
.guarantee-box {
    background: rgba(255,255,255,0.05); padding: 50px 30px; border-radius: 30px;
    border: 2px dashed var(--accent); box-shadow: var(--shadow-xl);
}

/* Comparison */
.compare-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.compare-box {
    flex: 1; min-width: 300px; max-width: 550px; padding: 50px 40px;
    border-radius: 30px; color: white; box-shadow: var(--shadow-lg);
}
.compare-box.ours { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); transform: scale(1.05); z-index: 2; border: 4px solid var(--accent); }
.compare-box.theirs { background: linear-gradient(135deg, #475569, #1e293b); }
.icon-top { font-size: 4rem; text-align: center; margin-bottom: 25px; }
.compare-box h3 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; border-bottom: 2px solid rgba(255,255,255,0.2); padding-bottom: 20px; font-weight: 800;}
.compare-box ul { list-style: none; }
.compare-box li { margin-bottom: 20px; font-size: 1.2rem; display: flex; align-items: flex-start; gap: 15px; line-height: 1.5;}
.icon-cross { color: #fca5a5; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.review-card {
    background: var(--bg-main); padding: 40px; border-radius: 25px;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
    position: relative;
}
.review-card::before {
    content: '"'; position: absolute; top: 10px; right: 20px;
    font-size: 6rem; color: #cbd5e1; opacity: 0.5; font-family: serif;
}
.stars { color: #fbbf24; font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 15px; }
.review-card h4 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 20px; font-weight: 800; }
.review-card p { color: var(--text-dark); font-style: italic; margin-bottom: 25px; font-size: 1.15rem; line-height: 1.7; position: relative; z-index: 1;}
.reviewer { font-weight: 800; color: var(--primary); text-align: right; font-size: 1.1rem;}

/* Form Section */
.order-section { background: linear-gradient(to bottom, var(--bg-main), #dcfce7); }
.form-wrapper {
    max-width: 650px; margin: 0 auto; background: var(--bg-white);
    padding: 60px 50px; border-radius: 30px; box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-light); position: relative;
}
.limited-stock {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    background: #dc2626; color: white; padding: 12px 30px; border-radius: 30px;
    font-weight: 900; font-size: 1.2rem; white-space: nowrap; box-shadow: var(--shadow-lg);
    border: 2px solid white;
}
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { color: var(--primary-dark); font-size: 2.5rem; font-weight: 900; margin-bottom: 10px;}
.form-header p { font-size: 1.1rem; color: var(--text-light); font-weight: 600;}
.offer-highlight { color: #dc2626; font-size: 1.8rem; font-weight: 900; margin: 15px 0; background: #fee2e2; padding: 15px; border-radius: 15px; border: 2px dashed #dc2626;}

.package-select { margin-bottom: 30px; }
.full-select {
    width: 100%; padding: 18px; border: 2px solid var(--primary-light);
    border-radius: 15px; font-size: 1.2rem; font-weight: 800; color: var(--primary-dark);
    background: #f0fdf4; outline: none; cursor: pointer; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.input-group { margin-bottom: 25px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 18px; border: 2px solid #cbd5e1;
    border-radius: 15px; font-size: 1.1rem; outline: none; transition: all 0.3s;
    background: #f8fafc; font-weight: 600;
}
.input-group input:focus, .input-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 5px rgba(22, 101, 52, 0.1); }
.input-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
    width: 100%; background: linear-gradient(180deg, var(--accent), #d97706);
    color: var(--bg-white); padding: 22px; font-size: 1.5rem;
    border: 3px solid #fef08a; border-radius: 15px; cursor: pointer; font-weight: 900;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4); transition: all 0.3s;
    text-transform: uppercase; text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(250, 204, 21, 0.6); filter: brightness(1.05); }
.secure-text { text-align: center; margin-top: 25px; font-size: 1rem; font-weight: 800; color: var(--primary); }
.trust-icons span { font-weight: 800; color: var(--primary-dark); font-size: 1.1rem; background: #f0fdf4; padding: 8px 15px; border-radius: 20px; border: 1px solid var(--primary-light);}

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-white); margin-bottom: 20px; padding: 30px; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform 0.2s;}
.faq-item:hover { transform: translateX(5px); border-color: var(--primary-light);}
.faq-item h4 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 15px; font-weight: 800;}
.faq-item p { color: var(--text-light); font-size: 1.1rem; line-height: 1.6;}

/* Footer */
.footer { padding: 80px 20px 120px; text-align: center; }
.footer h2 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 900; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.footer-links a { color: var(--accent); text-decoration: none; margin: 0 5px; font-weight: 700; font-size: 1.1rem;}
.footer-links a:hover { text-decoration: underline; }
.copyright { color: #94a3b8; font-size: 1rem; }

/* Sticky Bottom */
.sticky-bottom {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.95); padding: 15px;
    text-align: center; box-shadow: 0 -5px 20px rgba(0,0,0,0.15); z-index: 100;
    backdrop-filter: blur(10px); border-top: 2px solid var(--primary-light);
}
.btn-sticky {
    padding: 18px 20px; font-size: 1.4rem; border-radius: 50px;
    width: 100%; max-width: 600px; white-space: normal;
}

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

@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-benefits { text-align: left; max-width: 400px; margin: 0 auto; }
    .floating-badge { left: 50%; transform: translateX(-50%); bottom: -25px; width: 85%; }
    @keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
    .compare-box.ours { transform: scale(1); margin-bottom: 20px; }
    .compare-grid { gap: 20px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .main-headline { font-size: 2.2rem; }
    .section-title h2 { font-size: 2rem; }
    .form-wrapper { padding: 40px 20px 30px; }
    .form-header h2 { font-size: 2rem; }
    .btn-primary, .btn-submit, .btn-sticky { font-size: 1.15rem; padding: 15px 25px; }
    .trust-icons { flex-direction: column; gap: 10px; }
    .trust-icons span { width: 100%; }
    
    .problem-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 480px) {
    /* Extreme Mobile Friendly Tweaks */
    body { padding-top: 60px; } /* More space for multi-line announcement */
    
    .announcement-bar { padding: 8px 0; font-size: 14px; }
    .top-trust-badges { font-size: 0.9rem; }
    
    .section { padding: 50px 0; }
    
    .main-headline { font-size: 1.8rem; line-height: 1.3; }
    .hero-content .subtitle { font-size: 1.1rem; }
    .hero-benefits p { font-size: 1.05rem; }
    
    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 1.05rem; }
    
    .price-box-hero { padding: 15px; }
    .offer-tag { font-size: 1rem; padding: 6px 15px; }
    
    .problem-card { padding: 25px 15px; }
    .problem-card .icon { font-size: 3rem; }
    .problem-card h3 { font-size: 1.3rem; }
    
    .step-card { padding: 30px 20px; }
    
    .ingredient-card { padding: 30px 20px; }
    .ingredient-card img { width: 100px; height: 100px; }
    .ingredient-card h3 { font-size: 1.4rem; }
    
    .compare-box { padding: 30px 20px; }
    .compare-box h3 { font-size: 1.5rem; }
    .compare-box li { font-size: 1.1rem; }
    .icon-top { font-size: 3rem; }
    
    .review-card { padding: 25px; }
    .review-card h4 { font-size: 1.25rem; }
    .review-card p { font-size: 1.05rem; }
    
    .form-wrapper { border-width: 2px; }
    .limited-stock { font-size: 1rem; padding: 8px 20px; top: -15px; }
    .offer-highlight { font-size: 1.4rem; }
    .full-select { font-size: 1rem; padding: 15px; }
    .input-group input, .input-group textarea { font-size: 1rem; padding: 15px; }
    
    .faq-item { padding: 20px; }
    .faq-item h4 { font-size: 1.15rem; }
    .faq-item p { font-size: 1rem; }
    
    .guarantee-box { padding: 30px 20px; }
    .guarantee-box h2 { font-size: 1.8rem; }
    
    .footer { padding-bottom: 100px; }
    .footer h2 { font-size: 1.8rem; }
    
    .btn-sticky { font-size: 1.2rem; padding: 15px; }
}
