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

:root {
    /* Colors */
    --primary-color: #FF6B35;
    --secondary-color: #27AE60;
    --accent-color: #F7B731;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #FAF9F7;
    --bg-white: #FFFFFF;
    --border-color: #E8E5E1;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Typography */
    --font-family: 'Noto Sans JP', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --spacing-xxl: 120px;
    
    /* Section Spacing */
    --section-padding: 80px;
    --section-gap: 48px;
    --element-gap: 24px;
    --title-gap: 16px;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    width: 100%;
}

.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-speed);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-full-image {
    height: 50px;
    width: auto;
}

/* Keep old styles for backwards compatibility */
.logo-image {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md);
    list-style: none;
}

/* PC・タブレット・スマホ全てでハンバーガーメニューを使用 */
.nav {
    position: fixed;
    top: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav.active {
    transform: translateX(0);
}

/* メニューオーバーレイ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px;
    transition: all var(--transition-speed);
    display: block;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.25));
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 1s ease-out;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-size: clamp(38px, 8vw, 68px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.8),
        2px 2px 0 rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(14px, 3vw, 17px);
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-subtitle strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
}

.btn-large {
    padding: 20px var(--spacing-xl);
    font-size: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Service Description Section
   ======================================== */
.service-description {
    background-color: #FFFEF8;
    padding: var(--section-padding) 0;
    text-align: center;
}

.service-main-title {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--element-gap);
    line-height: 1.6;
    text-align: center;
}

.service-brand {
    font-weight: 900;
    color: var(--text-dark);
}

.service-highlight-text {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.service-feature-text {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 500;
    line-height: 2;
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
}

.highlight-marker {
    background: linear-gradient(transparent 60%, #FFF59D 60%);
    padding: 2px 4px;
    display: inline;
    line-height: 1.8;
}

.spacing-break {
    display: block;
    content: "";
    margin-top: 0.5em;
}

.pc-break {
    display: inline;
}

@media (max-width: 768px) {
    .pc-break {
        display: none;
    }
}

/* ========================================
   Delivery Staff Section
   ======================================== */
.delivery-staff {
    background-color: #FFFEF8;
    padding: var(--spacing-xl) 0;
}

.delivery-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.delivery-image {
    max-width: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.delivery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Speech Bubble Styles */
.delivery-speech-bubble {
    background: white;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    flex: 1;
    max-width: 450px;
    min-width: 320px;
}

.delivery-speech-bubble::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #FFFFFF;
}

.bubble-text {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    text-align: left;
    white-space: pre-line;
    word-break: keep-all;
}

.delivery-message {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
    margin: 0;
    position: relative;
}

.delivery-message::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ========================================
   Section Styles
   ========================================== */
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Nutritionist Section
   ======================================== */
.nutritionist-section {
    background-color: #F0F9FF;
    padding: var(--spacing-xl) 0;
}

.nutritionist-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.nutritionist-image {
    max-width: 280px;
    width: 100%;
    flex-shrink: 0;
    text-align: center;
}

.nutritionist-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nutritionist-info {
    margin-top: var(--spacing-sm);
    text-align: center;
}

.nutritionist-title {
    font-size: 13px;
    font-weight: 600;
    color: #27AE60;
    margin: 0 0 4px 0;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 12px;
}

.nutritionist-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 4px 0 0 0;
}

.nutritionist-speech-bubble {
    background: white;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    flex: 1;
    max-width: 500px;
    min-width: 320px;
}

.nutritionist-speech-bubble::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #FFFFFF;
}

.nutritionist-speech-bubble .bubble-text {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
}

.speech-br {
    display: block;
    content: "";
    margin-top: -0.5em;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, #FFF59D 60%);
    font-weight: 700;
    padding: 0 2px;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding) 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--section-gap);
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--title-gap);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 17px);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Text Highlight */
.text-highlight {
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Yellow Highlight */
.highlight-yellow {
    font-weight: 900;
    background: linear-gradient(transparent 60%, #FFF59D 60%);
    padding: 0 4px;
}

/* ========================================
   Problem Section
   ======================================== */
.problem {
    background-color: #F5F0E8;
    padding: var(--section-padding) 0;
}

.section-title-bracket {
    font-size: clamp(14px, 2.5vw, 15px);
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding: 0 var(--spacing-lg);
}

.section-title-bracket::before {
    content: '［';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.section-title-bracket::after {
    content: '］';
    position: absolute;
    right: 0;
    font-size: 1.2em;
}

.section-subtitle-large {
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--section-gap);
    line-height: 1.4;
}

.problem-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--element-gap);
    margin-bottom: var(--section-gap);
}

.problem-category {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.problem-category-header {
    background-color: #6B7280;
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-size: clamp(14px, 2.5vw, 15px);
    font-weight: 700;
    margin-bottom: var(--element-gap);
    text-align: center;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.problem-list i {
    color: var(--text-dark);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.problem-list span {
    color: var(--text-dark);
    font-size: clamp(14px, 2.5vw, 15px);
}

.problem-list .highlight {
    background: linear-gradient(transparent 60%, #FFF59D 60%);
    padding: 2px 4px;
    font-weight: 700;
}

/* Solution Transition */
.solution-transition {
    text-align: center;
    margin-top: var(--section-gap);
    padding: var(--spacing-lg) 0;
}

.transition-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transition-arrow i {
    font-size: 28px;
    color: var(--text-dark);
    animation: bounce 2s infinite;
}

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

.transition-content {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-lg) var(--spacing-xl);
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.transition-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #F7B731);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.transition-subtitle {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
}

/* Old problem styles - keep for backwards compatibility but hide */
.problem-grid {
    display: none;
}

.problem-image {
    display: none;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    background-color: white;
}

/* Pricing Carousel Wrapper */
.pricing-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-xl);
}

.pricing-cards-container {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: var(--spacing-md);
}

.pricing-cards-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

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

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

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav i {
    font-size: 20px;
}

.pricing-card {
    background-color: #FFFEF8;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed);
    position: relative;
    flex: 0 0 auto;
    width: 380px;
    max-width: 90vw;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    scroll-snap-align: center;
}

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

.pricing-card.selected {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.pricing-badge.new {
    background: linear-gradient(135deg, #FF6B35, #FF8C61);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pricing-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.pricing-content {
    padding: var(--spacing-lg);
    text-align: center;
}

.pricing-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-note {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Carousel Controls - Hidden */
.carousel-btn {
    display: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--spacing-xl);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.indicator.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background-color: var(--primary-color);
    opacity: 0.7;
}

/* Scroll hint indicator */
.scroll-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: -var(--spacing-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.scroll-hint i {
    animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

/* ========================================
   Plan Options Section
   ======================================== */
.plan-options {
    background-color: white;
    padding: var(--section-padding) 0;
}

.plan-recommendation {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.plan-recommendation i {
    color: #FFD700;
    font-size: 24px;
    margin: 0 4px;
}

.plan-note {
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 700;
    margin: 0 auto var(--element-gap);
    max-width: 500px;
    line-height: 1.6;
}

.plan-flexibility-note {
    background: linear-gradient(135deg, #E8F5E9, #F1F8F4);
    border-left: 4px solid #27AE60;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    margin: var(--spacing-xl) auto 0;
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-flexibility-note i {
    color: #27AE60;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-flexibility-note p {
    color: var(--text-dark);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin: 0;
}

.plan-flexibility-note strong {
    color: #27AE60;
    font-weight: 700;
}

.plan-cta-wrapper {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.plan-trial-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 18px 40px;
    background: linear-gradient(135deg, #27AE60, #52C97F);
    color: white !important;
    border: none;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.plan-trial-cta:hover {
    background: linear-gradient(135deg, #229954, #27AE60);
    color: white !important;
    box-shadow: 0 6px 24px rgba(39, 174, 96, 0.4);
    transform: translateY(-2px);
}

.plan-trial-cta i {
    font-size: 20px;
}

.plan-slider-container {
    position: relative;
}

.plan-arrow-label {
    text-align: center;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--element-gap);
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-highlight {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #FFF5F0, white);
}

.plan-card-title {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* Progress Bar Style */
.plan-visual {
    margin-bottom: var(--spacing-lg);
}

.plan-percentage-display {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.percentage-item {
    text-align: center;
}

.percentage-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.percentage-item.company .percentage-label {
    color: #FF6B35;
}

.percentage-item.employee .percentage-label {
    color: #27AE60;
}

.percentage-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
}

.percentage-item.company .percentage-value {
    color: #FF6B35;
}

.percentage-item.employee .percentage-value {
    color: #27AE60;
}

.progress-bar {
    width: 100%;
    height: 40px;
    background-color: #F3F4F6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    transition: width 0.6s ease;
    position: relative;
}

.progress-fill.company {
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
}

.progress-fill.employee {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
}

.plan-breakdown {
    border-top: 2px solid #E5E7EB;
    padding-top: var(--spacing-md);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    font-size: 15px;
}

.breakdown-item.employee {
    padding-bottom: 0;
}

.breakdown-label {
    font-weight: 600;
    color: var(--text-dark);
}

.breakdown-amount {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
}

.breakdown-item.employee .breakdown-amount {
    color: var(--secondary-color);
}

.pie-chart-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pie-label-item {
    text-align: center;
}

.pie-label-item .pie-label-main {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
}

.pie-label-item .pie-label-percent {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

/* ========================================
   Pricing Structure Section
   ======================================== */
.pricing-structure {
    background-color: var(--bg-light);
    padding: var(--section-padding) 0;
}

.pricing-formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--element-gap);
    margin-bottom: var(--section-gap);
    flex-wrap: wrap;
}

.pricing-box {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-monthly {
    background: linear-gradient(135deg, #E0F7FA, white);
}

.pricing-peruse {
    background: linear-gradient(135deg, #FFE5D9, white);
}

.pricing-box-header {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    color: white;
}

.pricing-monthly .pricing-box-header {
    background-color: #27AE60;
}

.pricing-peruse .pricing-box-header {
    background-color: var(--primary-color);
}

.pricing-box-amount {
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-number {
    font-size: clamp(48px, 8vw, 60px);
    font-weight: 900;
    color: #27AE60;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-number-range {
    font-size: clamp(36px, 6vw, 45px);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 4px;
}

.pricing-peruse .pricing-number {
    color: var(--primary-color);
}

.pricing-unit {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    color: var(--text-dark);
    margin-left: 8px;
}

.pricing-box-note {
    text-align: center;
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-box-note small {
    font-size: 11px;
    display: block;
    margin-top: 8px;
}

.pricing-plus {
    font-size: 32px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--element-gap);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-detail-card {
    background-color: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-detail-title {
    background-color: #6B7280;
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.pricing-detail-amount {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.pricing-strikethrough {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.pricing-campaign {
    color: #DC2626;
    font-size: 1.2em;
}

.pricing-detail-text {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-light);
    line-height: 1.8;
}

/* Old pricing-grid - remove */
.pricing-grid {
    display: none;
}
    font-size: 18px;
}

/* Pricing Options */
.pricing-options {
    background-color: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
}

.options-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.option-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-speed);
    text-align: center;
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.option-image {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-icon {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 8px;
    flex-shrink: 0;
}

.option-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.option-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.option-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.option-description {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    display: none;
    line-height: 1.5;
}

.option-card:has(.option-description:not(:empty)) .option-description {
    display: block;
}

.option-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
}

.options-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    text-align: center;
}

/* Combination Examples */
.combination-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--border-color);
}

.combination-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: bold;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.scroll-hint-combo {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scroll-hint-combo i {
    color: var(--primary-color);
    animation: pointBounce 2s infinite;
}

@keyframes pointBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.combination-carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg);
}

.combination-carousel::-webkit-scrollbar {
    display: none;
}

.combination-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 400px;
    scroll-snap-align: center;
}

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

.combination-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.combination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combination-content {
    padding: var(--spacing-lg);
    text-align: center;
}

.combination-tags {
    margin-bottom: var(--spacing-sm);
}

.situation-tag {
    display: inline-block;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.combination-type {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.type-icon {
    font-size: 20px;
}

.combination-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.combination-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.combination-items .item {
    font-size: 13px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.combination-items .plus {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
}

.combination-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.combination-price .price-detail {
    font-size: 12px;
    color: var(--text-light);
}

.combination-price .price-total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Combination Plan CTA */
.combination-plan-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
}

.plan-cta-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.mobile-break-inline {
    display: none;
}

.plan-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C61);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.plan-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.plan-cta-button i {
    font-size: 14px;
    transition: transform var(--transition-speed);
}

.plan-cta-button:hover i {
    transform: translateX(4px);
}

/* ========================================
   Smartphone Ordering Section
   ======================================== */
.smartphone-ordering {
    background-color: white;
    padding: var(--spacing-md) 0 var(--spacing-xl);
}

.smartphone-ordering-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.smartphone-ordering-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.smartphone-ordering-image img {
    width: 100%;
    height: auto;
    display: block;
}

.smartphone-ordering-text {
    flex: 1;
}

.smartphone-ordering-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.smartphone-ordering-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.order-flow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: rgba(255, 107, 53, 0.08);
}

.order-flow-link:hover {
    background-color: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.order-flow-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.order-flow-link:hover i {
    transform: translateY(3px);
}

/* ========================================
   Order Flow Section
   ======================================== */
.order-flow {
    background-color: white;
    padding: var(--spacing-xl) 0;
}

.flow-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF8C61);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.flow-step-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #FFF5F0, #FFF9F5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flow-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.flow-step-period {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.flow-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Quality Section
   ======================================== */
.quality {
    background-color: var(--bg-light);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--element-gap);
    margin-bottom: 0;
}

.quality-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    text-align: center;
}

.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), #2ECC71);
    color: white;
    border-radius: 50%;
    font-size: 36px;
    margin: 0 auto var(--spacing-md);
}

.quality-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.quality-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Kitchen Carousel Styles */
.kitchen-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 600px;
    background: #000;
}

.kitchen-carousel {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.kitchen-slide {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.kitchen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.kitchen-carousel-wrapper .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    z-index: 10;
}

.kitchen-carousel-wrapper .carousel-btn:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.1);
}

.kitchen-carousel-wrapper .carousel-btn.prev {
    left: 16px;
}

.kitchen-carousel-wrapper .carousel-btn.next {
    right: 16px;
}

.kitchen-carousel-wrapper .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.kitchen-carousel-wrapper .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.kitchen-carousel-wrapper .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.kitchen-carousel-wrapper .dot.active {
    background: white;
    transform: scale(1.2);
}

.kitchen-description {
    max-width: 900px;
    margin: var(--spacing-md) auto 0;
    text-align: center;
    padding: 0 var(--spacing-sm);
}

.kitchen-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.quality-image {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.quality-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   Menu Examples Section
   ======================================== */
.menu-examples {
    background-color: white;
    padding: var(--spacing-xl) 0;
}

.menu-example-note {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}

.menu-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

.menu-carousel {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg);
}

.menu-carousel::-webkit-scrollbar {
    display: none;
}

.menu-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-speed);
    position: relative;
    flex: 0 0 350px;
    scroll-snap-align: center;
    box-shadow: var(--shadow-md);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.menu-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.menu-day-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

.menu-content {
    padding: 12px 14px;
    text-align: left;
}

.menu-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.menu-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.menu-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
    height: 100%;
    object-fit: cover;
}

.menu-content {
    padding: var(--spacing-md);
    text-align: center;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.menu-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.menu-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Menu Items List */
.menu-items {
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.menu-item {
    font-size: 12px;
    color: var(--text-dark);
    margin: 4px 0;
    line-height: 1.5;
}

.item-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 4px;
    display: inline-block;
    min-width: 48px;
}

/* Nutritionist Comment */
.nutritionist-comment {
    margin-top: 8px;
    padding: 10px;
    background: linear-gradient(135deg, #FFF5F0, #FFF9F5);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
}

.comment-header i {
    font-size: 12px;
}

.comment-text {
    font-size: 11px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--element-gap);
    margin-bottom: var(--section-gap);
}

.benefit-card {
    background: linear-gradient(135deg, #FAF9F7 0%, #FFFFFF 100%);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 12px;
    font-size: 32px;
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.benefits-image {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.benefits-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E55A2B 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--title-gap);
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 17px);
    line-height: 1.8;
    margin-bottom: var(--section-gap);
    opacity: 0.95;
}

.cta-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--element-gap);
    margin-bottom: var(--section-gap);
    flex-wrap: wrap;
}

.cta-step {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto var(--spacing-sm);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 14px;
    opacity: 0.9;
}

.cta-arrow {
    font-size: 24px;
}

.cta-buttons {
    margin-bottom: var(--element-gap);
}

.cta-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    background-color: var(--bg-light);
    padding: var(--section-padding) 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: var(--section-gap);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--title-gap);
    color: var(--text-dark);
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--element-gap);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 16px;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    color: #FF6B35;
    font-size: 13px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
    animation: errorSlideIn 0.3s ease;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-full-image {
    height: 45px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

/* Keep old styles for backwards compatibility */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-nav ul li {
    margin-bottom: var(--spacing-xs);
}

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

.footer-contact p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   Daily Flow Section
   ======================================== */
.daily-flow {
    background-color: #FFFEF8;
    padding: var(--section-padding) 0;
}

.flow-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--element-gap);
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.flow-time-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.flow-time-badge i {
    font-size: 14px;
}

.flow-step-title {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.flow-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-md);
    aspect-ratio: 4/3;
}

.flow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flow-content {
    width: 100%;
}

.flow-description {
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.8;
    color: var(--text-dark);
}

.flow-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background-color: white;
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--element-gap) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: clamp(15px, 2.5vw, 17px);
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-speed);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform var(--transition-speed);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(14px, 2.5vw, 16px);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Hide mobile-specific breaks on desktop */
.mobile-break {
    display: none;
}

/* Hide PC-specific breaks on mobile */
.pc-only {
    display: inline;
}

/* Desktop View - Font size and spacing adjustments */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 68px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.9;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 20px;
        line-height: 2;
        max-width: 800px;
    }
    
    .highlight {
        font-size: 20px;
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
    }
    
    .pricing-card-title {
        font-size: 24px;
    }
    
    .pricing-price {
        font-size: 48px;
    }
    
    .quality-card {
        padding: var(--spacing-lg);
    }
    
    .quality-title {
        font-size: 20px;
    }
    
    .quality-description {
        font-size: 15px;
    }
    
    .problem-category {
        padding: var(--spacing-lg);
    }
    
    .problem-category-header {
        font-size: 15px;
        padding: 12px var(--spacing-md);
    }
    
    .problem-list span {
        font-size: 15px;
    }
    
    .benefit-card {
        padding: var(--spacing-lg);
    }
    
    .benefit-title {
        font-size: 22px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .flow-step-title {
        font-size: 20px;
    }
    
    .flow-description {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 13px;
    }
}

/* Small Laptop / 13-inch Display (1025px - 1440px) */
@media (max-width: 1440px) and (min-width: 1025px) {
    /* Container adjustments for smaller screens */
    .container {
        max-width: 1100px;
        padding: 0 var(--spacing-lg);
    }
    
    /* Menu Carousel - slightly smaller cards */
    .menu-card {
        flex: 0 0 320px;
    }
    
    /* Combination cards - better fit */
    .combination-card {
        flex: 0 0 calc(45vw);
        min-width: 380px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 32px;
    }
    
    /* Quality cards */
    .quality-card {
        padding: var(--spacing-lg);
    }
    
    /* Smartphone ordering */
    .smartphone-ordering-content {
        gap: var(--spacing-lg);
    }
    
    .smartphone-ordering-title {
        font-size: 22px;
    }
}

/* Tablet View (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .flow-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Show mobile-specific breaks */
    .mobile-break {
        display: inline;
    }
    
    /* Hide PC-specific breaks */
    .pc-only {
        display: none;
    }
    
    /* Header adjustments for mobile */
    .header .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Logo adjustments for tablet/mobile */
    .logo {
        justify-content: flex-start;
    }
    
    .logo-full-image {
        height: 36px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    /* スマホ用のナビゲーション調整 */
    .nav {
        width: 280px;
        max-width: 85vw;
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    /* Pricing Carousel Mobile */
    .pricing-carousel-wrapper {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav i {
        font-size: 16px;
    }
    
    .carousel-nav.prev {
        left: -8px;
    }
    
    .carousel-nav.next {
        right: -8px;
    }
    
    .pricing-card {
        width: 320px;
    }
    
    /* Options Mobile - 縦幅を圧縮 */
    .options-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .option-card {
        padding: var(--spacing-sm);
        flex-direction: row;
        text-align: left;
        gap: var(--spacing-sm);
    }
    
    .option-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .option-icon {
        width: 80px;
        height: 80px;
    }
    
    .option-icon i {
        font-size: 32px;
    }
    
    .option-info {
        flex: 1;
        gap: 4px;
    }
    
    .option-card h5 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .option-description {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 4px;
    }
    
    .option-price {
        font-size: 16px;
        margin-top: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 15px;
        padding: 16px var(--spacing-md);
    }
    
    .cta-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-step {
        max-width: 100%;
        width: 100%;
    }
    
    .cta-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile */
    .form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: var(--spacing-sm);
    }
    
    .form-subtitle {
        font-size: 14px;
        margin-bottom: var(--spacing-md);
    }
    
    .form-group {
        margin-bottom: var(--spacing-sm);
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Pricing Carousel Mobile */
    .pricing-carousel-wrapper {
        padding: 0 var(--spacing-sm);
    }
    
    /* Pricing Cards Container - Tablet */
    .pricing-cards-container {
        gap: var(--spacing-md);
    }
    
    .pricing-card {
        max-width: 45%;
    }
    
    .pricing-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .pricing-image {
        height: 180px;
        padding: 0;
    }
    
    .pricing-content {
        padding: var(--spacing-md);
    }
    
    .pricing-name {
        font-size: 18px;
    }
    
    .pricing-description {
        font-size: 13px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .pricing-note {
        font-size: 12px;
    }
    
    /* Options Mobile */
    .options-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .option-card {
        padding: var(--spacing-sm);
    }
    
    .option-image,
    .option-icon {
        width: 50px;
        height: 50px;
    }
    
    .option-icon i {
        font-size: 24px;
    }
    
    .option-card h5 {
        font-size: 14px;
    }
    
    .option-description {
        font-size: 11px;
    }
    
    .option-price {
        font-size: 16px;
    }
    
    /* Combination Examples - Tablet */
    .combination-carousel {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    }
    
    .combination-card {
        flex: 0 0 calc(80vw - 32px);
        min-width: 280px;
    }
    
    .combination-image {
        height: 180px;
    }
    
    .combination-content {
        padding: var(--spacing-md);
    }
    
    .situation-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .combination-type {
        font-size: 18px;
    }
    
    .type-icon {
        font-size: 18px;
    }
    
    .combination-description {
        font-size: 13px;
    }
    
    .combination-items .item {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .combination-price .price-total {
        font-size: 18px;
    }
    
    /* Combination Plan CTA Mobile */
    .combination-plan-cta {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .plan-cta-text {
        font-size: 16px;
    }
    
    .plan-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Smartphone Ordering Mobile */
    .smartphone-ordering-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .smartphone-ordering-title {
        font-size: 20px;
    }
    
    .smartphone-ordering-description {
        font-size: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .order-flow-link {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    /* Order Flow Tablet */
    .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .flow-step-image {
        width: 160px;
        height: 160px;
    }
    
    .flow-step-title {
        font-size: 18px;
    }
    
    .flow-description {
        font-size: 13px;
    }
    
    /* Quality Section - 2 columns on tablet */
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .quality-card:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    /* Kitchen Carousel Mobile */
    .kitchen-carousel-wrapper {
        height: 250px;
        max-width: 100%;
        margin: var(--spacing-md) 0 0;
        border-radius: 8px;
    }
    
    .kitchen-carousel-wrapper .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .kitchen-carousel-wrapper .carousel-btn.prev {
        left: 8px;
    }
    
    .kitchen-carousel-wrapper .carousel-btn.next {
        right: 8px;
    }
    
    .kitchen-carousel-wrapper .carousel-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .kitchen-carousel-wrapper .dot {
        width: 8px;
        height: 8px;
    }
    
    .kitchen-description {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-sm);
    }
    
    .kitchen-description p {
        font-size: 14px;
    }
    
    /* Menu Carousel Mobile */
    .menu-carousel-wrapper {
        padding: 0;
    }
    
    .menu-carousel {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    }
    
    /* Menu Carousel Tablet */
    .menu-carousel {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    }
    
    .menu-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }
    
    .menu-day-badge {
        font-size: 18px;
        padding: 10px 16px;
    }
    
    .menu-content {
        padding: var(--spacing-sm);
    }
    
    .menu-title {
        font-size: 18px;
    }
    
    .menu-description {
        font-size: 13px;
    }
    
    /* Plan Options Mobile */
    .plan-flexibility-note {
        flex-direction: column;
        gap: 8px;
        padding: var(--spacing-sm) var(--spacing-md);
        margin: var(--spacing-lg) var(--spacing-sm) 0;
    }
    
    .plan-flexibility-note i {
        font-size: 18px;
    }
    
    .plan-flexibility-note p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .plan-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .plan-card {
        min-width: 100%;
    }
    
    .plan-cta-wrapper {
        margin-top: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .plan-trial-cta {
        width: 100%;
        font-size: 16px;
        padding: 16px var(--spacing-md);
        justify-content: center;
    }
    
    /* Pricing Structure Mobile */
    .pricing-formula {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .pricing-box {
        min-width: 100%;
    }
    
    .pricing-plus {
        transform: rotate(90deg);
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Daily Flow Mobile */
    .flow-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        padding-left: 50px;
    }
    
    /* Vertical connecting line */
    .flow-timeline::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 30px;
        bottom: 30px;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
        border-radius: 2px;
    }
    
    .flow-step {
        margin-bottom: var(--spacing-xl);
        position: relative;
        padding-top: var(--spacing-xs);
        align-items: flex-start;
        text-align: left;
    }
    
    .flow-step:last-child {
        margin-bottom: 0;
    }
    
    /* Timeline dot - aligned with time badge */
    .flow-step::before {
        content: '';
        position: absolute;
        left: -34px;
        top: 20px;
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid var(--primary-color);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
        z-index: 2;
    }
    
    .flow-time-badge {
        padding: 10px 24px;
        font-size: 14px;
        align-self: flex-start;
    }
    
    .flow-time-badge i {
        font-size: 16px;
    }
    
    .flow-step-title {
        font-size: 24px;
        margin-bottom: var(--spacing-md);
        width: 100%;
    }
    
    .flow-image {
        max-width: 600px;
        margin: 0 0 var(--spacing-md) 0;
        width: 100%;
    }
    
    .flow-content {
        width: 100%;
    }
    
    .flow-description {
        font-size: 15px;
        line-height: 2;
    }
    
    /* Delivery Staff Mobile */
    .delivery-staff {
        padding: var(--spacing-xl) 0;
    }
    
    .delivery-content {
        flex-direction: column !important;
        gap: var(--spacing-lg);
    }
    
    .delivery-image {
        max-width: 180px;
        order: 2 !important;
    }
    
    .delivery-speech-bubble {
        order: 1 !important;
        padding: 20px 28px;
        max-width: 400px;
        min-width: 280px;
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .bubble-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }
    
    .delivery-message {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
        --spacing-xl: 48px;
        --spacing-lg: 32px;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.4;
        margin-bottom: 24px;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 14px;
        padding: 15px var(--spacing-md);
    }
    
    /* Pricing Carousel Mobile Optimizations */
    .pricing-carousel-wrapper {
        padding: 0;
    }
    
    /* Pricing Cards Container - Mobile */
    .pricing-cards-container {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .pricing-card {
        max-width: 48%;
    }
    
    .pricing-badge {
        font-size: 11px;
        padding: 4px 10px;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .pricing-image {
        height: 140px;
        padding: 0;
    }
    
    .pricing-content {
        padding: var(--spacing-sm);
    }
    
    .pricing-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .pricing-description {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .pricing-price {
        margin-bottom: 6px;
    }
    
    .price-currency {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .pricing-note {
        font-size: 10px;
    }
    
    /* Options Mobile Small */
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .carousel-indicators {
        margin-bottom: var(--spacing-md);
    }
    
    .scroll-hint {
        font-size: 13px;
        margin-top: -var(--spacing-sm);
    }
    
    /* Combination Examples - Mobile */
    .combination-section {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
    }
    
    .combination-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .scroll-hint-combo {
        font-size: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .combination-carousel {
        padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-md);
    }
    
    .combination-card {
        flex: 0 0 calc(85vw - 16px);
        min-width: 260px;
        max-width: 320px;
    }
    
    /* Combination Plan CTA - Mobile */
    .combination-plan-cta {
        padding: var(--spacing-md) var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .plan-cta-text {
        font-size: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .mobile-break-inline {
        display: inline;
    }
    
    .plan-cta-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .combination-image {
        height: 160px;
    }
    
    .combination-content {
        padding: var(--spacing-sm);
    }
    
    .situation-tag {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .combination-type {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .type-icon {
        font-size: 16px;
    }
    
    .combination-description {
        font-size: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .combination-items .item {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .combination-items .plus {
        font-size: 14px;
    }
    
    .combination-price .price-detail {
        font-size: 10px;
    }
    
    .combination-price .price-total {
        font-size: 16px;
    }
    
    /* Quality Section - 2 columns on mobile */
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .quality-card {
        padding: var(--spacing-md);
    }
    
    .quality-card:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: var(--spacing-sm);
    }
    
    .quality-title {
        font-size: 16px;
        margin-bottom: var(--spacing-xs);
    }
    
    .quality-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Order Flow Mobile */
    .flow-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .flow-step-image {
        width: 140px;
        height: 140px;
    }
    
    .flow-step-title {
        font-size: 18px;
    }
    
    .flow-step-period {
        font-size: 13px;
    }
    
    .flow-description {
        font-size: 13px;
    }
    
    /* Menu Carousel Mobile */
    .menu-carousel-wrapper {
        padding: 0;
    }
    
    .menu-carousel {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    }
    
    /* Menu Carousel Mobile */
    .menu-carousel {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-lg);
    }
    
    .menu-card {
        flex: 0 0 calc(85vw);
        max-width: 320px;
        scroll-snap-align: center;
    }
    
    .menu-day-badge {
        font-size: 16px;
        padding: 8px 14px;
        top: 12px;
        left: 12px;
    }
    
    .menu-content {
        padding: var(--spacing-sm);
    }
    
    .menu-title {
        font-size: 16px;
    }
    
    .menu-description {
        font-size: 12px;
    }
    
    .menu-category {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    /* Delivery Staff Mobile */
    .delivery-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .delivery-image {
        max-width: 180px;
    }
    
    .delivery-speech-bubble {
        max-width: 100%;
        min-width: auto;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .delivery-speech-bubble::after {
        left: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(-50%);
        border-top: 20px solid #FFFFFF;
        border-bottom: none;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
    
    /* Nutritionist Section Mobile */
    .nutritionist-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .nutritionist-image {
        max-width: 200px;
    }
    
    .nutritionist-speech-bubble {
        max-width: 100%;
        min-width: auto;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nutritionist-speech-bubble::after {
        left: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(-50%);
        border-top: 20px solid #FFFFFF;
        border-bottom: none;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
    
    .nutritionist-speech-bubble .bubble-text {
        font-size: 14px;
    }
    
    /* Problem Section Mobile */
    .section-title-bracket {
        font-size: 13px;
        padding: 0 var(--spacing-md);
    }
    
    .section-subtitle-large {
        font-size: 20px;
        margin-bottom: var(--spacing-lg);
    }
    
    .problem-categories-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .problem-category {
        padding: var(--spacing-md);
    }
    
    .problem-category-header {
        font-size: 14px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .problem-list li {
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }
    
    .problem-list i {
        font-size: 16px;
    }
    
    .problem-list span {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Solution Transition Mobile */
    .solution-transition {
        margin-top: var(--spacing-lg);
        padding: var(--spacing-md) 0;
    }
    
    .transition-arrow {
        width: 50px;
        height: 50px;
    }
    
    .transition-arrow i {
        font-size: 24px;
    }
    
    .transition-content {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .transition-title {
        font-size: 24px;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .transition-subtitle {
        font-size: 20px;
    }
    
    /* Daily Flow Mobile */
    .flow-timeline {
        padding-left: 45px;
    }
    
    .flow-timeline::before {
        left: 22px;
        width: 3px;
    }
    
    .flow-step {
        margin-bottom: var(--spacing-xl);
        padding-top: var(--spacing-xs);
    }
    
    .flow-step::before {
        left: -31px;
        top: 18px;
        width: 18px;
        height: 18px;
        border-width: 3px;
    }
    
    .flow-time-badge {
        font-size: 13px;
        padding: 8px 18px;
    }
    
    .flow-time-badge i {
        font-size: 14px;
    }
    
    .flow-step-title {
        font-size: 22px;
        margin-bottom: var(--spacing-sm);
    }
    
    .flow-image {
        max-width: 100%;
        margin: 0 0 var(--spacing-sm) 0;
    }
    
    .flow-description {
        font-size: 14px;
        line-height: 1.8;
    }
    
    /* Delivery Staff Small Mobile */
    .delivery-staff {
        padding: var(--spacing-lg) 0;
    }
    
    .delivery-content {
        flex-direction: column !important;
        gap: var(--spacing-md);
    }
    
    .delivery-image {
        max-width: 150px;
        order: 2 !important;
    }
    
    .delivery-speech-bubble {
        order: 1 !important;
        margin: 0 auto;
        width: 100%;
        max-width: 90%;
        padding: 18px 24px;
        border-radius: 14px;
    }
    
    .bubble-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }
    
    .delivery-message {
        font-size: 20px;
    }
    
    .delivery-message::after {
        bottom: -8px;
        width: 60px;
        height: 3px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: var(--spacing-md) 0;
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Contact Form Small Mobile */
    .contact-form {
        padding: var(--spacing-lg) 0;
    }
    
    .form-wrapper {
        padding: var(--spacing-md);
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
    }
    
    .form-group {
        margin-bottom: var(--spacing-sm);
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-block {
        padding: 14px var(--spacing-md);
        font-size: 16px;
    }
}
    }
    
    .btn-large {
        width: 100%;
        padding: 18px var(--spacing-md);
        font-size: 18px;
    }
    
    /* Further reduce logo size on small phones */
    .logo-full-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-image {
        height: 35px;
    }
}