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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    font-weight: 400;
}

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

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.section-header-content {
    flex: 1;
}

.sakura-illustration {
    flex-shrink: 0;
    opacity: 0.8;
}

.sakura-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.2));
    transition: all 0.3s ease;
}

.sakura-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(233, 30, 99, 0.3));
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .sakura-image {
        width: 120px;
    }
}

.section-tag {
    display: inline-block;
    background: #0ABAB5;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.2);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #0ABAB5;
    color: white;
    border: 2px solid #0ABAB5;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);
    background: #089a96;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0ABAB5;
    border: 2px solid #0ABAB5;
}

.btn-secondary:hover {
    background: #0ABAB5;
    color: white;
    transform: translateY(-3px);
}

.btn-primary-large, .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.btn-primary-large {
    background: #0ABAB5;
    color: white;
    border: 2px solid #0ABAB5;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 186, 181, 0.5);
    background: #089a96;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.95);
    color: #8b5a3c;
    border: 3px solid rgba(255, 255, 255, 1);
    font-weight: 700;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    border-color: #0ABAB5;
    color: #0ABAB5;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(10, 186, 181, 0.1);
}

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

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

.logo-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0ABAB5;
}

.company-credit {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0ABAB5;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ABAB5;
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0ABAB5;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 1.2rem 2rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-nav-links a:hover {
    background: rgba(10, 186, 181, 0.05);
    color: #0ABAB5;
    padding-left: 2.5rem;
}

.mobile-nav-links a.mobile-cta {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    margin: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-links a.mobile-cta:hover {
    background: linear-gradient(135deg, #089a96, #0ABAB5);
    padding-left: 2rem;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 120px; /* Increased padding to prevent header overlap */
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.85), rgba(44, 62, 80, 0.75));
    z-index: 2;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(248, 252, 253, 0.93) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 4rem;
    border-radius: 30px;
    border: 2px solid rgba(10, 186, 181, 0.2);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(10, 186, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #1a2332;
    display: inline-block;
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(10, 186, 181, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-shadow: none;
}

.hero-title .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1), rgba(8, 154, 150, 0.1));
    border-radius: 12px;
    z-index: -1;
    padding: 0.2rem 0.8rem;
    margin: -0.2rem -0.8rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 1;
}

.feature-badge {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.4rem 1.8rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0ABAB5;
    margin-bottom: 0.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text {
    font-size: 0.9rem;
    opacity: 1;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-message {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    font-style: italic;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
}

/* Elegant Story Layout */
.elegant-story-layout {
    max-width: 900px;
    margin: 0 auto;
}

.story-summary {
    margin-bottom: 3rem;
}

.story-intro-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 253, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 186, 181, 0.1);
    position: relative;
    overflow: visible;
}

.story-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ABAB5, #089a96);
}

.story-intro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Developer Profile Section */
.developer-intro {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.developer-photo {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.developer-photo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #0ABAB5, #089a96, #0ABAB5);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
    animation: photoGlow 3s ease-in-out infinite;
}

@keyframes photoGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s ease;
    position: relative;
}

.profile-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

/* Developer Profile Information */
.developer-profile {
    text-align: center;
    max-width: 280px;
}

.developer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.developer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0ABAB5;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.developer-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
}

.developer-content {
    flex: 1;
}

.developer-content h3 {
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.4;
}

.developer-content .intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .developer-intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .developer-profile {
        max-width: 100%;
    }
    
    .developer-name {
        font-size: 1.2rem;
    }
    
    .developer-bio {
        font-size: 0.9rem;
    }
    
    .developer-content h3 {
        font-size: 1.6rem;
    }
    
    .developer-content .intro-text {
        font-size: 1.05rem;
    }
}

.accent-text {
    color: #0ABAB5;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.mission-quote-card {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.8));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    border-left: 4px solid #0ABAB5;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.elegant-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.conclusion-text {
    font-size: 1rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
}

.story-expand-section {
    text-align: center;
    margin: 3rem 0;
}

.story-expand-btn {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);
}

.story-expand-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 186, 181, 0.4);
}

.story-expand-btn.expanded .expand-arrow {
    transform: rotate(180deg);
}

.expand-icon {
    font-size: 1.2rem;
}

.expand-arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.story-detailed-content {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.story-detailed-content.show {
    opacity: 1;
    transform: translateY(0);
}

.story-section-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 253, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(10, 186, 181, 0.08);
    position: relative;
    overflow: hidden;
}

.story-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(10, 186, 181, 0.6), rgba(8, 154, 150, 0.6));
}

.section-header-elegant {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon-elegant {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(10, 186, 181, 0.2);
}

.section-header-elegant h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.section-content-elegant {
    line-height: 1.7;
    color: #5a6c7d;
}

.section-content-elegant p {
    margin-bottom: 1.2rem;
}

.highlight-elegant {
    color: #0ABAB5;
    font-weight: 600;
}

.insight-card, .example-card, .philosophy-card, .conviction-card, .final-message-card {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.03), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-left: 4px solid rgba(10, 186, 181, 0.3);
}

.insight-conclusion, .philosophy-highlight-elegant, .cta-highlight-elegant {
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
}

/* Price Highlight Section */
.price-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.price-highlight-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.price-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ABAB5, #089a96);
}


.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.price-label {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 400;
    line-height: 1.5;
}

.price-emphasis {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0ABAB5;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    margin: 0.3rem 0;
}


.price-bonus {
    font-size: 1.05rem;
    color: #495057;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.price-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.price-bonus::before {
    content: '✓';
    color: #0ABAB5;
    font-weight: bold;
    margin-right: 0.5rem;
}


@media (max-width: 768px) {
    .price-highlight-box {
        padding: 1.8rem;
        margin: 1.5rem 0;
    }
    
    .price-emphasis {
        font-size: 1.8rem;
    }
    
    .price-label {
        font-size: 1rem;
    }
    
    .price-bonus {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .price-comparison {
        gap: 0.6rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .price-highlight-box {
        padding: 1.5rem;
    }
    
    .price-emphasis {
        font-size: 1.6rem;
    }
    
    .price-label {
        font-size: 0.95rem;
    }
    
    .price-bonus {
        font-size: 0.9rem;
    }
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.example-icon {
    font-size: 1.1rem;
}

.example-result {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1), rgba(255, 255, 255, 0.9));
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.use-cases-elegant {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.use-case-elegant {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 252, 253, 0.8));
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.use-case-icon-elegant {
    font-size: 1.3rem;
    min-width: 2rem;
}

.key-benefit-elegant {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(255, 255, 255, 0.9));
    padding: 1.8rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid rgba(52, 152, 219, 0.3);
}

.benefit-highlight-elegant {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
}

.final-card {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(10, 186, 181, 0.2);
}

.final-message-card {
    text-align: center;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border-left: none;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.3);
}

.final-message-card p {
    color: white;
    margin-bottom: 0.8rem;
}

.cta-highlight-elegant {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: white !important;
}

/* Special TerroirHUB CTA Button */
.btn-sakelink-special {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0ABAB5, #089a96, #0ABAB5);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 2rem 3.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 
        0 15px 35px rgba(10, 186, 181, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 380px;
    animation: backgroundShift 4s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0ABAB5, #ffffff, #089a96, #ffffff, #0ABAB5);
    background-size: 400% 400%;
    border-radius: 60px;
    z-index: -1;
    opacity: 0;
    animation: glowAnimation 3s ease-in-out infinite;
}

@keyframes glowAnimation {
    0%, 100% { 
        opacity: 0;
        background-position: 0% 50%; 
    }
    50% { 
        opacity: 1;
        background-position: 100% 50%; 
    }
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.btn-icon-special {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.btn-text-main {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.btn-text-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    font-style: italic;
}

.btn-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.btn-sakelink-special:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(10, 186, 181, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #0ABAB5, #0dd4ce, #089a96);
}

.btn-sakelink-special:hover .btn-glow {
    opacity: 1;
}

.btn-sakelink-special:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-sakelink-special:hover .btn-icon-special {
    animation-duration: 0.6s;
}

.btn-sakelink-special:active {
    transform: translateY(-2px) scale(1.02);
}

/* Pulse effect for extra attention */
.btn-sakelink-special::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 186, 181, 0.3) 0%, transparent 70%);
    border-radius: 60px;
    animation: pulse 2s ease-in-out infinite;
    z-index: -2;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .story-intro-card {
        padding: 2rem;
    }
    
    .story-intro-card h3 {
        font-size: 1.5rem;
    }
    
    .elegant-quote {
        font-size: 1.1rem;
    }
    
    .story-section-card {
        padding: 2rem;
    }
    
    .section-header-elegant {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .section-header-elegant h4 {
        font-size: 1.2rem;
    }
    
    .btn-sakelink-special {
        min-width: 280px;
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .btn-text-main {
        font-size: 1.1rem;
    }
    
    .btn-text-sub {
        font-size: 0.85rem;
    }
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.story-media {
    position: sticky;
    top: 120px;
}

.story-image-slider {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.story-slide {
    display: none;
    position: relative;
}

.story-slide.active {
    display: block;
}

.story-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 2rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.story-nav-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 186, 181, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-nav-btn.active {
    background: #0ABAB5;
    transform: scale(1.3);
}

.story-content {
    padding: 2rem 0;
}

.story-chapter {
    margin-bottom: 4rem;
}

.chapter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #0ABAB5;
    margin-bottom: 1.5rem;
}

.story-chapter p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.story-quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    border-left: 4px solid #e74c3c;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.voice-boxes {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.voice-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0ABAB5;
}

.voice-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.voice-author {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

.key-insight {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.2);
}

.key-insight p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Service Overview Section */
.service-overview {
    padding: 8rem 0;
    background: white;
}

/* Platform Description Styles */
.platform-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.platform-intro-new {
    padding: 2rem;
}

.platform-intro-new > p:first-child {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.process-flow {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #0ABAB5;
}

.process-flow p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.process-flow p:last-child {
    margin-bottom: 0;
}

.solution-statement {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #e74c3c;
}

.solution-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.solution-statement strong {
    color: #e74c3c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .platform-intro-new > p:first-child {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .process-flow p {
        font-size: 1.1rem;
    }
    
    .solution-statement p {
        font-size: 1.1rem;
    }
    
    .process-flow, .solution-statement {
        padding: 1.5rem;
    }
}

/* AI Features Section */
.ai-features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
}

.ai-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ai-tab {
    background: white;
    border: 2px solid rgba(10, 186, 181, 0.2);
    border-radius: 20px;
    padding: 2rem 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.1);
}

.ai-tab:hover {
    transform: translateY(-5px);
    border-color: #0ABAB5;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.2);
}

.ai-tab.active {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border-color: #0ABAB5;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.3);
}

.tab-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.tab-title {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.tab-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.ai-content {
    position: relative;
}

.ai-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.ai-tab-content.active {
    display: block;
}

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

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

.ai-feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0ABAB5;
    margin-bottom: 1.5rem;
}

.feature-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 3rem;
}

.feature-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.08);
    border-left: 4px solid #0ABAB5;
}

.detail-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.detail-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Chat Demo Styles */
.demo-chat {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    min-height: 320px;
}

.chat-header {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-sakura-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    padding: 4px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.online-status {
    font-size: 0.9rem;
    opacity: 0.9;
}

.company-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.chat-messages {
    padding: 1.5rem;
    max-height: none;
    overflow-y: visible;
}

.message {
    margin-bottom: 1rem;
    animation: messageSlide 0.3s ease;
}

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

.message.user {
    text-align: right;
}

.message.user p {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.8rem 1.2rem;
    border-radius: 15px 15px 5px 15px;
    display: inline-block;
    max-width: 80%;
    margin: 0;
}

.message.ai p {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 15px 15px 15px 5px;
    display: inline-block;
    max-width: 85%;
    margin: 0;
    line-height: 1.5;
}

/* AI Value Proposition Section */
.ai-value-section {
    padding: 8rem 0;
    background: white;
}

.value-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0 6rem;
    flex-wrap: wrap;
}

.journey-step {
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    border: 2px solid rgba(10, 186, 181, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;
    position: relative;
}

.journey-step:hover {
    transform: translateY(-10px);
    border-color: #0ABAB5;
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.journey-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #0ABAB5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.journey-step p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-detail {
    background: rgba(10, 186, 181, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.highlight-text {
    color: #0ABAB5;
    font-weight: 600;
    font-style: italic;
}

.journey-arrow {
    font-size: 2rem;
    color: #0ABAB5;
    font-weight: 700;
}

.value-benefits {
    margin: 6rem 0;
}

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

.benefit-card {
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(10, 186, 181, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0ABAB5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #34495e;
    line-height: 1.7;
}

.success-scenario {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.95));
    color: #2c3e50;
    padding: 4rem;
    border-radius: 25px;
    margin-top: 4rem;
    border: 2px solid rgba(10, 186, 181, 0.15);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.1);
}

/* Enhanced Success Scenario Mobile */
@media (max-width: 768px) {
    .success-scenario {
        padding: 3rem 2rem;
        margin-top: 3rem;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .success-scenario {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .success-scenario {
        padding: 2rem 1.2rem;
        margin-top: 2rem;
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .success-scenario {
        padding: 1.8rem 1rem;
    }
}

.scenario-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #0ABAB5;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.scenario-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0ABAB5, #089a96);
    border-radius: 2px;
}

/* Enhanced Scenario Content Mobile */
@media (max-width: 768px) {
    .scenario-content h3 {
        font-size: 1.7rem;
        margin-bottom: 2.5rem;
        padding-bottom: 0.8rem;
    }
    
    .scenario-content h3::after {
        width: 50px;
        height: 2px;
    }
}

@media (max-width: 600px) {
    .scenario-content h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .scenario-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1.8rem;
        padding-bottom: 0.6rem;
    }
    
    .scenario-content h3::after {
        width: 40px;
    }
}

@media (max-width: 360px) {
    .scenario-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

.scenario-example {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.scenario-text h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.scenario-text ol {
    padding-left: 1.5rem;
}

.scenario-text li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.scenario-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.impact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-text {
    font-size: 1rem;
    opacity: 0.9;
}

.impact-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* AI Benefits Section */
.ai-benefits-section {
    margin-top: 6rem;
    padding: 4rem 0;
    border-top: 3px solid rgba(10, 186, 181, 0.2);
    background: rgba(248, 252, 253, 0.5);
}

/* Enhanced AI Benefits Mobile */
@media (max-width: 768px) {
    .ai-benefits-section {
        margin-top: 4rem;
        padding: 3rem 0;
    }
}

@media (max-width: 600px) {
    .ai-benefits-section {
        margin-top: 3rem;
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .ai-benefits-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }
}

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

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0ABAB5;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
}

/* Enhanced Benefits Title Mobile */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 1.8rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .benefits-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 1.6rem;
        margin-bottom: 1.3rem;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .benefits-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

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

.benefit-card-large {
    background: linear-gradient(135deg, #ffffff, #f8fcfd);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(10, 186, 181, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.08);
}

.benefit-card-large:hover {
    transform: translateY(-15px);
    border-color: #0ABAB5;
    box-shadow: 0 25px 60px rgba(10, 186, 181, 0.2);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-card-large h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #0ABAB5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(10, 186, 181, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0ABAB5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #34495e;
    font-weight: 600;
}

.benefit-card-large p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Transformation Showcase */
.transformation-showcase {
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    padding: 4rem;
    border-radius: 25px;
    margin: 4rem 0;
    border: 2px solid rgba(10, 186, 181, 0.1);
}

.transformation-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0ABAB5;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.transformation-comparison {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.before, .after {
    padding: 2.5rem;
    border-radius: 20px;
}

.before {
    background: rgba(231, 76, 60, 0.05);
    border-left: 5px solid #e74c3c;
}

.after {
    background: rgba(46, 204, 113, 0.05);
    border-left: 5px solid #2ecc71;
}

.before h4, .after h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.before h4 {
    color: #e74c3c;
}

.after h4 {
    color: #2ecc71;
}

.before ul, .after ul {
    list-style: none;
    padding: 0;
}

.before li, .after li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.transformation-arrow {
    font-size: 3rem;
    color: #0ABAB5;
    font-weight: 700;
    text-align: center;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95));
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.urgency-content {
    position: relative;
    z-index: 1;
}

/* Enhanced Urgency Section Mobile */
@media (max-width: 768px) {
    .urgency-section {
        padding: 3rem 2rem;
        margin-top: 3rem;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .urgency-section {
        padding: 2.5rem 1.5rem;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .urgency-section {
        padding: 2rem 1.2rem;
        margin-top: 2rem;
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .urgency-section {
        padding: 1.8rem 1rem;
    }
}

.urgency-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.urgency-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.urgency-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.urgency-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.urgency-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.urgency-final {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Section Accordion Styles */
.expand-toggle {
    text-align: center;
    margin-top: 1.5rem;
}

.expand-btn {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.4);
}

.expand-icon {
    transition: transform 0.3s ease;
}

.expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

.ai-expandable-content {
    transition: all 0.5s ease;
    overflow: hidden;
}

.ai-expandable-content.show {
    display: block !important;
    animation: slideDown 0.5s ease;
}

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

/* Benefits Section Accordion Styles */
.benefits-expandable-content {
    transition: all 0.5s ease;
    overflow: hidden;
}

.benefits-expandable-content.show {
    display: block !important;
    animation: slideDown 0.5s ease;
}

/* Value Journey Section Styles */
.value-journey-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.03), rgba(255, 255, 255, 0.95));
    border-radius: 25px;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

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

.value-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.value-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.value-journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.journey-step-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.1);
    border: 1px solid rgba(10, 186, 181, 0.1);
    max-width: 200px;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease;
}

.journey-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-quote {
    font-size: 0.85rem;
    color: #0ABAB5;
    font-style: italic;
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(10, 186, 181, 0.05);
    border-radius: 8px;
    border-left: 3px solid #0ABAB5;
}

.journey-arrow {
    font-size: 1.5rem;
    color: #0ABAB5;
    font-weight: 700;
}

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

.value-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.08);
    border: 1px solid rgba(10, 186, 181, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.12);
}

.value-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-benefit-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.value-benefit-card p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.scenario-example {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 255, 255, 0.95));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    margin-top: 3rem;
}

.scenario-example h4 {
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.scenario-case h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.scenario-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.scenario-step {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #e91e63;
    font-size: 0.95rem;
    line-height: 1.5;
}

.scenario-step strong {
    color: #e91e63;
    font-weight: 700;
}

.scenario-result {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #e91e63;
}

.result-before, .result-after {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.result-before {
    background: #e91e63;
    color: white;
}

.result-after {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
}

.result-arrow {
    font-size: 1.5rem;
    color: #e91e63;
    margin: 0 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .value-journey-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .journey-step-item {
        max-width: 100%;
        width: 100%;
    }
    
    .value-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scenario-result {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .result-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.service-card {
    text-align: center;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    padding: 2rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 186, 181, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.service-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e8f4f3, #f0f8f7);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0ABAB5;
    border: 2px dashed rgba(10, 186, 181, 0.3);
    position: relative;
    overflow: hidden;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
}

.service-timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.8));
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.service-timeline h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
}

.service-timeline h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    border-radius: 2px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    align-items: start;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to right, #0ABAB5, #089a96, #0ABAB5);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 186, 181, 0.1);
    z-index: 2;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 186, 181, 0.2);
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: -3rem auto 2rem;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.4);
    position: relative;
    z-index: 3;
    border: 4px solid white;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-timeline {
        padding: 3rem 2rem;
        margin: 3rem auto 0;
    }
    
    .service-timeline h3 {
        font-size: 2rem;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin: -2.5rem auto 1.5rem;
    }
    
    .timeline-item {
        padding: 2.5rem 2rem;
    }
}

/* New Story Layout Styles */
.new-story-layout {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.intro-highlight {
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.9));
    border-radius: 25px;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.intro-highlight h3 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.accent-text {
    color: #0ABAB5;
    position: relative;
}

.intro-sub {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
    line-height: 1.6;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-quote {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
    position: relative;
}

.mission-footer {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
}

.story-section {
    margin-bottom: 4rem;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.08);
    border: 1px solid rgba(10, 186, 181, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.story-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.12);
}

.final-section {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.08), rgba(255, 255, 255, 0.95));
    border: 2px solid rgba(10, 186, 181, 0.2);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.section-content p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #0ABAB5;
    font-weight: 700;
}

.problem-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(255, 255, 255, 0.9));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    margin: 2rem 0;
}

.problem-conclusion {
    font-weight: 600;
    color: #e74c3c;
    margin-top: 1rem;
    font-style: italic;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.08), rgba(255, 255, 255, 0.9));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(10, 186, 181, 0.2);
}

.feature-highlight h4 {
    font-size: 1.3rem;
    color: #0ABAB5;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.example-box {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(255, 255, 255, 0.95));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid #2ecc71;
}

.example-box h5 {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.example-result {
    font-size: 1.1rem;
    color: #2ecc71;
    font-weight: 600;
    margin: 0;
}

.use-cases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.use-case {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05), rgba(255, 255, 255, 0.9));
    border-radius: 12px;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.use-case-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.key-benefit {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(255, 255, 255, 0.95));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.benefit-highlight {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: 700;
    font-style: italic;
    margin-top: 1rem;
}

.philosophy-box {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(255, 255, 255, 0.95));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.philosophy-highlight {
    font-weight: 700;
    color: #9b59b6;
    font-style: italic;
    margin-top: 1rem;
}

.conviction-box {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(255, 255, 255, 0.95));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.final-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
}

.final-cta p {
    color: white;
    margin-bottom: 1rem;
}

.cta-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .new-story-layout {
        padding: 0 1rem;
    }
    
    .intro-highlight {
        padding: 2rem 1.5rem;
    }
    
    .intro-highlight h3 {
        font-size: 1.8rem;
    }
    
    .intro-sub {
        font-size: 1.1rem;
    }
    
    .mission-quote {
        font-size: 1.2rem;
        padding: 2rem 1.5rem;
    }
    
    .story-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .use-cases {
        gap: 0.8rem;
    }
    
    .use-case {
        padding: 0.8rem 1rem;
    }
    
    .final-cta {
        padding: 2rem 1.5rem;
    }
}

/* Terroir Meaning Section */
.terroir-meaning {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
}

.terroir-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

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

.terroir-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(10, 186, 181, 0.2);
}

.terroir-element {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #0ABAB5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.terroir-element:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.terroir-element[data-element="climate"] {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.terroir-element[data-element="water"] {
    top: 60px;
    right: -40px;
}

.terroir-element[data-element="soil"] {
    bottom: 60px;
    right: -40px;
}

.terroir-element[data-element="variety"] {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.terroir-element[data-element="technique"] {
    bottom: 60px;
    left: -40px;
}

.terroir-element[data-element="people"] {
    top: 60px;
    left: -40px;
}

.terroir-center {
    text-align: center;
    color: white;
}

.terroir-center span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.terroir-center small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.terroir-explanation h3 {
    font-size: 1.5rem;
    color: #0ABAB5;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.terroir-explanation p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

.terroir-definition {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    border-left: 5px solid #0ABAB5;
}

.terroir-definition h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.definition-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.definition-sub {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Scenes Section */
.scenes-section {
    padding: 8rem 0;
    background: white;
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.scene-card {
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.scene-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.scene-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.scene-icon {
    font-size: 2.5rem;
}

.scene-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.scene-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.scene-before, .scene-after {
    padding: 2rem;
    border-radius: 15px;
}

.scene-before {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

.scene-after {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
}

.scene-before h4 {
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scene-after h4 {
    color: #2ecc71;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scene-before p, .scene-after p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.scene-before ul, .scene-after ul {
    list-style: none;
    padding: 0;
}

.scene-before li, .scene-after li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.scene-before li::before {
    content: "×";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.scene-after li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.scene-arrow {
    font-size: 2rem;
    color: #0ABAB5;
    font-weight: 700;
}

/* TerroirHUB Section */
.sakelink-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
}

.sakelink-section .section-title,
.sakelink-section .section-subtitle {
    color: white;
}

/* Top Layout - Features and Phone Demo */
.sakelink-layout-top {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.sakelink-features-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Bottom Layout - Full Width Customization */
.sakelink-layout-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.sakelink-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.sakelink-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.sakelink-customization {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    flex: 1;
}

.sakelink-customization h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.sakelink-customization p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.sakelink-customization ul {
    list-style: none;
    padding: 0;
}

.sakelink-customization li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sakelink-customization li::before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sakelink-cta {
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Mobile Responsive TerroirHUB Styles */
@media (max-width: 768px) {
    .sakelink-section {
        padding: 3rem 0;
    }
    
    .sakelink-layout-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .sakelink-layout-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sakelink-features-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .sakelink-customization {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sakelink-customization h3 {
        font-size: 1.2rem;
    }
    
    .sakelink-customization p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .sakelink-customization li {
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .sakelink-demo {
        display: none;
    }
    
    .sakelink-features-section {
        order: 2;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .sakelink-section {
        padding: 2rem 0;
    }
    
    .sakelink-layout-top,
    .sakelink-layout-bottom {
        gap: 1.5rem;
    }
    
    .sakelink-features-section h3 {
        font-size: 1.3rem;
    }
    
    .sakelink-customization {
        padding: 1.2rem;
    }
    
    .sakelink-customization h3 {
        font-size: 1.1rem;
    }
    
    .sakelink-customization p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
}

.demo-phone {
    width: 240px;
    height: 480px;
    background: #2c3e50;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.demo-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #7f8c8d;
    border-radius: 3px;
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: #2c3e50;
}

.demo-header {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    padding: 1rem;
    text-align: center;
}

.demo-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.demo-lang {
    font-size: 0.8rem;
    opacity: 0.9;
}

.demo-content {
    padding: 1rem;
}

.demo-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.demo-specs {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.demo-specs span {
    background: #ecf0f1;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    text-align: center;
}

.demo-taste-chart, .demo-ai-chat {
    background: #0ABAB5;
    color: white;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-ai-chat {
    background: #089a96;
}

/* Message Section */
.message-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
}

.message-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.message-photo {
    text-align: center;
}

.message-photo img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.photo-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.photo-caption p {
    color: #7f8c8d;
    line-height: 1.5;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.message-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0ABAB5;
    margin-bottom: 2rem;
}

.message-text p {
    margin-bottom: 2rem;
}

.message-emphasis {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    text-align: center;
    border-left: 5px solid #0ABAB5;
}

.message-emphasis p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.message-signature {
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.signature-image {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.signature-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Future Vision Section */
.future-vision {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    color: white;
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0ABAB5;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: white;
}

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

.benefit-item {
    text-align: center;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    padding: 3rem 2rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.contact-form {
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(10, 186, 181, 0.2);
    border-radius: 10px;
    background: white;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0ABAB5;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.contact-alternatives h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fcfd, #ffffff);
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 186, 181, 0.1);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.15);
}

.method-icon {
    font-size: 2rem;
}

.method-info h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.method-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

/* Enhanced Footer Mobile */
@media (max-width: 900px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2.2rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 1.8rem 0 0.8rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: #0ABAB5;
    font-size: 1.8rem;
}

.footer-description {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    display: inline-block;
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.3);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0ABAB5;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0ABAB5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #0ABAB5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo-hierarchy {
        flex-direction: column;
        gap: 0.1rem;
        align-items: flex-start;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .company-credit {
        font-size: 0.65rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .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);
    }
    
    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        padding: 2.5rem 2.5rem;
        border-radius: 25px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-features {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .feature-badge {
        padding: 1.5rem 2rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

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

    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-media {
        position: static;
    }

    .terroir-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .terroir-circle {
        width: 300px;
        height: 300px;
    }

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

    .scene-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .scene-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .sakelink-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .message-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        display: none;
    }

    .service-timeline h3 {
        font-size: 1.6rem;
    }
    
    /* AI Features Mobile */
    .ai-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-tab {
        min-width: auto;
        padding: 1.5rem 2rem;
    }
    
    .ai-feature-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .demo-chat {
        max-width: 100%;
    }
    
    /* AI Value Mobile */
    .value-journey {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .scenario-example {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .impact-item {
        padding: 1.5rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    /* AI Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    
    .urgency-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .urgency-stat {
        min-width: auto;
    }
}

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

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .terroir-circle {
        width: 250px;
        height: 250px;
    }

    .terroir-element {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .demo-phone {
        width: 240px;
        height: 480px;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

/* Luxury Styling Elements */
.luxury-border {
    border: 2px solid #0ABAB5;
    border-radius: 15px;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f8fcfd);
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.1);
}

.luxury-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.08);
    border: 1px solid rgba(10, 186, 181, 0.1);
    transition: all 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(10, 186, 181, 0.15);
}

.tiffany-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0ABAB5, #089a96);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Utility Classes */
.highlight {
    color: #0ABAB5;
}

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

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Hero Image Animation */
@keyframes heroImageCycle {
    0%, 33% { opacity: 1; }
    34%, 100% { opacity: 0; }
}

.hero-image:nth-child(1) {
    animation: heroImageCycle 9s infinite;
}

.hero-image:nth-child(2) {
    animation: heroImageCycle 9s infinite 3s;
}

.hero-image:nth-child(3) {
    animation: heroImageCycle 9s infinite 6s;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Pierre Scenario Block Structure */
.scenario-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(10, 186, 181, 0.15);
}

.scenario-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0ABAB5;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.scenario-intro {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.scenario-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid #0ABAB5;
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.1);
    transition: all 0.3s ease;
}

.step-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ABAB5, #089a96);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive for Pierre Scenario */
@media (max-width: 768px) {
    .scenario-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }
    
    .scenario-header h4 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .scenario-intro {
        font-size: 1rem;
    }
    
    .scenario-steps {
        gap: 1.5rem;
    }
    
    .step-block {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .step-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .scenario-header h4 {
        font-size: 1.3rem;
    }
    
    .scenario-intro {
        font-size: 0.95rem;
    }
    
    .step-block {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .scenario-header {
        margin-bottom: 2rem;
        padding-bottom: 1.2rem;
    }
    
    .scenario-header h4 {
        font-size: 1.2rem;
    }
    
    .scenario-intro {
        font-size: 0.9rem;
    }
    
    .scenario-steps {
        gap: 1.2rem;
    }
    
    .step-block {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto 0.5rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .scenario-header h4 {
        font-size: 1.1rem;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

/* モバイル対応：ストーリーセクションのタイトル調整 */
@media (max-width: 768px) {
    .story-section .section-title {
        white-space: normal !important;
        font-size: 1.9rem !important;
    }
}

@media (max-width: 480px) {
    .story-section .section-title {
        font-size: 1.6rem !important;
        line-height: 1.4;
    }
    
    /* コンテナのパディング統一 */
    .container {
        padding: 0 1rem;
    }
    
    /* 基本フォントサイズ調整 */
    body {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 360px) {
    .story-section .section-title {
        font-size: 1.4rem !important;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}