:root {
    --primary: hsl(17, 15%, 27%);
    --primary-foreground: #ffffff;
    --action: #27AE60;
    --action-hover: #219150;
    --surface: hsl(30, 25%, 89%);
    --background: #ffffff;
    --foreground: hsl(30, 15%, 15%);
    --muted: hsl(30, 10%, 40%);
    --border: hsl(30, 15%, 85%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: var(--foreground);
    line-height: 1.5;
}

.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--background);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 20px;
}

section {
    padding: 40px 20px;
}

h1, h2, h3 {
    color: var(--primary);
    font-weight: 700;
}

.text-center {
    text-align: center !important;
}

/* HERO */
.hero {
    background-color: #E8DED4;
    text-align: center;
    padding-top: 15px;
}

.secure-tag {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

.hero-image-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
}

.hero-blob {
    position: absolute;
    inset: 0;
    background: rgba(79, 64, 58, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.highlight {
    color: var(--action);
}

.hero-description {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 30px;
}

.access-info {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
}

/* BUTTONS */
.cta-button {
    width: 100%;
    min-height: 60px;
    background-color: var(--action);
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.3);
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: var(--action-hover);
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 14px rgba(39, 174, 96, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 8px 24px rgba(39, 174, 96, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 14px rgba(39, 174, 96, 0.4); }
}

/* RECIPES */
.recipes-preview h2 {
    margin-bottom: 30px;
}

.recipe-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.recipe-card {
    display: flex;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    gap: 15px;
    align-items: center;
    transition: shadow 0.2s;
}

.recipe-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.recipe-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.recipe-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.recipe-info p {
    font-size: 13px;
    color: var(--muted);
}

/* REASONS */
.reasons {
    background-color: #E8DED4;
}

.reasons h2 {
    text-align: center;
    margin-bottom: 30px;
}

.reason-card {
    background: white;
    padding: 25px;
    border-radius: 1rem;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.reason-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--action);
}

.reason-icon {
    font-size: 32px;
    color: var(--action);
    margin-bottom: 15px;
}

/* TESTIMONIALS */
.testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.stars {
    color: #facc15;
    margin-bottom: 10px;
}

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 14px;
}

.verified {
    font-size: 12px;
    color: var(--action);
    font-weight: 500;
}

/* FAQ */
.faq {
    background-color: #E8DED4;
}

.faq h2 { text-align: center; }
.faq-subtitle { text-align: center; color: var(--muted); margin-bottom: 25px; font-size: 14px; }

.accordion-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px 15px;
    display: none;
    color: var(--muted);
}

.accordion-item.open .accordion-content {
    display: block;
}

.accordion-item.open i {
    transform: rotate(180deg);
}

/* PRICING */
.pricing {
    text-align: center;
}

.limited-offer {
    background-color: #EF4444;
    color: white;
    padding: 8px 20px;
    border-radius: 2rem;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.pricing-header {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.pricing-header i { color: #facc15; }

.price-container {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: #EF4444;
}

.new-price {
    font-size: 48px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    margin: 10px 0;
}

.savings {
    font-size: 14px;
    color: var(--muted);
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    font-weight: 500;
}

.features i { color: #22c55e; }

.social-proof-count {
    margin-top: 15px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* GUARANTEE */
.guarantee-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer-center {
    background-color: #E8DED4;
    text-align: center;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    max-width: 320px;
    margin: 0 auto;
}

.footer-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.footer-content p {
    font-size: 18px;
    color: var(--foreground);
    line-height: 1.3;
    margin: 0 auto;
    max-width: 400px;
    font-weight: 400;
}

.divider {
    height: 1px;
    background: #d1d5db;
    margin: 30px auto;
    width: 100%;
    max-width: 300px;
}

.copyright {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.ssl-badge {
    max-width: 200px;
    height: auto;
}

/* NOTIFICATION */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 12px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 110;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
    max-width: 280px;
    border: 1px solid rgba(0,0,0,0.05);
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.notif-content p { font-size: 13px; line-height: 1.2; }
.notif-subtext { color: #22c55e; font-weight: 700; font-size: 11px !important; margin-top: 2px; text-transform: uppercase; }
.notif-time { font-size: 10px !important; color: #94a3b8; margin-top: 2px; }