/* Font Face - MoreSugar */
@font-face {
    font-family: 'MoreSugar';
    src: url('assets/fonts/MoreSugar-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Couleurs GoomY - Charte graphique exacte - VERT */
    --primary-700: #002816;      /* Vert très foncé - CTA principal */
    --primary-500: #166534;      /* Vert moyen - Accents */
    --primary-300: #22C55E;      /* Vert clair - Accents secondaires */
    --primary-100: #D1FAE5;       /* Vert très clair - Fonds */
    --primary-main: #002816;      /* Vert principal */
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9F1E5;      /* Beige/creme du splash */
    --bg-alt: #FAFAFA;
    
    /* Text */
    --text-primary: #1A1A1A;
    --text-secondary: #525252;
    --text-light: #737373;
    
    /* Grays */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Accents */
    --accent-orange: #F97316;     /* Instagram */
    --accent-red: #EF4444;         /* YouTube */
    
    /* Spacing (selon le thème) */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.03);
}

body {
    font-family: 'MoreSugar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-small {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-700);
    font-family: 'MoreSugar', sans-serif;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    font-family: 'MoreSugar', sans-serif;
}

.nav-links a:hover {
    color: var(--primary-700);
}

.btn-download-nav {
    background: var(--primary-700);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'MoreSugar', sans-serif;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 40, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(22, 101, 52, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
    hyphens: none;
    -webkit-hyphens: none;
}

.highlight {
    color: var(--primary-700);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-700);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-lg);
    font-family: 'MoreSugar', sans-serif;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: #fef3df;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: border-color 0.2s, transform 0.2s;
    font-family: 'MoreSugar', sans-serif;
    cursor: pointer;
}

button.btn-secondary {
    border: 2px solid var(--gray-200);
    font-family: 'MoreSugar', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--primary-700);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-700);
    margin-bottom: 4px;
    font-family: 'MoreSugar', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'MoreSugar', sans-serif;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.phone-screen {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 32px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.app-preview {
    background: white;
    border-radius: 24px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    padding: 24px 20px;
    text-align: center;
}

.app-logo-small {
    color: white;
    font-size: 24px;
    font-weight: 800;
    font-family: 'MoreSugar', sans-serif;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-alt);
}

/* Saved Header */
.saved-header {
    margin-bottom: 20px;
    text-align: center;
}

.saved-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'MoreSugar', sans-serif;
}

.saved-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
}

.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icon-container {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #E8F5E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-700);
}

.search-icon-container svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-700);
}

.search-input {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    font-family: 'MoreSugar', sans-serif;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.search-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

/* Recipes List */
.recipes-list {
    margin-top: 8px;
}

.recipe-icon {
    font-size: 32px;
}

.recipe-info {
    flex: 1;
}

.recipe-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'MoreSugar', sans-serif;
    line-height: 1.3;
}

.recipe-author {
    font-size: 12px;
    color: var(--primary-700);
    font-weight: 500;
    margin-bottom: 4px;
    font-family: 'MoreSugar', sans-serif;
}

.recipe-meta {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

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

.feature-card {
    padding: 32px;
    background: #fef3df;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: var(--shadow-card);
}

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

/* Features Download Banner */
.features-download-banner {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.features-download-content {
    max-width: 600px;
    margin: 0 auto;
}

.features-download-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    font-family: 'MoreSugar', sans-serif;
}

.features-download-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

.features-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-download-buttons .download-btn {
    background: white;
    color: var(--text-primary);
    min-width: 180px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    color: white;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    font-family: 'MoreSugar', sans-serif;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.step-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    color: white;
    text-align: center;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'MoreSugar', sans-serif;
}

.download-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 48px;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

.download-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fef3df;
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.download-btn svg {
    width: 32px;
    height: 32px;
}

.download-btn-text {
    text-align: left;
}

.download-btn-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    font-family: 'MoreSugar', sans-serif;
}

.download-btn-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--bg-alt);
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-info .logo {
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 15px;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--primary-700);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* SEO Content Section */
.seo-content {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* SEO Hero Section */
.seo-hero {
    margin-bottom: 80px;
}

.seo-hero-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-hero-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.seo-hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Platforms Grid */
.seo-platforms {
    margin-bottom: 80px;
}

.seo-platforms h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

/* Platforms Carousel */
.platforms-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.platforms-carousel {
    overflow: hidden;
    position: relative;
}

.platforms-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.platforms-carousel-track .platform-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-300);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-700);
    color: white;
    border-color: var(--primary-700);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots.dots-window {
    min-width: 120px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot.active {
    background: var(--primary-700);
    width: 24px;
    border-radius: 5px;
}

.recipes-main {
    padding-top: 120px;
}

.recipes-hero {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 101, 52, 0.05)) !important;
    padding: var(--spacing-xxl) 0 !important;
}

.recipes-hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xxl);
    align-items: center;
}

.recipes-hero-text h1 {
    font-size: 58px !important;
    line-height: 1.1 !important;
    margin-bottom: var(--spacing-lg) !important;
    color: var(--text-primary) !important;
    font-weight: 700 !important;
}

.recipes-hero-text h1 span {
    color: var(--primary-500) !important;
}

.recipes-hero-text p {
    font-size: 18px !important;
    color: var(--text-secondary) !important;
    margin-bottom: var(--spacing-xl) !important;
    max-width: 520px !important;
    line-height: 1.6 !important;
}

.recipes-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
}

.recipes-stat-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 40, 22, 0.06);
}

.recipes-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: var(--spacing-xs);
}

.recipes-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.recipes-hero-preview {
    display: flex;
    justify-content: center;
}

.recipes-preview-card {
    background: #FEF3DF;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 360px;
    width: 100%;
}

.recipes-preview-badge {
    align-self: flex-start;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-700);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.recipes-preview-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.recipes-preview-avatar,
.skeleton-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
}

.recipes-preview-cta {
    background: var(--primary-700) !important;
    color: white !important;
    border: none !important;
    padding: 14px 20px !important;
    border-radius: var(--radius-lg) !important;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.recipes-preview-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recipes-toolbox {
    padding: var(--spacing-xl) 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.recipes-toolbox-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    justify-content: space-between;
    align-items: flex-end;
}

.recipes-search {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.recipes-search label {
    font-weight: 600;
    color: var(--primary-700);
    font-size: 14px;
}

.recipes-search-field {
    position: relative;
}

.recipes-search-field input {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 14px 18px 14px 42px;
    font-size: 16px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.recipes-search-field .search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--primary-500);
}

.recipes-filters {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.recipes-filter-button {
    border: 1px solid rgba(0, 40, 22, 0.12);
    background: white;
    color: var(--primary-700);
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.recipes-filter-button--active,
.recipes-filter-button:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(22, 101, 52, 0.25);
}

.recipes-grid-section {
    padding: var(--spacing-xxl) 0 var(--spacing-xxl);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
}

.recipe-card {
    background: #FEF3DF;
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 40, 22, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

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

.recipe-card-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(0, 40, 22, 0.4);
}

.recipe-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-card-info h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-700);
}

.recipe-card-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.recipe-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
}

.recipe-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.recipe-card-tag {
    font-size: 12px;
    background: rgba(0, 40, 22, 0.07);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    color: var(--primary-700);
}

.recipes-loader {
    margin-top: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    color: var(--text-secondary);
}

.recipes-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 4px solid rgba(0, 40, 22, 0.15);
    border-top-color: var(--primary-500);
    animation: recipes-spin 0.6s linear infinite;
}

@keyframes recipes-spin {
    to {
        transform: rotate(360deg);
    }
}

.recipes-empty-state {
    margin-top: var(--spacing-xxl);
    text-align: center;
    background: white;
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.recipes-empty-state img {
    max-width: 220px;
    margin-bottom: var(--spacing-xl);
}

.recipes-empty-state h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-700);
}

.recipes-empty-state p {
    color: var(--text-secondary);
}

.recipe-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.recipe-modal[aria-hidden="false"] {
    display: block;
}

.recipe-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
}

.recipe-modal-content {
    position: relative;
    max-width: 960px;
    margin: 5vh auto;
    background: #FEFDF8;
    border-radius: 32px;
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
}

.recipe-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 40, 22, 0.08);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary-700);
}

.recipe-modal-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    justify-content: space-between;
}

.recipe-modal-meta h2 {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-700);
}

.recipe-modal-meta p {
    color: var(--text-secondary);
    max-width: 520px;
}

.recipe-modal-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.18);
    color: var(--primary-700);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    margin-bottom: var(--spacing-sm);
}

.recipe-modal-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.recipe-modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
}

.recipe-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-modal-media {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-modal-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.recipe-modal-section h3 {
    font-size: 22px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-700);
}

.recipe-modal-list,
.recipe-modal-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.recipe-modal-list li {
    background: white;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.recipe-modal-steps li {
    background: white;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    counter-increment: step;
    position: relative;
}

.recipe-modal-steps li::before {
    content: counter(step);
    position: absolute;
    top: 12px;
    left: -32px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.recipe-modal-footer {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 968px) {
    .recipes-hero-content {
        grid-template-columns: 1fr;
    }

    .recipe-modal-content {
        margin: 3vh auto;
        padding: var(--spacing-xl);
    }

    .recipe-modal-steps li::before {
        left: 12px;
        top: -14px;
    }

    .recipe-modal-steps li {
        padding-top: 32px;
    }
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: #fef3df;
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.platform-card:hover {
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.platform-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.platform-card p {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
}

/* Features Layout */
.seo-features-layout {
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.seo-feature-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.seo-feature-item.reverse {
    grid-template-columns: 1fr 150px;
}

.seo-feature-item.reverse .feature-illustration {
    order: 2;
}

.feature-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.feature-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

.feature-text a {
    color: var(--primary-700);
    text-decoration: underline;
    font-weight: 600;
}

/* Recipe Types Grid */
.seo-recipe-types {
    margin-bottom: 80px;
}

.seo-recipe-types h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.recipe-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.recipe-type-card {
    background: #fef3df;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.recipe-type-card:hover {
    box-shadow: var(--shadow-lg);
}

.type-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.recipe-type-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
    text-align: center;
}

.recipe-type-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Benefits Grid */
.seo-benefits {
    margin-bottom: 80px;
}

.seo-benefits h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fef3df;
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
}

.benefit-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Additional Content Cards */
.seo-additional {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-content-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #fef3df;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.seo-content-card.reverse {
    grid-template-columns: 1fr 150px;
}

.seo-content-card.reverse .content-illustration {
    order: 2;
}

.content-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.content-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Legacy SEO Text (for any remaining content) */
.seo-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.seo-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.seo-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Recipe Detail View Styles */
.recipe-detail-view {
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.recipe-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    color: white;
    padding: 0;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.recipe-detail-title {
    flex: 1;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'MoreSugar', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recipe-detail-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-alt);
}

.recipe-detail-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef3df;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    box-shadow: var(--shadow-card);
}

.meta-icon {
    font-size: 16px;
}

.recipe-section {
    margin-bottom: 24px;
    background: #fef3df;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.recipe-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.recipe-ingredients {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-ingredients li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    line-height: 1.6;
}

.recipe-ingredients li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-700);
    font-weight: bold;
}

.recipe-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.recipe-steps li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    line-height: 1.6;
    counter-increment: step-counter;
}

.recipe-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 8px;
    top: 12px;
    background: var(--primary-700);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'MoreSugar', sans-serif;
}

.recipe-tip {
    background: var(--primary-100);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-700);
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    line-height: 1.6;
    margin-top: 24px;
}

.recipe-tip strong {
    color: var(--primary-700);
    font-weight: 700;
}

/* Recipe Thumbnails */
.recipe-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.recipe-card-preview {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
    transform-style: preserve-3d;
    will-change: transform;
}

.recipe-card-preview:hover {
    /* Animation gérée par GSAP */
}

.recipe-card-preview .recipe-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 28px;
}

/* Recipe Detail Image */
.recipe-detail-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.recipe-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Recipe Loader */
.recipe-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 300px;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--primary-100);
    border-top-color: var(--primary-700);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    font-weight: 400;
}

/* Flying Recipe Animation */
.flying-recipe {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform;
}

/* Particles */
.particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary-300);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-300);
    will-change: transform, opacity;
}

.flying-recipe-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 3px solid white;
}

.flying-recipe-icon {
    display: none;
    font-size: 48px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: var(--primary-100);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 3px solid white;
}

.flying-recipe-image[style*="display: none"] ~ .flying-recipe-icon,
.flying-recipe-image:not([src]) ~ .flying-recipe-icon {
    display: flex !important;
}

/* Clickable Recipe Cards */
.clickable-recipe {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-recipe:hover {
    box-shadow: var(--shadow-md);
}

/* Text reveal animations */
.char {
    display: inline-block;
    transform-origin: center;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Influencers Section */
.influencers {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* Influencers Carousel */
.influencers-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 48px auto 0;
}

.influencers-carousel {
    overflow: hidden;
    position: relative;
}

.influencers-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 20px; /* Espace pour l'ombre */
}

.influencers-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.influencers-carousel-track .influencer-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.influencer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #fef3df;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s;
    transform-style: preserve-3d;
    will-change: transform;
}

.influencer-card:hover {
    box-shadow: var(--shadow-lg);
}

.influencer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--primary-300);
}

.influencer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-700);
    font-family: 'MoreSugar', sans-serif;
}

.influencer-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    font-family: 'MoreSugar', sans-serif;
    word-break: break-word;
}

.influencer-skeleton {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .influencers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .influencer-avatar {
        width: 70px;
        height: 70px;
    }
    
    .influencer-avatar-fallback {
        font-size: 28px;
    }
    
    .influencer-username {
        font-size: 13px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-image {
        order: -1;
    }

    .phone-screen {
        width: 280px;
        height: 560px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a:not(.btn-download-nav) {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 30px;
    }
    
    .phone-screen {
        width: 240px;
        height: 480px;
        padding: 12px;
    }
    
    .app-header {
        padding: 16px 12px;
    }
    
    .app-logo-small {
        font-size: 20px;
    }
    
    .app-content {
        padding: 12px;
    }
    
    .saved-header {
        margin-bottom: 12px;
    }
    
    .saved-title {
        font-size: 16px;
    }
    
    .saved-subtitle {
        font-size: 11px;
    }
    
    .search-card {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .search-icon-container {
        width: 28px;
        height: 28px;
    }
    
    .search-input {
        font-size: 12px;
    }
    
    .recipe-card-preview {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .recipe-thumbnail {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    
    .recipe-title {
        font-size: 13px;
        line-height: 1.2;
    }
    
    .recipe-author {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .recipe-meta {
        font-size: 11px;
    }
    
    .recipe-detail-header {
        padding: 12px 16px;
    }
    
    .recipe-detail-title {
        font-size: 16px;
    }
    
    .recipe-detail-content {
        padding: 12px;
        font-size: 13px;
    }
    
    .recipe-detail-meta {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .recipe-meta-item {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .recipe-section-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .recipe-ingredients li,
    .recipe-steps li {
        font-size: 12px;
        margin-bottom: 6px;
        padding-left: 20px;
    }
    
    .recipe-tip {
        font-size: 11px;
        padding: 10px;
        margin-top: 12px;
    }
    
    .influencers-carousel-track .influencer-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .influencers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .carousel-prev {
        left: -16px;
    }
    
    .carousel-next {
        right: -16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .influencer-avatar {
        width: 60px;
        height: 60px;
    }
    
    .influencer-avatar-fallback {
        font-size: 24px;
    }
    
    .influencer-username {
        font-size: 12px;
    }
    
    /* SEO Responsive */
    .seo-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .platforms-carousel-track .platform-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .carousel-prev {
        left: -16px;
    }
    
    .carousel-next {
        right: -16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .seo-feature-item,
    .seo-feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .seo-feature-item.reverse .feature-illustration {
        order: 0;
    }
    
    .recipe-types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .seo-content-card,
    .seo-content-card.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }
    
    .seo-content-card.reverse .content-illustration {
        order: 0;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    /* Features Download Banner Responsive */
    .features-download-banner {
        margin-top: 60px;
        padding: 40px 24px;
    }
    
    .features-download-title {
        font-size: 24px;
    }
    
    .features-download-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .features-download-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-download-buttons .download-btn {
        width: 100%;
        min-width: auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .download-title {
        font-size: 36px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================= */
/* ======= BLOG STYLES ===== */
/* ========================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-hero {
    background: linear-gradient(120deg, rgba(22, 101, 52, 0.12), rgba(34, 197, 94, 0.12));
    padding: 96px 0 64px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.blog-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.blog-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
}

.blog-list {
    padding: 64px 0;
}

.blog-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    color: inherit;
}

.blog-card__link h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.blog-card__excerpt {
    flex-grow: 1;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'MoreSugar', sans-serif;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'MoreSugar', sans-serif;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(22, 101, 52, 0.12);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-card__link:hover h2 {
    color: var(--primary-dark);
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.4);
}

.blog-newsletter {
    padding: 72px 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(22, 101, 52, 0.18));
}

.blog-newsletter__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.blog-newsletter__content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.blog-newsletter__content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    min-width: 260px;
    padding: 14px 20px;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: var(--radius-lg);
    font-size: 16px;
}

.newsletter-form button {
    padding: 14px 28px;
}

.blog-article-wrapper {
    max-width: 840px;
    margin: 0 auto;
    padding: 48px 24px 96px;
    font-family: 'MoreSugar', sans-serif;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
}

.breadcrumbs ol {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.breadcrumbs a {
    color: var(--primary-dark);
    font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 4px;
    color: rgba(15, 118, 110, 0.5);
}

.blog-article header h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'MoreSugar', sans-serif;
}

.article-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
}

.article-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.blog-article section {
    margin-bottom: 40px;
    font-family: 'MoreSugar', sans-serif;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-article p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-family: 'MoreSugar', sans-serif;
}

.blog-article ul,
.blog-article ol {
    margin: 16px 0 0 24px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
}

.blog-article blockquote {
    margin: 24px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--primary-dark);
    background: rgba(15, 118, 110, 0.08);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-style: italic;
}

.article-conclusion {
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.08), rgba(34, 197, 94, 0.08));
    padding: 32px;
    border-radius: var(--radius-xl);
}

.blog-article-figure {
    margin: 32px auto;
    background: rgba(15, 118, 110, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 640px;
}

.blog-article-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-article-figure figcaption {
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    font-family: 'MoreSugar', sans-serif;
    line-height: 1.6;
}

.article-conclusion h2 {
    margin-top: 0;
}

.article-conclusion .btn-primary {
    margin-top: 16px;
}

.article-related {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 118, 110, 0.12);
}

.article-related h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.article-related ul {
    display: grid;
    gap: 12px;
    padding-left: 0;
    list-style: none;
}

.article-related a {
    color: var(--primary-dark);
    font-weight: 600;
}

.article-related li::before {
    content: "→";
    margin-right: 6px;
    color: rgba(15, 118, 110, 0.6);
}

.home-blog {
    padding: 96px 0;
    background: rgba(15, 118, 110, 0.05);
}

.home-blog .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-blog-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-blog-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.home-blog-card span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.home-blog-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'MoreSugar', sans-serif;
}

.home-blog-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-family: 'MoreSugar', sans-serif;
}

.home-blog-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-weight: 600;
}

.home-blog-card a:hover {
    color: var(--primary-700);
}

.blog-cta {
    margin-top: 48px;
    text-align: center;
}

.blog-cta .btn-secondary {
    padding: 14px 32px;
}

.blog-hero .container,
.blog-list .container,
.blog-newsletter .container,
.home-blog .container {
    max-width: 1100px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-intro {
        font-size: 16px;
    }

    .blog-article header h1 {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-card__link {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 72px 0 48px;
    }

    .blog-card__link {
        padding: 20px;
    }

    .blog-card__link h2 {
        font-size: 22px;
    }

    .article-meta {
        flex-wrap: wrap;
    }

    .blog-newsletter__content h2 {
        font-size: 26px;
    }

    .blog-newsletter__content p {
        font-size: 16px;
    }

    .article-conclusion {
        padding: 24px;
    }
}

.recipe-detail-main {
    padding-top: 120px;
    background: var(--bg-primary);
}

.recipe-detail-hero {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(22, 101, 52, 0.05));
    padding: var(--spacing-xxl) 0;
}

.recipe-detail-hero .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.recipe-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-700);
    text-decoration: none;
    font-weight: 600;
}

.recipe-detail-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 720px;
}

.recipe-detail-meta h1 {
    font-size: 52px;
    line-height: 1.1;
    color: var(--primary-700);
}

.recipe-detail-meta p {
    color: var(--text-secondary);
    font-size: 18px;
}

.recipe-detail-badge {
    align-self: flex-start;
    background: rgba(34, 197, 94, 0.18);
    color: var(--primary-700);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    letter-spacing: 0.03em;
}

.recipe-detail-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.recipe-detail-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
}

.recipe-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-detail-infos {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.recipe-detail-tag {
    font-size: 12px;
    background: rgba(0, 40, 22, 0.07);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: var(--primary-700);
}

.recipe-detail-media {
    margin: var(--spacing-xxl) auto;
    max-width: 960px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 40, 22, 0.12), rgba(34, 197, 94, 0.12));
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-detail-media-placeholder {
    padding: 120px 40px;
    color: rgba(0, 40, 22, 0.5);
    font-weight: 600;
    text-align: center;
}

.recipe-detail-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.recipe-detail-section h2 {
    font-size: 26px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-700);
}

.recipe-detail-list,
.recipe-detail-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.recipe-detail-list li {
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.recipe-detail-steps li {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    counter-increment: step;
    position: relative;
}

.recipe-detail-steps li::before {
    content: counter(step);
    position: absolute;
    left: -32px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.recipe-detail-cta {
    margin: var(--spacing-xxl) auto;
    text-align: center;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.recipe-detail-cta p {
    color: var(--text-secondary);
    font-size: 18px;
}

.recipe-detail-error {
    max-width: 640px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-xxl);
    text-align: center;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.recipe-detail-error h2 {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-700);
}

@media (max-width: 968px) {
    .recipe-detail-meta h1 {
        font-size: 42px;
    }

    .recipe-detail-steps li::before {
        left: 12px;
        top: -14px;
    }

    .recipe-detail-steps li {
        padding-top: 36px;
    }
}

.recipes-hero-cta {
    margin-top: var(--spacing-lg);
}

.recipes-hero-cta .recipes-preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
