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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

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

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: hsl(207, 90%, 54%);
}

.nav-link.active {
    color: hsl(210, 29%, 24%);
    border-bottom: 2px solid hsl(207, 90%, 54%);
    padding-bottom: 4px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
}

.chevron-down {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: hsl(210, 29%, 24%);
}

.mobile-menu {
    display: none;
    padding: 16px 0;
    border-top: 1px solid #eee;
}

.mobile-menu.show {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    color: #666;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: #f9f9f9;
}

/* Hero Section */
.hero-section {
    background: hsl(203, 89%, 95%);
    padding: 64px 0 96px;
}

.hero-content {
    text-align: center;
    margin-bottom: 32px;
}

.badge {
    background: hsl(207, 90%, 54%);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 32px;
    margin-bottom: 32px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.client-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.client-panel h3 {
    font-weight: 600;
    color: hsl(210, 29%, 24%);
}

.add-btn {
    background: hsl(207, 90%, 54%);
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-btn:hover {
    background: hsl(207, 90%, 44%);
}

.client-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-images img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.meal-dashboard {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dashboard-header h3 {
    font-weight: 600;
    color: hsl(210, 29%, 24%);
}

.calories {
    font-size: 12px;
    color: #666;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.day-header {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    color: #666;
    padding: 8px 0;
}

.meal-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meal-item {
    background: white;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.calories-small {
    color: #22c55e;
    font-size: 10px;
}

.progress-section {
    margin-top: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    background: hsl(207, 90%, 54%);
    height: 100%;
    width: 75%;
    border-radius: 8px;
}

.trust-badge {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* Engagement Section */
.engagement-section {
    padding: 64px 0 96px;
    background: white;
}

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

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.feature-card.pink-bg {
    background: hsl(330, 40%, 96%);
}

.feature-card.white-bg {
    background: white;
    border: 2px solid #f1f5f9;
}

.feature-card.green-bg {
    background: hsl(120, 40%, 96%);
}

.feature-image {
    margin-bottom: 24px;
}

.feature-image img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
}

.app-mockup {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.app-screen {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    max-width: 280px;
}

.app-screen img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-line {
    height: 12px;
    background: white;
    border-radius: 4px;
}

.content-line.wide {
    width: 75%;
}

.content-line.narrow {
    width: 50%;
}

.community-mockup {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.user-avatars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.blue-avatar {
    background: hsl(207, 90%, 54%);
}

.green-avatar {
    background: #22c55e;
}

.purple-avatar {
    background: #a855f7;
}

.chat-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-line {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
}

.chat-line.full {
    width: 100%;
}

.chat-line.partial {
    width: 66%;
}

/* How It Works Section */
.how-it-works-section {
    padding: 64px 0 96px;
    background: hsl(210, 17%, 97%);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

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

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    background: hsl(207, 90%, 54%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 16px;
}

.step-content p {
    color: #666;
    max-width: 500px;
}

.step-mockup {
    flex-shrink: 0;
}

.mockup-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 256px;
}

.mockup-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-line.wide {
    width: 75%;
}

.mockup-line.narrow {
    width: 50%;
}

.mockup-line.medium {
    width: 66%;
}

.mockup-line.blue {
    background: hsl(207, 90%, 54%);
}

.invite-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
}

.invite-header svg {
    width: 16px;
    height: 16px;
    color: hsl(207, 90%, 54%);
}

.invite-users {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.user-dot.green {
    background: #22c55e;
}

.user-dot.blue {
    background: hsl(207, 90%, 54%);
}

.user-line {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    flex: 1;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.progress-avatar.blue {
    background: hsl(207, 90%, 54%);
}

.progress-avatar.orange {
    background: #f59e0b;
}

.progress-avatar.purple {
    background: #a855f7;
}

.progress-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.progress-badge.green {
    background: #dcfce7;
    color: #166534;
}

.progress-badge.yellow {
    background: #fef3c7;
    color: #92400e;
}

.progress-badge.red {
    background: #fecaca;
    color: #991b1b;
}

/* Business Growth Section */
.business-growth-section {
    padding: 64px 0 96px;
    background: white;
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.business-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 24px;
}

.business-content p {
    color: #666;
    margin-bottom: 24px;
}

.outline-btn {
    border: 2px solid hsl(207, 90%, 54%);
    color: hsl(207, 90%, 54%);
    background: transparent;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.outline-btn:hover {
    background: hsl(207, 90%, 54%);
    color: white;
}

.business-image {
    position: relative;
}

.business-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.eu-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: hsl(207, 90%, 54%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
}

.badge-title {
    font-weight: bold;
    font-size: 18px;
}

.badge-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

/* Personal Plans Section */
.personal-plans-section {
    padding: 64px 0 96px;
    background: hsl(210, 17%, 97%);
}

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

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    border-radius: 16px;
    padding: 32px;
}

.plan-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 16px;
}

.plan-card p {
    color: #666;
    margin-bottom: 24px;
}

.plan-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 64px 0 96px;
    background: white;
}

.platform-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 96px;
}

@media (max-width: 768px) {
    .platform-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.intro-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-content p {
    color: #666;
    margin-bottom: 32px;
    font-size: 16px;
}

.primary-btn {
    background: hsl(207, 90%, 54%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.primary-btn:hover {
    background: hsl(207, 90%, 44%);
}

.intro-mockup {
    display: flex;
    justify-content: center;
}

.browser-mockup {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
}

.browser-dots {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.browser-content {
    background: white;
    border-radius: 8px;
    padding: 16px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.grid-item {
    height: 32px;
    background: #f1f5f9;
    border-radius: 4px;
}

.feature-section {
    margin-bottom: 96px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.feature-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 24px;
}

.feature-content p {
    color: #666;
    margin-bottom: 32px;
}

.plan-mockup {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 24px;
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.plan-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
}

.item-line.full {
    width: 100%;
}

.item-line.partial {
    width: 66%;
}

.item-line.wide {
    width: 75%;
}

.item-line.narrow {
    width: 50%;
}

.color-bar {
    height: 16px;
    border-radius: 4px;
    width: 100%;
}

.color-bar.blue {
    background: hsl(207, 90%, 54%);
}

.color-bar.green {
    background: #22c55e;
}

.color-bar.yellow {
    background: #eab308;
}

.color-bar.red {
    background: #ef4444;
}

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

.feature-card-small {
    text-align: center;
}

.icon-container {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon {
    width: 32px;
    height: 32px;
    color: hsl(207, 90%, 54%);
}

.feature-card-small h3 {
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 8px;
}

.feature-card-small p {
    color: #666;
    font-size: 14px;
}

.recipe-section {
    margin-bottom: 96px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.recipe-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: hsl(210, 29%, 24%);
    margin-bottom: 24px;
}

.recipe-content p {
    color: #666;
}

.recipe-mockup {
    background: hsl(330, 40%, 96%);
    border-radius: 16px;
    padding: 24px;
}

.recipe-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

.recipe-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.recipe-content-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.recipe-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
}

.recipe-line.full {
    width: 100%;
}

.recipe-line.partial {
    width: 66%;
}

.recipe-line.wide {
    width: 75%;
}

.create-task-btn {
    background: hsl(210, 29%, 24%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.create-task-btn:hover {
    background: #374151;
}

/* Footer */
.footer {
    background: hsl(210, 29%, 24%);
    color: white;
    padding: 64px 0;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #cbd5e1;
}

.footer-contact h3,
.footer-demo h3 {
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-contact p {
    color: #cbd5e1;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form input {
    background: white;
    color: hsl(210, 29%, 24%);
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 16px;
}

.demo-form input::placeholder {
    color: #9ca3af;
}

.demo-btn {
    background: hsl(207, 90%, 54%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.demo-btn:hover {
    background: hsl(207, 90%, 44%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 48px 0 64px;
    }
    
    .engagement-section,
    .how-it-works-section,
    .business-growth-section,
    .personal-plans-section,
    .features-section {
        padding: 48px 0 64px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .platform-intro,
    .feature-section,
    .recipe-section {
        margin-bottom: 64px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        min-width: auto;
    }
}