/* Fonts */
@font-face {
    font-family: "Genty";
    src: url("/Genty-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "National";
    src: url("/National-2-Condensed-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* CSS Variables */
  :root {
    --red: #e4002b;
    --purple: #4d1226;
    --cream: #fcf2df;
    --dark: #1a1a1a;
    --white: #ffffff;
  
    --font-display: "Genty", cursive;
    --font-sharp: "National", sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--red);
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--red);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(228, 0, 43, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--transition-bounce);
    filter: brightness(0) invert(1);
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sharp);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--cream);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--cream);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    opacity: 0;
}

.nav-link:hover {
    color: var(--cream);
    text-shadow: 0 0 10px rgba(252, 242, 223, 0.5);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active::before {
    width: 100%;
}

.nav-link.cta-link {
    background: var(--purple);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--purple);
    position: relative;
    overflow: hidden;
}

.nav-link.cta-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--transition-smooth), height 0.5s var(--transition-smooth);
    z-index: -1;
    box-shadow: none;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    color: var(--red);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-shadow: none;
}

.nav-link.cta-link:hover::before {
    width: 300px;
    height: 300px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 2rem;
    background: var(--red);
}

.hero-content {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
}

.hero-left {
    position: absolute;
    left: -5%;
    top: 55%;
    transform: translateY(-50%);
    width: 75%;
    max-width: none;
    z-index: 1;
    opacity: 1;
}

.sauce-typography {
    width: 100%;
    height: auto;
    animation: sauceFloat 6s ease-in-out infinite;
}

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

/* Hero text container positioning */
.hero-right {
    position: absolute;
    right: 3%; /* Distance from right edge - increase to move left, decrease to move right */
    top: 52%; /* Vertical position - increase to move down, decrease to move up */
    transform: translateY(-50%);
    color: var(--white);
    text-align: center;
    z-index: 2;
    max-width: 750px; /* Maximum width of text container */
}

/* Main hero title - "+100 SAUCES RECIPE" */
.hero-title {
    font-family: var(--font-sharp);
    font-size: clamp(2.5rem, 5.5vw, 5rem); /* Font size: min 2.5rem, scales with viewport, max 5rem - adjust these values to change size */
    line-height: 0.95; /* Line spacing between title lines - lower = tighter spacing */
    margin-bottom: 2rem; /* Space below title - increase for more gap before subtitle */
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px; /* Space between letters - increase for wider spacing */
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s var(--transition-smooth) forwards;
}

.title-line[data-delay="0"] {
    animation-delay: 0.2s;
}

.title-line[data-delay="100"] {
    animation-delay: 0.4s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hero subtitle - tagline text */
.hero-subtitle {
    font-size: 1.05rem; /* Font size of subtitle - increase to make bigger, decrease to make smaller */
    color: var(--white);
    margin-bottom: 3rem; /* Space below subtitle before button - adjust to control spacing */
    line-height: 1.6; /* Line height - higher = more space between lines */
    opacity: 0;
    animation: fadeIn 0.8s 0.6s var(--transition-smooth) forwards;
    font-weight: 500; /* Font thickness - 400=normal, 500=medium, 600=semibold, 700=bold */
}

.hero-buttons {
    opacity: 0;
    animation: fadeIn 0.8s 0.8s var(--transition-smooth) forwards;
    display: flex;
    justify-content: center;
}

/* Hero CTA button - "ALL RECIPES" */
.btn-hero {
    background: var(--purple);
    color: var(--white);
    font-size: 1.05rem; /* Button text size - adjust to make text bigger/smaller */
    padding: 1.35rem 3rem; /* Button size: first value = top/bottom padding, second = left/right padding */
    display: inline-block;
    border: 3px solid var(--purple); /* Border thickness - increase number for thicker border */
}

.btn-hero:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-sharp);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 0, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn svg {
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--purple);
    color: var(--white);
}

/* Combined Text + Stats Section - Text Top Left, Stats Centered Below */
.text-stats-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--purple);
    padding: 8rem 0 4rem;
}

.text-stats-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 8%;
}

/* Text Side - Top Left */
.text-side {
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 8rem;
}

.animated-text {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    line-height: 1.6;
    text-align: left;
    color: var(--white);
    font-weight: 400;
    max-width: 700px;
}

.animated-text .word {
    display: inline-block;
    margin: 0 0.3em 0 0;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

/* Sauce Hub highlighted */
.animated-text .word:nth-child(1),
.animated-text .word:nth-child(2) {
    font-family: var(--font-sharp);
    font-weight: bold;
    color: var(--red);
    text-transform: uppercase;
}

/* Stats Side - Centered Below */
.stats-side {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.stat-item {
    padding: 0;
    background: transparent;
    border: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--red);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-family: var(--font-sharp);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .text-stats-section {
        padding: 6rem 0 3rem;
    }
    
    .text-stats-container {
        padding: 0 5%;
    }
    
    .text-side {
        margin-bottom: 5rem;
    }
    
    .stats-grid {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .text-stats-section {
        padding: 5rem 0 2rem;
    }
    
    .text-stats-container {
        padding: 0 1.5rem;
    }
    
    .text-side {
        margin-bottom: 4rem;
    }
    
    .animated-text {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Before/After Slider Section - BRANDED */
.before-after-section {
    padding: 8rem 0;
    background: var(--cream);
}

.before-after-section .section-title {
    font-family: var(--font-sharp);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--purple);
    text-transform: uppercase;
}

.comparison-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(77, 18, 38, 0.3);
    border: 4px solid var(--purple);
}

.before-side,
.after-side {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.before-side {
    left: 0;
    background: linear-gradient(135deg, var(--red) 0%, #c4002b 100%);
}

.after-side {
    right: 0;
    background: linear-gradient(135deg, var(--purple) 0%, #3d0e1f 100%);
    clip-path: inset(0 0 0 50%);
}

.recipe-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--cream);
}

.recipe-card.messy {
    border: 3px dashed var(--cream);
    transform: rotate(-2deg);
    opacity: 0.95;
}

.recipe-card.professional {
    border: 3px solid var(--cream);
    transform: rotate(1deg);
}

.card-label {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-family: var(--font-sharp);
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.messy .card-label {
    background: var(--red);
    color: var(--cream);
}

.professional .card-label {
    background: var(--purple);
    color: var(--cream);
}

.recipe-card h3 {
    font-family: var(--font-sharp);
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-content {
    margin-bottom: 2rem;
}

.recipe-content p {
    padding: 0.9rem 0;
    border-bottom: 2px solid rgba(228, 0, 43, 0.1);
    font-size: 1.1rem;
    color: var(--dark);
}

.recipe-content p:last-child {
    border-bottom: none;
}

.messy .recipe-content p {
    font-style: italic;
    color: #888;
    font-size: 1rem;
}

.professional .recipe-content p {
    font-weight: 500;
}

.professional .recipe-content p strong {
    color: var(--red);
    font-family: var(--font-sharp);
    font-size: 1.3rem;
    margin-right: 0.5rem;
    font-weight: bold;
}

.note {
    margin-top: 1rem;
    padding: 1.2rem;
    background: rgba(228, 0, 43, 0.05);
    border-radius: 10px;
    font-size: 1rem !important;
    border-left: 4px solid var(--red);
    font-style: normal !important;
    font-weight: 600;
}

.problems,
.benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problems span,
.benefits span {
    font-size: 0.95rem;
    padding: 0.6rem 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.problems span {
    color: var(--red);
}

.benefits span {
    color: var(--purple);
}

/* Slider Handle - BRANDED */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 100%;
    background: var(--cream);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.slider-handle:hover {
    width: 8px;
}

.handle-line {
    width: 100%;
    height: 100%;
    background: var(--cream);
    box-shadow: 0 0 30px rgba(252, 242, 223, 0.8);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--red);
    border: 5px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(228, 0, 43, 0.6);
    transition: all 0.3s ease;
}

.handle-circle:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 40px rgba(228, 0, 43, 0.8);
    background: var(--purple);
}

.handle-circle svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .before-after-section {
        padding: 5rem 0;
    }
    
    .comparison-slider {
        height: 550px;
        border-width: 3px;
    }
    
    .recipe-card {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }
    
    .recipe-card h3 {
        font-size: 1.6rem;
    }
    
    .recipe-content p {
        font-size: 1rem;
    }
    
    .handle-circle {
        width: 60px;
        height: 60px;
    }
}

/* Features Section - Interactive Hover Cards */
.features-section {
    padding: 8rem 0;
    background: var(--cream);
}

.section-title {
    font-family: var(--font-sharp);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--purple);
    text-transform: uppercase;
}

.title-accent {
    color: var(--red);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--red);
    box-shadow: 0 20px 60px rgba(228, 0, 43, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-sharp);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
}


/* Categories Section */
.categories-section {
    padding: 8rem 0;
    background: var(--red);
    color: var(--white);
    overflow: hidden;
}

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

.categories-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.category-visual {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite ease-in-out;
}


.category-card:hover .category-visual {
    animation-play-state: paused;
    transform: scale(1.2) rotate(10deg);
}

.category-card h3 {
    font-family: var(--font-sharp);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.category-card p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Preview Section */
.preview-section {
    padding: 8rem 0;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.preview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--red);
    position: relative;
    transition: all 0.4s var(--transition-smooth);
}

.preview-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-sharp);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(228, 0, 43, 0.2);
}

.preview-card h3 {
    font-family: var(--font-sharp);
    font-size: 1.75rem;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.preview-link {
    color: var(--red);
    font-family: var(--font-sharp);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.preview-link:hover {
    gap: 1rem;
}

/* Reviews & Testimonials Section */
.reviews-section {
    padding: 8rem 0;
    background: var(--purple);
}

.reviews-section .section-title {
    color: var(--cream);
}

.reviews-section .section-subtitle {
    color: var(--cream);
    opacity: 0.9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.review-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 50px rgba(228, 0, 43, 0.3);
}

.review-card.featured {
    background: var(--red);
    color: var(--cream);
    transform: scale(1.05);
    border: 3px solid var(--cream);
}

.review-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--cream);
    color: var(--red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-sharp);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark);
    font-style: italic;
}

.review-card.featured .review-text {
    color: var(--cream);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-avatar.anonymous {
    background: #666;
    font-family: var(--font-sharp);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cream);
}

.review-card.featured .author-avatar {
    background: var(--cream);
}

.author-info h4 {
    font-family: var(--font-sharp);
    font-size: 1.1rem;
    color: var(--purple);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-card.featured .author-info h4 {
    color: var(--cream);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.review-card.featured .author-info p {
    color: var(--cream);
    opacity: 0.9;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(252, 242, 223, 0.2);
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-family: var(--font-sharp);
    font-size: 4rem;
    color: var(--red);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-family: var(--font-sharp);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cream);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 5rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card.featured {
        transform: scale(1);
    }
    
    .review-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-number {
        font-size: 3rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sauce-drip {
    position: absolute;
    background: var(--red);
    opacity: 0.1;
    animation: drip 3s infinite ease-in;
}

.drip-1 {
    width: 100px;
    height: 200px;
    top: -50px;
    left: 10%;
    border-radius: 0 0 50% 50%;
    animation-delay: 0s;
}

.drip-2 {
    width: 80px;
    height: 180px;
    top: -50px;
    left: 50%;
    border-radius: 0 0 50% 50%;
    animation-delay: 1s;
}

.drip-3 {
    width: 120px;
    height: 220px;
    top: -50px;
    right: 15%;
    border-radius: 0 0 50% 50%;
    animation-delay: 2s;
}

@keyframes drip {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

.price-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--red);
    margin-bottom: 2.5rem;
}

.price {
    font-family: var(--font-display);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    color: var(--red);
}

.amount {
    font-size: 5rem;
    color: var(--red);
}

.period {
    font-size: 1.25rem;
    color: var(--dark);
}

.whats-included {
    list-style: none;
}

.whats-included li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.whats-included li:last-child {
    border-bottom: none;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.guarantee {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--dark);
    opacity: 0.8;
}

.cta-visual {
    perspective: 1000px;
}

.book-mockup {
    transform-style: preserve-3d;
    animation: bookFloat 4s infinite ease-in-out;
}

@keyframes bookFloat {
    0%, 100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

.book-cover {
    background: var(--red);
    padding: 4rem 3rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.book-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--red);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.book-cover h3 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.book-cover p {
    font-family: var(--font-sharp);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.book-badge {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sharp);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: var(--purple);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-sharp);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.75rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--red);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-left {
        width: 55%;
        max-width: 700px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 7vw, 6rem);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .feature-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hero-content {
        height: 500px;
    }
    
    .hero-left {
        width: 50%;
        max-width: 600px;
        left: -15%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content {
        height: auto;
        min-height: 500px;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-left {
        position: relative;
        width: 80%;
        max-width: 400px;
        left: -20%;
        transform: translateY(0);
        margin-bottom: -50px;
        opacity: 0.7;
    }
    
    .hero-right {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1.25rem 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* OVERLAPPING STACK LAYOUT FOR FEATURES */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 2rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .feature-card {
        position: sticky;
        top: 100px;
        margin-bottom: -180px;
        min-height: 320px;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    /* Alternating tilts for visual interest */
    .feature-card:nth-child(odd) {
        transform: rotate(-2deg);
    }
    
    .feature-card:nth-child(even) {
        transform: rotate(2deg);
    }
    
    /* Last card gets full margin to show completely */
    .feature-card:last-child {
        margin-bottom: 2rem;
    }
    
    /* Stacking order - last on top */
    .feature-card:nth-child(1) { z-index: 1; }
    .feature-card:nth-child(2) { z-index: 2; }
    .feature-card:nth-child(3) { z-index: 3; }
    .feature-card:nth-child(4) { z-index: 4; }
    .feature-card:nth-child(5) { z-index: 5; }
    .feature-card:nth-child(6) { z-index: 6; }
    
    /* Scale down slightly as they stack */
    .feature-card:nth-child(1) { transform: rotate(-2deg) scale(0.95); }
    .feature-card:nth-child(2) { transform: rotate(2deg) scale(0.96); }
    .feature-card:nth-child(3) { transform: rotate(-2deg) scale(0.97); }
    .feature-card:nth-child(4) { transform: rotate(2deg) scale(0.98); }
    .feature-card:nth-child(5) { transform: rotate(-2deg) scale(0.99); }
    .feature-card:nth-child(6) { transform: rotate(2deg) scale(1); }
    
    .feature-card h3 {
        font-size: 1.6rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .feature-card:nth-child(1) h3 {
        font-size: 2rem;
    }
    
    .feature-card:nth-child(1) p {
        font-size: 1.1rem;
    }
    
    .categories-carousel,
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* ========================================
   BOOK SECTION - OPENING BOOK EFFECT
   Red background, book peels open on hover
   ======================================== */

/* CTA Section - RED BACKGROUND */
.cta-section {
    padding: 8rem 0;
    background: var(--red) !important;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: var(--cream) !important;
}

.cta-subtitle {
    color: var(--cream) !important;
    opacity: 0.95;
}

.book-display {
    position: relative;
    perspective: 2000px;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Book container */
.book-3d {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    cursor: pointer;
    transform-style: preserve-3d;
}

/* Book spine (left edge) */
.book-3d::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: var(--purple);
    border-radius: 15px 0 0 15px;
    z-index: 0;
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.3);
}

/* Book cover - this is the front */
.book-cover-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        -10px 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(252, 242, 223, 0.1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    transform-origin: left center;
}

/* Inside page peek (shows when book opens) */
.book-3d::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 5%;
    bottom: 5%;
    right: 5%;
    background: var(--cream);
    border-radius: 0 10px 10px 0;
    z-index: 1;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        5px 0 15px rgba(0, 0, 0, 0.2),
        inset -2px 0 5px rgba(0, 0, 0, 0.1);
}

/* HOVER - Book cover opens (rotates) */
.book-3d:hover .book-cover-img {
    transform: rotateY(-25deg) translateX(20px);
    box-shadow: 
        -20px 30px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(252, 242, 223, 0.2);
}

/* Show inside page on hover */
.book-3d:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Glowing effect */
.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: var(--purple);
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(60px);
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

/* Floating badges */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.badge {
    position: absolute;
    background: var(--purple);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sharp);
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
    border: 2px solid rgba(252, 242, 223, 0.3);
    transition: all 0.3s;
    pointer-events: all;
}

.badge:hover {
    transform: scale(1.1) !important;
    background: var(--red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-1 { top: 0; right: -15px; animation-delay: 0s; }
.badge-2 { bottom: 30%; left: -25px; animation-delay: 1s; }
.badge-3 { bottom: 0; right: -10px; animation-delay: 2s; }

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

/* Click animation */
.book-3d.flipping .book-cover-img {
    animation: bookFlip 1s ease-in-out;
}

@keyframes bookFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(-90deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .book-3d { max-width: 350px; }
    .badge { font-size: 0.85rem; padding: 0.65rem 1rem; }
}

@media (max-width: 768px) {
    .book-3d { max-width: 300px; }
    .floating-badges { display: none; }
    .book-3d:hover .book-cover-img {
        transform: rotateY(-20deg) translateX(15px);
    }
}

/* CTA Right Side Content - for red background */
.cta-right {
    color: var(--cream);
}

.cta-tag {
    display: inline-block;
    background: var(--purple);
    color: var(--cream);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-sharp);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-item svg {
    flex-shrink: 0;
    background: var(--cream);
    padding: 4px;
    border-radius: 50%;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(77, 18, 38, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(252, 242, 223, 0.2);
}

.price-main {
    display: flex;
    align-items: flex-start;
    color: var(--cream);
}

.price-currency {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
}

.price-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.9;
}

.price-guarantee {
    font-size: 0.95rem;
    color: #4CAF50;
    font-weight: 600;
}

.btn-buy-now {
    width: 100%;
    padding: 1.5rem 3rem;
    background: var(--cream);
    color: var(--red);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sharp);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-buy-now:hover {
    background: var(--purple);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-text,
.btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-shine {
    display: none;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item svg {
    flex-shrink: 0;
}

/* ========================================
   ARROW TRANSITION SECTION (Heinz Style)
   ======================================== */

.arrow-transition {
    position: relative;
    width: 100%;
    height: 100px;
    background: var(--red);
    margin: 0;
    padding: 0;
    overflow: visible;
    z-index: 10;
}

.arrow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Flat red line with U-dip */
.red-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Arrow in the gap */
.scroll-indicator {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}





@media (max-width: 768px) {
    .arrow-transition { height: 80px; }

/* ========================================

/* ========================================
   ALL HEADINGS - NATIONAL FONT
   ======================================== */

h1, h2, h3, h4, h5, h6,
.section-title,
.cta-title,
.feature-card h3,
.preview-card h3,
.category-card h3,
.footer-column h4 {
    font-family: var(--font-sharp) !important;
}

/* ========================================
   WHITE FRAME WITH CHEVRON POINT
   ======================================== */




/* Arrow at bottom chevron point */





}







/* Red section with V-cutout (Heinz style) */






/* ========================================
   RED V-SECTION (Heinz Arrow)
   ======================================== */







@media (max-width: 768px) {

}


/* ========================================
   MOBILE-FIRST RESPONSIVE IMPROVEMENTS
   Making the site beautiful on phones!
   ======================================== */

/* Mobile: Better Typography */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Hero Section - More Dynamic */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 90vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .btn {
        width: 100% !important;
        padding: 1.2rem 2rem !important;
        font-size: 1.1rem !important;
    }
    
    /* Text + Stats Section - Better Layout */
    .text-stats-section {
        padding: 4rem 1.5rem !important;
    }
    
    .animated-text {
        font-size: 1.3rem !important;
        line-height: 1.7 !important;
        margin-bottom: 3rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .stat-number {
        font-size: 3.5rem !important;
    }
    
    /* Before/After Slider - Mobile Optimized */
    .before-after-section {
        padding: 3rem 1rem !important;
    }
    
    .comparison-slider {
        height: 500px !important;
        border-width: 2px !important;
    }
    
    .recipe-card {
        padding: 2rem 1.5rem !important;
    }
    
    .recipe-card h3 {
        font-size: 1.5rem !important;
    }
    
    .card-label {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    /* Preview Cards - 2 Columns on Mobile */
    .preview-section {
        padding: 3rem 1rem !important;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .preview-card {
        padding: 1.5rem 1rem !important;
    }
    
    .preview-card h3 {
        font-size: 1.1rem !important;
    }
    
    .preview-icon {
        font-size: 2.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Reviews - Single Column but Compact */
    .reviews-section {
        padding: 3rem 1rem !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    
    .review-card {
        padding: 1.8rem !important;
    }
    
    .review-card.featured {
        transform: scale(1) !important;
    }
    
    .review-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .author-avatar {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
    
    .author-info h4 {
        font-size: 1rem !important;
    }
    
    .author-info p {
        font-size: 0.85rem !important;
    }
    
    /* CTA Section - More Engaging */
    .cta-section {
        padding: 3rem 1rem !important;
    }
    
    .cta-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .cta-content {
        padding: 2rem 1.5rem !important;
        text-align: center !important;
    }
    
    .cta-title {
        font-size: 2rem !important;
    }
    
    .features-list {
        gap: 0.8rem !important;
    }
    
    .price-main {
        justify-content: center !important;
    }
    
    .btn-buy-now {
        width: 100% !important;
        padding: 1.3rem 2rem !important;
    }
    
    /* Footer - Cleaner */
    .footer {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-bottom {
        padding: 1.5rem 1.5rem 0 !important;
        font-size: 0.85rem !important;
    }
    
    /* Section Titles - Better Mobile */
    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Better Spacing */
    section {
        scroll-margin-top: 80px;
    }
}

/* Small Phones (< 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .preview-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 5rem 3rem 3rem;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .text-stats-container {
        padding: 0 4% !important;
    }
}
/* ========================================

/* ========================================

/* ========================================
   MOBILE - SIMPLE 2 COLUMNS
   ======================================== */

@media (max-width: 768px) {
    /* FREE RECIPES - 2 columns, 4 cards total */
    .preview-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    .preview-card {
        padding: 1.5rem 1rem !important;
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .preview-card:nth-child(odd) {
        transform: translateX(-50px);
    }
    
    .preview-card:nth-child(even) {
        transform: translateX(50px);
    }
    
    .preview-card.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* REVIEWS - 2 columns, 6 cards total - CENTERED */
    .reviews-section .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .reviews-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .review-card {
        padding: 1.5rem 1rem !important;
        opacity: 0;
        transition: all 0.6s ease;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .review-card:nth-child(odd) {
        transform: translateX(-50px);
    }
    
    .review-card:nth-child(even) {
        transform: translateX(50px);
    }
    
    .review-card.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Smaller text for mobile */
    .review-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .preview-card h3 {
        font-size: 1rem !important;
    }
}