/* ================================================
   ZENBREW Pages - Common Styles
   ================================================ */

/* CSS Variables */
:root {
    --zen-white: #FFFFFF;
    --zen-black: #1D1D1F;
    --zen-deep-green: #1B4332;
    --zen-forest-green: #2D6A4F;
    --zen-sage-green: #52B788;
    --zen-light-green: #95D5B2;
    --zen-gold: #C9A84C;
    --zen-warm-gold: #D4AF37;
    --zen-sky-blue: #4A90E2;
    --zen-light-gray: #F5F5F7;
    --zen-medium-gray: #E8E8E8;
    --zen-dark-gray: #86868B;
    --zen-text: #1D1D1F;
    --zen-text-light: #6E6E73;
}

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

body {
    font-family: 'Noto Serif JP', serif;
    color: var(--zen-text);
    line-height: 1.8;
    background: var(--zen-white);
    overflow-x: hidden;
}

/* ================================================
   Navigation
   ================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--zen-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--zen-text);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--zen-deep-green);
}

.nav-link-secondary {
    color: var(--zen-dark-gray) !important;
    font-size: 0.9rem !important;
}

/* ================================================
   Hero Sections
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #F5F5F7 0%, #E8F5E9 100%);
    position: relative;
}

.hero-public {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
}

.hero-business {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
}

.hero-experience {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 50%, #FFCC80 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--zen-deep-green);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 100px;
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--zen-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

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

.hero-price {
    margin: 2rem 0;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--zen-deep-green);
}

.price-unit {
    font-size: 2rem;
    font-weight: 400;
}

.price-note {
    display: block;
    font-size: 1rem;
    color: var(--zen-dark-gray);
    margin-top: 0.5rem;
}

.hero-price-experience {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-label {
    font-size: 0.9rem;
    color: var(--zen-dark-gray);
    margin-bottom: 0.5rem;
}

.price-item .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zen-deep-green);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--zen-deep-green);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--zen-text-light);
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ================================================
   Buttons
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Noto Serif JP', serif;
}

.btn-primary {
    background: var(--zen-deep-green);
    color: var(--zen-white);
}

.btn-primary:hover {
    background: var(--zen-forest-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.3);
}

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

.btn-secondary:hover {
    background: var(--zen-deep-green);
    color: var(--zen-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.2);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

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

/* ================================================
   Section Common
   ================================================ */

.section {
    padding: 6rem 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--zen-text);
    font-family: 'Cormorant Garamond', serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--zen-text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* ================================================
   Features Section
   ================================================ */

.section-features {
    background: var(--zen-white);
}

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

.feature-card {
    background: var(--zen-light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--zen-sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--zen-white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.feature-description {
    font-size: 1rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

/* ================================================
   How to Use Section
   ================================================ */

.section-how {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--zen-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--zen-deep-green);
    color: var(--zen-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--zen-sage-green);
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.step-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--zen-sage-green);
}

/* ================================================
   Menu Section
   ================================================ */

.section-menu {
    background: var(--zen-white);
}

.menu-note {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 600px;
}

.menu-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--zen-deep-green);
    margin: 0;
}

.menu-note i {
    color: var(--zen-sage-green);
}

.menu-note strong {
    color: var(--zen-deep-green);
    font-weight: 700;
}

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

.menu-footer-note {
    background: var(--zen-light-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.menu-footer-note h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zen-deep-green);
    margin-bottom: 1rem;
}

.menu-footer-note i {
    color: var(--zen-sage-green);
}

.menu-footer-note ul {
    list-style: none;
    padding-left: 0;
}

.menu-footer-note li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.menu-footer-note li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--zen-sage-green);
    font-size: 1.5rem;
}

.menu-category {
    background: var(--zen-light-gray);
    padding: 2rem;
    border-radius: 16px;
}

.menu-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zen-deep-green);
    margin-bottom: 1.5rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: var(--zen-white);
    padding: 1.25rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zen-text);
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--zen-deep-green);
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--zen-text-light);
}

/* ================================================
   Locations Section
   ================================================ */

.section-locations {
    background: var(--zen-light-gray);
}

.location-search {
    max-width: 700px;
    margin: 3rem auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--zen-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 1rem;
}

.search-box i {
    color: var(--zen-dark-gray);
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.location-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.location-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--zen-white);
    border: 2px solid var(--zen-medium-gray);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--zen-text);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif JP', serif;
}

.location-category-btn:hover,
.location-category-btn.active {
    background: var(--zen-deep-green);
    color: var(--zen-white);
    border-color: var(--zen-deep-green);
}

.locations-list {
    margin: 3rem 0;
    min-height: 300px;
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--zen-white);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--zen-dark-gray);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ================================================
   App Section
   ================================================ */

.section-app {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

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

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-feature i {
    font-size: 1.8rem;
    color: var(--zen-sage-green);
    min-width: 40px;
}

.app-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--zen-text);
}

.app-feature p {
    font-size: 0.95rem;
    color: var(--zen-text-light);
}

.app-download {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--zen-text);
    color: var(--zen-white);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}

.app-download-btn:hover {
    transform: translateY(-3px);
}

.app-download-btn i {
    font-size: 2rem;
}

.download-label {
    font-size: 0.75rem;
    display: block;
    opacity: 0.8;
}

.download-store {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

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

.mockup-placeholder {
    background: var(--zen-white);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--zen-dark-gray);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mockup-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ================================================
   Problem Section (Business Page)
   ================================================ */

.section-problem {
    background: var(--zen-white);
}

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

.problem-card {
    background: var(--zen-light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: #FFEBEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #D32F2F;
}

.problem-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.problem-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

/* ================================================
   Solution Section (Business Page)
   ================================================ */

.section-solution {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

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

.solution-item {
    background: var(--zen-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--zen-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--zen-white);
}

.solution-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.solution-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

/* ================================================
   Benefits Section (Business Page)
   ================================================ */

.section-benefits {
    background: var(--zen-white);
}

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

.benefit-card {
    background: var(--zen-light-gray);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.benefit-featured {
    grid-column: span 2;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--zen-deep-green);
    display: block;
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--zen-sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--zen-white);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    margin-bottom: 1.5rem;
}

.benefit-chart {
    margin-top: 2rem;
}

/* ================================================
   Case Studies Section (Business Page)
   ================================================ */

.section-cases {
    background: var(--zen-light-gray);
}

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

.case-card {
    background: var(--zen-white);
    border-radius: 16px;
    overflow: hidden;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: var(--zen-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--zen-white);
    flex-shrink: 0;
}

.case-company {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 0.3rem;
}

.case-industry {
    font-size: 0.9rem;
    color: var(--zen-text-light);
}

.case-content {
    padding: 2rem;
}

.case-challenge,
.case-solution,
.case-result {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zen-deep-green);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.case-challenge:first-child {
    margin-top: 0;
}

.case-text {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

.case-results {
    list-style: none;
    padding-left: 0;
}

.case-results li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.case-results i {
    color: var(--zen-sage-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ================================================
   Pricing Section (Business Page)
   ================================================ */

.section-pricing {
    background: var(--zen-white);
}

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

.pricing-card {
    background: var(--zen-light-gray);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.pricing-featured {
    border: 3px solid var(--zen-deep-green);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--zen-deep-green);
    color: var(--zen-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    background: var(--zen-white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.pricing-price .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zen-deep-green);
}

.pricing-price .price-unit {
    font-size: 1.2rem;
    color: var(--zen-dark-gray);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--zen-text-light);
}

.pricing-content {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.pricing-features i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: var(--zen-sage-green);
}

.pricing-features .fa-times {
    color: var(--zen-dark-gray);
}

.text-muted {
    opacity: 0.5;
}

.pricing-notes {
    background: var(--zen-light-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.pricing-notes h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding-left: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.pricing-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--zen-sage-green);
    font-size: 1.5rem;
}

.pricing-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--zen-text-light);
    line-height: 1.8;
}

/* ================================================
   Implementation Flow Section (Business Page)
   ================================================ */

.section-flow {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.flow-timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--zen-deep-green);
    transform: translateX(-50%);
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.flow-item:nth-child(odd) {
    flex-direction: row;
}

.flow-item:nth-child(even) {
    flex-direction: row-reverse;
}

.flow-number {
    width: 60px;
    height: 60px;
    background: var(--zen-deep-green);
    color: var(--zen-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3);
}

.flow-content {
    flex: 1;
    background: var(--zen-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 0.75rem;
}

.flow-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

.flow-duration {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--zen-sage-green);
    font-weight: 600;
}

/* ================================================
   Contact Section (Business Page)
   ================================================ */

.section-contact {
    background: var(--zen-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--zen-sage-green);
    min-width: 40px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--zen-text);
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zen-deep-green);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--zen-text-light);
}

.contact-form {
    background: var(--zen-light-gray);
    padding: 2.5rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 0.5rem;
}

.required {
    color: #D32F2F;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--zen-medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Serif JP', serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--zen-deep-green);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--zen-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* ================================================
   Experience Menu Section (Experience Page)
   ================================================ */

.section-experience-menu {
    background: var(--zen-white);
}

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

.experience-card {
    background: var(--zen-light-gray);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.experience-featured {
    border: 3px solid var(--zen-gold);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--zen-gold);
    color: var(--zen-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.experience-header {
    background: var(--zen-white);
    padding: 2rem;
    text-align: center;
}

.experience-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 0.75rem;
}

.experience-duration {
    display: inline-block;
    background: var(--zen-light-green);
    color: var(--zen-deep-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.experience-price {
    padding: 1.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.experience-price .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zen-deep-green);
}

.experience-price .price-unit {
    font-size: 1.1rem;
    color: var(--zen-dark-gray);
}

.experience-content {
    padding: 2rem;
}

.experience-description {
    font-size: 1rem;
    color: var(--zen-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-includes-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1rem;
}

.experience-includes {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.experience-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.experience-includes i {
    color: var(--zen-sage-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.experience-note {
    background: var(--zen-light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.experience-note p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.experience-note p:last-child {
    margin-bottom: 0;
}

.experience-note i {
    color: var(--zen-sage-green);
    margin-top: 0.25rem;
}

/* ================================================
   Features Experience Section (Experience Page)
   ================================================ */

.section-features-experience {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

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

.feature-experience-card {
    background: var(--zen-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.feature-experience-icon {
    width: 80px;
    height: 80px;
    background: var(--zen-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--zen-white);
}

.feature-experience-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-text);
}

.feature-experience-description {
    font-size: 0.95rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

/* ================================================
   Stores Section (Experience Page)
   ================================================ */

.section-stores {
    background: var(--zen-white);
}

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

.store-card {
    background: var(--zen-light-gray);
    border-radius: 16px;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.store-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--zen-medium-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--zen-dark-gray);
}

.store-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.store-info {
    padding: 2rem;
}

.store-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1.5rem;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.store-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--zen-text);
}

.store-detail-item i {
    color: var(--zen-sage-green);
    margin-top: 0.25rem;
    min-width: 20px;
}

.store-opening {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.store-opening-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1rem;
}

.store-opening-title i {
    color: var(--zen-gold);
}

.store-opening-text {
    font-size: 1rem;
    color: var(--zen-text-light);
    line-height: 1.7;
}

/* ================================================
   Reservation Section (Experience Page)
   ================================================ */

.section-reservation {
    background: var(--zen-light-gray);
}

.reservation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.reservation-form {
    background: var(--zen-white);
    padding: 2.5rem;
    border-radius: 16px;
}

.reservation-info {
    background: var(--zen-white);
    padding: 2rem;
    border-radius: 16px;
    align-self: flex-start;
}

.reservation-info-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-bottom: 1.5rem;
}

.reservation-info-title i {
    color: var(--zen-sage-green);
}

.reservation-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--zen-text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.reservation-info-content h4:first-child {
    margin-top: 0;
}

.reservation-info-content ul {
    list-style: none;
    padding-left: 0;
}

.reservation-info-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--zen-text);
}

.reservation-info-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--zen-sage-green);
    font-size: 1.3rem;
}

/* ================================================
   Philosophy Section
   ================================================ */

.section-philosophy {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text {
    font-size: 1.2rem;
    color: var(--zen-text);
    line-height: 2;
}

/* ================================================
   CTA Section
   ================================================ */

.section-cta {
    background: linear-gradient(135deg, var(--zen-deep-green) 0%, var(--zen-forest-green) 100%);
    color: var(--zen-white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--zen-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-primary {
    background: var(--zen-white);
    color: var(--zen-deep-green);
}

.cta-buttons .btn-primary:hover {
    background: var(--zen-light-gray);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--zen-white);
    border-color: var(--zen-white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--zen-white);
    color: var(--zen-deep-green);
}

/* ================================================
   Footer
   ================================================ */

.footer {
    background: var(--zen-text);
    color: var(--zen-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-logo p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zen-white);
}

.footer-column a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--zen-white);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 1024px) {
    .benefit-featured {
        grid-column: span 1;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .reservation-container {
        grid-template-columns: 1fr;
    }

    .flow-timeline::before {
        left: 30px;
    }

    .flow-item,
    .flow-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .flow-number {
        position: absolute;
        left: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-price-experience {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .problem-grid,
    .solution-grid,
    .benefits-container,
    .cases-grid,
    .pricing-grid,
    .experience-grid,
    .features-experience-grid,
    .stores-grid {
        grid-template-columns: 1fr;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .app-download {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-featured,
    .experience-featured {
        transform: scale(1);
    }

    .flow-item {
        padding-left: 70px;
    }

    .flow-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .price-unit {
        font-size: 1.5rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .problem-card,
    .solution-item,
    .benefit-card {
        padding: 2rem;
    }
}
