/* ===== VARIABLES ===== */
:root {
    --primary-color: #FF006E;
    --secondary-color: #8338EC;
    --accent-color: #FFBE0B;
    --dark-bg: #0A0A0A;
    --dark-card: #141414;
    --dark-border: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --gradient-sweet: linear-gradient(135deg, #FFBE0B 0%, #FF006E 100%);
    --gradient-savory: linear-gradient(135deg, #FB5607 0%, #FF006E 100%);
    --gradient-primary: linear-gradient(135deg, #FF006E 0%, #8338EC 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(255,0,110,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--dark-card);
    color: white;
    border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
    background: var(--dark-border);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.btn-outline:hover {
    background: var(--dark-card);
    border-color: var(--primary-color);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark-bg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-food {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.food-1 { top: 10%; left: 10%; animation-delay: 0s; }
.food-2 { top: 20%; right: 15%; animation-delay: 3s; }
.food-3 { bottom: 30%; left: 20%; animation-delay: 6s; }
.food-4 { bottom: 20%; right: 10%; animation-delay: 9s; }
.food-5 { top: 40%; left: 50%; animation-delay: 12s; }
.food-6 { bottom: 10%; left: 40%; animation-delay: 15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 110, 0); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-trust i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50vw;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(131, 56, 236, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    transform: scale(1.1);
    transform-origin: center;
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0%, 100% {
        transform: scale(1.1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scale(1.1) translateY(-10px) rotate(1deg);
    }
    75% {
        transform: scale(1.1) translateY(-5px) rotate(-1deg);
    }
}

.phone-frame {
    position: relative;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.5),
        0 20px 40px rgba(131, 56, 236, 0.2),
        0 0 120px rgba(131, 56, 236, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 4px solid #2a2a2a;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 33px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 10px;
    z-index: 11;
}

.phone-screen {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
    border-radius: 35px;
    height: 720px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.swipe-card {
    position: absolute;
    width: 92%;
    left: 4%;
    top: 3%;
    height: 94%;
    background: linear-gradient(145deg, var(--dark-card), #0a0a0a);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.3),
        0 10px 20px rgba(131, 56, 236, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    flex: 1;
}

.card-content {
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.9) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 120px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-1 {
    z-index: 3;
    animation: swipe-card-1 12s infinite ease-in-out;
}

.card-2 {
    z-index: 2;
    transform: scale(0.97) translateY(10px) rotate(-0.5deg);
    animation: swipe-card-2 12s infinite ease-in-out;
}

.card-3 {
    z-index: 1;
    transform: scale(0.94) translateY(20px) rotate(-1deg);
    animation: swipe-card-3 12s infinite ease-in-out;
}

@keyframes swipe-card-1 {
    0%, 30% { 
        transform: rotate(0deg) translateX(0) scale(1); 
        opacity: 1; 
    }
    33% {
        transform: rotate(5deg) translateX(20px) scale(1.02);
        opacity: 1;
    }
    40%, 60% { 
        transform: rotate(25deg) translateX(180%) scale(0.9); 
        opacity: 0; 
    }
    65% {
        transform: rotate(0deg) translateX(-180%) scale(0.9);
        opacity: 0;
    }
    70%, 100% { 
        transform: rotate(0deg) translateX(0) scale(1); 
        opacity: 1; 
    }
}

@keyframes swipe-card-2 {
    0%, 30% { 
        transform: scale(0.97) translateY(10px) rotate(-0.5deg); 
    }
    35%, 65% { 
        transform: scale(1) translateY(0) rotate(0deg); 
    }
    70%, 100% { 
        transform: scale(0.97) translateY(10px) rotate(-0.5deg); 
    }
}

@keyframes swipe-card-3 {
    0%, 30% { 
        transform: scale(0.94) translateY(20px) rotate(-1deg); 
    }
    35%, 65% { 
        transform: scale(0.97) translateY(10px) rotate(-0.5deg); 
    }
    70%, 100% { 
        transform: scale(0.94) translateY(20px) rotate(-1deg); 
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(131, 56, 236, 0.1);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--dark-bg);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-visual {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 3;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
    transition: var(--transition);
}

.step:hover .step-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-border) 0%, var(--dark-border) 50%, transparent 50%);
    background-size: 20px 2px;
    position: relative;
    top: -60px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
}

/* ===== AI TECHNOLOGY ===== */
.ai-tech {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ai-features {
    display: grid;
    gap: 2rem;
}

.ai-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(131, 56, 236, 0.1);
    border: 1px solid rgba(131, 56, 236, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.ai-feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ai-feature-content p {
    color: var(--text-secondary);
}

/* ===== NEURAL NETWORK ANIMATION ===== */
.ai-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-animation {
    position: relative;
    width: 400px;
    height: 400px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    animation: node-pulse 3s infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.node-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 1s; }
.node-4 { bottom: 20%; left: 20%; animation-delay: 1.5s; }
.node-5 { bottom: 20%; right: 20%; animation-delay: 2s; }

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    animation: connection-flow 3s infinite;
}

.connection-1 { top: 21%; left: 23%; width: 54%; transform: rotate(0deg); }
.connection-2 { top: 21%; right: 23%; width: 54%; transform: rotate(0deg); }
.connection-3 { top: 35%; left: 23%; width: 54%; transform: rotate(45deg); }
.connection-4 { top: 35%; right: 23%; width: 54%; transform: rotate(-45deg); }

@keyframes connection-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.data-flow {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 20%;
    left: 20%;
    animation: data-flow 3s infinite linear;
}

@keyframes data-flow {
    0% { top: 20%; left: 20%; }
    25% { top: 50%; left: 50%; }
    50% { top: 80%; left: 20%; }
    75% { top: 50%; left: 50%; }
    100% { top: 20%; left: 80%; }
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    background: var(--dark-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.blog-cta {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 700;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid var(--dark-border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animated {
    opacity: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 48px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 48px);
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    /* Hero adjustments for tablets */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Add responsive text classes */
.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

/* Mobile */
@media (max-width: 480px) {
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline;
    }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Remove scroll indicator - floating animation is enough */
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section Mobile Optimization - Premium Experience */
    .hero {
        padding: 80px 0 30px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: radial-gradient(ellipse at center, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
    }
    
    .hero-content {
        text-align: center;
        z-index: 2;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: 0.75rem;
        display: inline-block;
        background: rgba(255, 0, 110, 0.15);
        border: 1px solid rgba(255, 0, 110, 0.4);
        backdrop-filter: blur(10px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
        font-weight: 900;
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        opacity: 0.95;
        font-weight: 400;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Enhanced floating food for mobile - more engaging */
    .floating-food {
        font-size: 2.2rem;
        opacity: 0.7;
        animation: float 8s ease-in-out infinite;
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    }
    
    .floating-food:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
    .floating-food:nth-child(2) { top: 22%; right: 12%; animation-delay: 1.5s; }
    .floating-food:nth-child(3) { top: 42%; left: 3%; animation-delay: 3s; }
    .floating-food:nth-child(4) { bottom: 32%; right: 8%; animation-delay: 4.5s; }
    .floating-food:nth-child(5) { bottom: 18%; left: 12%; animation-delay: 6s; }
    .floating-food:nth-child(6) { top: 58%; right: 3%; animation-delay: 7.5s; }
    
    /* Stats - Ultra-prominent mobile layout */
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin: 1.2rem 0;
        padding: 0;
    }
    
    .hero-stats:hover {
        transform: translateY(-2px);
    }
    
    .hero-stats .stat {
        text-align: center;
        padding: 0.6rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
        font-weight: 900;
        margin-bottom: 0.2rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        letter-spacing: -0.02em;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }
    
    /* CTA Buttons - Single dominant mobile experience */
    .hero-cta {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 700;
        border-radius: 14px;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary {
        background: var(--gradient-primary);
        box-shadow: 0 12px 35px rgba(255, 0, 110, 0.5), 0 6px 18px rgba(131, 56, 236, 0.4);
        border: none;
        font-size: 1.1rem;
        padding: 1.4rem 1.5rem;
    }
    
    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 45px rgba(255, 0, 110, 0.6), 0 8px 22px rgba(131, 56, 236, 0.5);
    }
    
    .btn-secondary {
        background: rgba(10, 10, 10, 0.3);
        border: 1px solid rgba(255, 0, 110, 0.3);
        color: rgba(255, 255, 255, 0.7);
        box-shadow: none;
        backdrop-filter: blur(10px);
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
    
    .btn-secondary:hover {
        background: rgba(255, 0, 110, 0.1);
        transform: translateY(-1px);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .phone-mockup {
        max-width: 280px;
        transform: scale(0.8);
        margin: 0 auto;
    }
    
    .phone-screen {
        height: 420px;
    }
    
    .swipe-card img {
        height: 280px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .card-meta {
        font-size: 0.75rem;
    }
    
    /* Scroll Indicator - Fix centering on mobile */
    .scroll-indicator {
        left: 50vw !important;
        transform: translateX(-50%) !important;
    }
    
    /* Features Section Mobile */
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* How It Works Mobile */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    /* AI Tech Mobile */
    .ai-features {
        padding: 1.5rem;
    }
    
    .ai-feature h3 {
        font-size: 1.25rem;
    }
    
    .ai-feature p {
        font-size: 0.9rem;
    }
    
    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-card .stat-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .testimonial-recipe {
        font-size: 0.8rem;
    }
    
    /* CTA Section Mobile */
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul {
        margin-bottom: 1.5rem;
    }
    
    .footer-section li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom p,
    .footer-links a {
        font-size: 0.85rem;
    }
    
    /* Hide phone mockup on mobile - focus on engaging content */
    .hero-visual {
        display: none;
    }
    
    /* Navbar mobile optimization - ultra compact */
    .navbar {
        padding: 0.25rem 0;
        background: rgba(10, 10, 10, 0.95);
    }
    
    .nav-wrapper {
        padding: 0.25rem 0;
        min-height: 40px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    .nav-toggle {
        width: 20px;
        height: 16px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 1.5px;
    }
    
    /* Blog Grid Mobile */
    .blog-grid {
        gap: 1rem;
    }
    
    .blog-card {
        padding: 1rem;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .blog-card p {
        font-size: 0.9rem;
    }
    
    /* Button sizes on mobile */
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Blog Posts Grid Mobile */
    .posts-grid {
        gap: 1.5rem;
    }
    
    .post-card {
        box-shadow: var(--shadow-sm);
    }
    
    .post-card .post-image {
        height: 160px;
    }
    
    .post-card .post-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .post-card .post-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .post-card .read-more {
        font-size: 0.85rem;
    }
    
    /* Blog Post Content Mobile */
    .blog-post .post-header {
        padding: 1.5rem;
    }
    
    .blog-post .post-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .blog-post .post-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-post .post-content {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .blog-post .post-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .blog-post .post-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== BLOG STYLES ===== */
.blog-hero {
    background: var(--gradient-primary);
    padding: 100px 0 40px;
    text-align: center;
    min-height: auto;
}

.blog-hero .hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    margin-bottom: 0.3rem;
}

.blog-hero .hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
}

.blog-posts {
    padding: 120px 0 60px;
    background: var(--dark-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

/* Blog Card Styles (for blog index) */
.post-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.post-card .post-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 0.6rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card .post-meta {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 0.4rem;
    z-index: 1;
}

.post-card .post-date {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.post-card .post-category {
    background: rgba(139, 92, 246, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.post-card .post-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    font-weight: 600;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-card .post-excerpt {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    min-height: 2.8em;
}

.read-more {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    margin-top: auto;
    align-self: flex-start;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.read-more:hover {
    transform: translateX(4px);
}

.read-more:hover::after {
    width: 100%;
}

/* ===== INDIVIDUAL BLOG POST STYLES ===== */
.blog-post {
    padding: 120px 0 60px;
    background: var(--dark-bg);
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-secondary);
    margin: 0 0.3rem;
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0;
    transition: var(--transition);
}

.back-to-blog:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.post-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.post-date,
.post-category,
.post-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post .post-category {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
}

.blog-post .post-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0;
    color: var(--text-primary);
}

.post-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post .post-featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin: 2rem 0;
}

.blog-post .post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.blog-post .post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.blog-post .post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
    color: var(--text-primary);
}

.blog-post .post-content p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.blog-post .post-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post .post-content blockquote {
    background: var(--dark-card);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-post .post-content ul,
.blog-post .post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.blog-post .post-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Dark theme content boxes */
.recipe-stats-box,
.meal-prep-tip,
.user-testimonial,
.family-tip,
.pro-tip,
.recipe-tip {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    margin: 2rem 0 !important;
    color: var(--text-primary) !important;
}

.meal-prep-tip,
.family-tip,
.pro-tip,
.recipe-tip {
    border-left: 4px solid var(--primary-color) !important;
}

.user-testimonial {
    border-left: 4px solid var(--accent-color) !important;
}

/* CTA Box for blog posts */
.blog-post .cta-box {
    background: var(--dark-card) !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--text-primary) !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    text-align: center !important;
    margin: 3rem 0 !important;
}

.blog-post .cta-box h3 {
    color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
    font-size: 1.6rem !important;
}

.blog-post .cta-box p {
    color: var(--text-secondary) !important;
    margin-bottom: 1.5rem !important;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.post-content a:hover {
    color: var(--secondary-color);
}

.post-cta {
    background: linear-gradient(145deg, var(--dark-card), #1a1a1a);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid var(--dark-border);
}

.post-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.post-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 1px solid rgba(255, 0, 110, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.share-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.share-link:hover {
    color: var(--primary-color);
}

.post-navigation {
    max-width: 800px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.nav-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-next:hover {
    transform: translateX(5px);
}

/* Mobile responsive for blog posts */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-image {
        height: 150px;
    }
    
    .post-content {
        padding: 0.875rem;
        padding-top: 0.625rem;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .post-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .post-tags {
        justify-content: center;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Blog Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-brand .logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}