/* Custom Properties / Variables */
:root {
    /* Colors */
    --bg-main: #020617;
    /* Slate 950 */
    --bg-darker: #0f172a;
    /* Slate 900 */
    --bg-card: #1e293b;
    /* Slate 800 */
    --bg-card-hover: #334155;
    /* Slate 700 */

    --text-main: #f8fafc;
    /* Slate 50 */
    --text-muted: #cbd5e1;
    /* Slate 300 */

    --accent-red: #ef4444;
    --accent-orange: #f97316;
    --accent-yellow: #fbbf24;
    --accent-green: #22c55e;
    --gradient-primary: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    --gradient-border: linear-gradient(135deg, #f97316, #ef4444);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1100px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-2 {
    margin-bottom: 20px;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--accent-yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-slow);
    border: none;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 65, 108, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
}

.btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

.large-btn {
    padding: 20px 24px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
    white-space: nowrap;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(255, 75, 43, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.scale-up {
    transform: scale(0.9);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Top Alert Bar */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 65, 108, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.pricing-block {
    margin: 30px 0;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.new-price span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    display: block;
    line-height: 1;
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-yellow);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-darker));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.hero-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 3px solid rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 40px;
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.two-col {
    grid-template-columns: repeat(2, 1fr);
}

/* Cards */
.card,
.info-box,
.bonus-card,
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.card:hover,
.info-box:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 75, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Info Boxes */
.info-box {
    text-align: center;
}

.status-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.color-green {
    color: var(--accent-green);
}

.color-yellow {
    color: var(--accent-yellow);
}

.color-blue {
    color: #3b82f6;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-muted);
}

/* Flex Layout */
.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.image-col,
.text-col {
    flex: 1;
}

.vertical-placeholder {
    aspect-ratio: 3/4;
}

.family-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-list i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.check-list hstrong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.check-list p {
    color: var(--text-muted);
}

/* Showcase Grid */
.showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 0;
}

.recipe-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.recipe-img {
    height: 200px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.recipe-card:hover .recipe-img img {
    transform: scale(1.05);
}

.recipe-info {
    padding: 20px;
}

.recipe-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag.easy {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.tag.medium {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-yellow);
}

.more-recipes {
    margin-top: 40px;
}

.more-recipes h3 {
    margin-bottom: 20px;
}

/* Bonuses */
.bonus-card {
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin: 20px 0;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-top: 20px;
}

.price-free {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
}

/* Offer Box */
.offer-box {
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-lg);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.15);
}

.offer-list {
    margin: 30px 0;
}

.offer-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.guarantee-badge i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

.final-pricing .strike {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.final-pricing .current {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Testimonials */
.testimonials .stars.big {
    font-size: 2rem;
}

.testimonial-card {
    text-align: left;
}

.testimonial-card .quote {
    font-style: italic;
    margin: 20px 0;
    font-size: 1.05rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: var(--bg-card);
    border: none;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: var(--bg-card-hover);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-darker);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 900px) {

    .hero .container,
    .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .check-list li {
        text-align: left;
    }

    .showcase-grid,
    .three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .showcase-grid,
    .three-col,
    .two-col {
        grid-template-columns: 1fr;
    }

    .offer-box {
        padding: 30px 20px;
    }
}