:root {
    /* Color Palette: White Base, Orange Main, Green Accent */
    --bg-color: #FFFFFF;
    --bg-secondary: #F9F9F9;
    --text-color: #333333;
    --text-sub: #666666;

    /* Brand Colors */
    --primary-color: #FF7043;
    /* Warm Orange (Torch) */
    --primary-light: #FFCCBC;
    --accent-color: #2E7D32;
    /* Forest Green (Calm/Growth) */
    --accent-light: #E8F5E9;

    /* Functional */
    --border-color: #E0E0E0;
    --white: #FFFFFF;

    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 8vh, 8rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 112, 67, 0.4);
    background-color: #F4511E;
    /* Darker Orange */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: none;
    padding: 0.9rem 2.8rem;
    /* Compensate border */
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    color: #1B5E20;
    border-color: #1B5E20;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

@media (min-width: 768px) {
    .logo img {
        height: 70px;
        /* Larger on desktop as requested */
    }
}

/* Nav Links */
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    /* White text on video */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Readable on video */
    transition: color 0.3s ease;
}

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

/* Scrolled Nav Links */
.header.scrolled .nav-list a {
    color: var(--text-color);
    /* Dark text on white header */
    text-shadow: none;
}

.header.scrolled .nav-list a:hover {
    color: var(--primary-color);
}

/* CTA in Nav */
.header .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.header.scrolled .btn-secondary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Hero Section - Hybrid (Video Background) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
    /* Force white text on video */
    padding-top: 80px;
    /* Prevent overlap with fixed header */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6);
    /* Darken video for text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Additional darken overlay */
    z-index: -1;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: none;
    /* Remove previous gradient if any */
    -webkit-text-fill-color: white;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section Common */
.section {
    padding: var(--section-padding) 0;
}

.section-bg {
    background-color: var(--bg-secondary);
}

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

/* Service Section Specific Adjustments */
#service {
    padding-top: 2rem;
    /* Reduced from default clamp(4rem...) */
}

#service .section-header {
    margin-bottom: 0rem;
    /* Reduced from 4rem */
}

#service .concept-steps-container {
    padding-top: 2rem;
    /* Reduced from 3rem */
}

.section-label {
    display: block;
    color: var(--primary-color);
    /* Changed to primary color for consistency */
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    /* Prevent 3-line split on mobile */
    /* display: block ensures it takes full width above title */
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 5px auto 0;
    opacity: 0.6;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

/* Animations: Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* Service Section (Organic Horizontal) */
.service-organic-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 3rem 0;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Organic Card Styling */
.organic-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    /* Organic Blob Shape */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease-out;
    position: relative;
    /* Yuragi Animation */
    animation: yuragi-float 6s ease-in-out infinite alternate;
}

.organic-card:nth-child(2) {
    animation-delay: -2s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.organic-card:nth-child(3) {
    animation-delay: -4s;
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
}

.organic-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-radius: 20px;
    /* Morph to standardized shape on hover */
    box-shadow: 0 20px 50px rgba(255, 112, 67, 0.15);
    z-index: 10;
}

/* Image Wrapper */
.organic-img-wrapper {
    width: 200px;
    height: 150px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 50% 50% 50% 50%;
    /* Circleish image mask */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.organic-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.organic-card:hover .organic-img-wrapper img {
    transform: scale(1.1);
}

/* Text Body */
.organic-text-body {
    text-align: center;
    position: relative;
    z-index: 2;
}

.organic-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 112, 67, 0.08);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-en);
    pointer-events: none;
}

.organic-text-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.organic-catch {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.organic-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-sub);
}

/* Blur/Glow Enhancements */
.organic-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.1), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.organic-card:hover::before {
    opacity: 1;
}

/* Animations */
@keyframes yuragi-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-organic-container {
        flex-direction: column;
        gap: 4rem;
    }

    .organic-card {
        border-radius: 20px !important;
        /* Reset to standard on mobile for stability */
        animation: none;
        /* Disable float on mobile to save battery/performance */
        max-width: 360px;
        margin: 0 auto;
    }

    .organic-num {
        font-size: 3rem;
        top: -2rem;
    }

    .organic-img-wrapper {
        width: 100%;
        height: 200px;
        border-radius: 12px;
    }
}

/* Flow Section Updated */
#flow {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

/* Background Ember Line - VISIBLE PATH */
.flow-bg-layer {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    /* Extend comfortably */
    max-width: 1800px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Flow Section (Journey Canvas) */
.flow-canvas-section {
    background-color: #fff;
    position: relative;
    padding-bottom: 8rem;
    overflow: hidden;
}

.flow-bg-texture {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 112, 67, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 112, 67, 0.03) 0%, transparent 20%);
    z-index: 0;
}

.flow-journey-container {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    position: relative;
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Journey SVG Line */
.journey-line-container {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 45%;
    width: 10%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.journey-line-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.journey-line-svg path {
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 8;
}

/* Steps */
.journey-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.journey-step.reverse {
    flex-direction: row-reverse;
}

.journey-img-card {
    flex: 0 0 45%;
    position: relative;
    border-radius: 4px;
    background: #fff;
    padding: 0.8rem 0.8rem 2.8rem 0.8rem;
    /* Polaroid feel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.journey-img-card.left-tilt {
    transform: rotate(-2deg);
}

.journey-img-card.right-tilt {
    transform: rotate(2deg);
}

.journey-img-card:hover {
    transform: scale(1.02) rotate(0deg) !important;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 112, 67, 0.2);
}

.journey-img-card img {
    width: 100%;
    aspect-ratio: 16/9;
    /* Cinematic ratio */
    object-fit: cover;
    border-radius: 2px;
}



/* Ensure overflow hidden for crop */
.journey-img-card {
    overflow: hidden;
}

.journey-overlay {
    position: absolute;
    inset: 0.8rem 0.8rem 2.8rem 0.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    border-radius: 2px;
    pointer-events: none;
}

.step-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-en);
    line-height: 1;
    opacity: 0.9;
    text-shadow: 2px 2px 0 #fff;
}

/* Content */
.journey-content-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

/* Steps Header Row (Title + Badge) */
.journey-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.journey-content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-color);
}

/* Badges */
.journey-badge {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid currentColor;
}

.journey-badge.free {
    color: #888;
    border-color: #ccc;
    background: #f9f9f9;
}

.journey-badge.paid {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 112, 67, 0.05);
}

/* Footer Info in Card */
.journey-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-sub);
    font-weight: 700;
}

/* Intro Text */
.section-intro {
    text-align: center;
    margin-top: 0.8rem;
    color: var(--text-sub);
    font-size: 0.95rem;
}

.section-intro .arrow {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.5rem;
}

/* Price Footer */
.flow-price-footer {
    margin-top: 5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px dashed var(--border-color);
    color: var(--text-sub);
    font-size: 0.9rem;
}

/* Responsive */
/* Legacy mobile block removed */

/* Price */
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}


/* Google Form Responsive Wrapper */
.gform-wrap {
    width: 100%;
    position: relative;
    /* Further reduced height to remove bottom whitespace */
    height: 1000px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.gform {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .gform-wrap {
        height: 1200px;
        /* Adjusted for mobile */
    }
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ensure button is pushed to bottom */
.price-card .btn,
.price-card .btn-secondary {
    margin-top: auto;
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 112, 67, 0.15);
    /* Remove scale transform to ensure perfect alignment */
    /* transform: scale(1.02); */
    border-width: 2px;
    z-index: 1;
}

.price-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    font-weight: 700;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-en);
    margin: 1rem 0;
}

.price-desc {
    color: var(--text-sub);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Member Section (Redesigned) */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

.profile-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy pop */
}

.profile-card:hover {
    transform: translateY(-10px);
}

/* Decorative Geometric Shape behind Photo */
.profile-img-container {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 2rem;
    z-index: 1;
}

/* The Primary Color Accent (Trapezoid/Triangle vibe) */
.profile-img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(20% 0%, 100% 20%, 100% 100%, 0% 80%);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.profile-card:hover .profile-img-container::before {
    transform: scale(1.05) rotate(3deg);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* In case of transparency or loading */
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.profile-role-sub {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.profile-desc {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--primary-color);
}

.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-q::before {
    content: 'Q.';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.faq-a {
    color: var(--text-sub);
    line-height: 1.8;
    padding-left: 2rem;
}

/* Contact */
.contact-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.5rem;
}

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

/* --- V2 New Styles --- */

/* Price Table */
.price-table-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: var(--bg-secondary);
    color: var(--text-color);
    font-weight: 700;
}

.price-table .highlight-row td {
    background: rgba(255, 112, 67, 0.05);
    color: var(--primary-color);
    font-weight: 700;
}

/* Voices Section */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.voice-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7043, #ffca28);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 112, 67, 0.15);
}

.voice-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.voice-text::after {
    content: '“';
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.05;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    z-index: -1;
}

.voice-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.voice-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.voice-attr {
    color: var(--text-sub);
    font-size: 0.85rem;
}

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-text:hover {
    border-bottom-color: var(--primary-color);
    transform: translateX(5px);
}

/* Coaching Intro - Rich Dark Theme */
.coaching-intro-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.coaching-intro-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.coaching-intro-container>* {
    position: relative;
    z-index: 1;
}

.coaching-intro-container h2.section-title {
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Contact Flow */
.booking-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 0.5rem;
    font-family: var(--font-en);
}

.step-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--border-color);
    font-weight: 300;
}

@media (max-width: 600px) {
    .booking-flow {
        flex-direction: column;
        gap: 1.5rem;
    }

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

/* Mock Form */
.form-mock-ui {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mock-input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.mock-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.mock-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* --- Coaching Page Styles --- */
.sub-section {
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sub-title {
    font-size: 1.5rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.content-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.check-list li,
.theme-list li {
    list-style: none;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.check-list li::before {
    content: '✔';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.theme-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    line-height: 1;
}

/* Process Flow (Vertical/Horizontal mixed) */
.process-flow {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Compare Box */
.compare-box {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.compare-col {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: 8px;
}

.compare-col.good {
    background: rgb(240, 255, 240);
    border: 1px solid #c8e6c9;
}

.compare-col.bad {
    background: rgb(255, 245, 245);
    border: 1px solid #ffebee;
}

.compare-col h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.compare-col.good h3 {
    color: #2E7D32;
}

.compare-col.bad h3 {
    color: #c62828;
}

.compare-col ul {
    padding-left: 1.5rem;
}

.compare-col li {
    margin-bottom: 0.5rem;
}

.text-link {
    display: inline-block;
    color: var(--text-sub);
    text-decoration: underline;
    transition: color 0.2s;
}

.text-link:hover {
    color: var(--primary-color);
}

/* Animations: Sway & Float */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes sway {
    0% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(-1deg);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.sway-anim {
    animation: sway 8s ease-in-out infinite;
}

/* Organic Background Decoration */
.organic-bg {
    position: relative;
    overflow: hidden;
}

.organic-bg::before,
.organic-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.organic-bg::before {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.organic-bg::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

/* Staggered Delays for Grid Items */
.voices-grid .voice-card:nth-child(1) {
    animation-delay: 0s;
}

.voices-grid .voice-card:nth-child(2) {
    animation-delay: 1.5s;
}

.voices-grid .voice-card:nth-child(3) {
    animation-delay: 3s;
}

.voices-grid .voice-card:nth-child(even) {
    animation-direction: reverse;
}

/* --- Rich Enhancement v3: Creative & Premium --- */

/* Glassmorphism Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-card-dark {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ffca28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Rich Organic Animations */
@keyframes wobble-slow {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.organic-shape {
    overflow: hidden;
    animation: wobble-slow 8s ease-in-out infinite;
    transition: border-radius 0.5s ease;
}

/* Floating Staggered Animation */
@keyframes float-vertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-vertical {
    animation: float-vertical 6s ease-in-out infinite;
}

/* Voices Specific Enhancements */
.voice-card-rich {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.voice-card-rich:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 112, 67, 0.15);
    border-color: rgba(255, 112, 67, 0.2);
}

.voice-card-rich::before {
    content: '“';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.04;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.voice-card-rich:hover::before {
    transform: rotate(15deg) scale(1.2);
    opacity: 0.08;
}

.voice-quote {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Coaching Specific Enhancements */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-secondary), var(--primary-color), var(--bg-secondary));
    z-index: 0;
    transform: translateY(-50%);
    opacity: 0.3;
}

.process-card-rich {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.process-card-rich:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    font-weight: bold;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8);
}

/* --- Refined Organic & Rich Elements --- */

/* 1. Organic Blob Background (Fix for clipping issue) */
.organic-blob-container {
    position: relative;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.organic-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, #FF7043, #FFCCBC);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: wobble-slow 10s ease-in-out infinite;
    z-index: -1;
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(255, 112, 67, 0.2);
}

/* Ensure content stays readable and sharp on top */
.content-over-blob {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

/* 2. Process Timeline Richness (Fix for blandness) */
.process-timeline-rich {
    position: relative;
    padding: 3rem 0;
}

/* Dashed connecting line for desktop */
@media (min-width: 768px) {
    .process-timeline-rich::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: repeating-linear-gradient(90deg,
                var(--primary-color) 0,
                var(--primary-color) 10px,
                transparent 10px,
                transparent 20px);
        z-index: 0;
        opacity: 0.4;
    }
}

.process-step-rich {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-rich:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.step-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 112, 67, 0.2);
    position: relative;
    z-index: 2;
}

.step-label {
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
}


/* --- Creative Compare Section (Fix for mechanical look) --- */
.creative-compare-container {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.creative-card {
    flex: 1;
    min-width: 320px;
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.creative-card.good {
    border-radius: 30px 0 0 30px;
    border: 1px solid rgba(46, 125, 50, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 245, 233, 0.4) 100%);
    box-shadow: -10px 20px 40px rgba(46, 125, 50, 0.05);
    z-index: 2;
    transform: scale(1.02);
}

.creative-card.bad {
    border-radius: 0 30px 30px 0;
    border: 1px solid rgba(229, 115, 115, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 235, 238, 0.4) 100%);
    box-shadow: 10px 20px 40px rgba(229, 115, 115, 0.05);
    z-index: 1;
    transform: scale(0.95);
    opacity: 0.9;
    filter: grayscale(0.2);
}

.creative-compare-container:hover .creative-card.good {
    transform: scale(1.02);
}

.creative-compare-container:hover .creative-card.bad {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .creative-compare-container {
        flex-direction: column;
        gap: 2rem;
    }

    .creative-card.good,
    .creative-card.bad {
        border-radius: 24px;
        transform: scale(1) !important;
    }
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.creative-card.good .card-icon-wrapper {
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

.creative-card.bad .card-icon-wrapper {
    box-shadow: 0 10px 25px rgba(229, 115, 115, 0.15);
}

.card-title-rich {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.creative-card.good .card-title-rich {
    color: #2E7D32;
}

.creative-card.bad .card-title-rich {
    color: #c62828;
}

.rich-list li {
    list-style: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease;
}

.creative-card.good .rich-list li {
    border-left: 4px solid #66BB6A;
}

.creative-card.bad .rich-list li {
    border-left: 4px solid #EF5350;
}

.rich-list li:hover {
    transform: translateX(5px);
}

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

.creative-card.good .list-icon {
    color: #43A047;
}

.creative-card.bad .list-icon {
    color: #E53935;
}

.compare-vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-style: italic;
    font-family: var(--font-en);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    color: var(--text-sub);
}

@media (max-width: 768px) {
    .compare-vs-badge {
        display: none;
    }
}


/* --- Editorial Design System (New V4) --- */

/* Typography Utils */
.serif-font {
    font-family: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', serif;
}

.typo-h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.typo-h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.typo-h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.typo-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-sub);
    margin-bottom: 1rem;
    display: block;
}

.typo-lead {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-color);
    font-feature-settings: 'palt';
}

.pull-quote {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.5);
}

/* Chapter 01: Hero */
.chapter-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    /* abstract_warm_bg.png will be inline style */
    background-size: cover;
    background-position: center;
}

.chapter-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    /* Light overlay text readability */
}

/* Chapter 02: Editorial Split (Do/Dont) */
.editorial-split {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    margin: 3rem 0;
}

.editorial-split::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.split-col {
    flex: 1;
}

.editorial-list li {
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.editorial-list li::before {
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 0.8rem;
}

.split-col.left .editorial-list li::before {
    content: '';
    color: var(--primary-color);
}

.split-col.right .editorial-list li::before {
    content: '';
    color: #999;
}

@media (max-width: 768px) {
    .editorial-split {
        flex-direction: column;
        gap: 3rem;
    }

    .editorial-split::after {
        display: none;
    }
}

/* Chapter 03: Timeline Horizontal */
.editorial-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.timeline-phase {
    flex: 1;
    position: relative;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.phase-num {
    position: absolute;
    top: -1.8rem;
    /* Half overlap line */
    left: 0;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.phase-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phase-title {
    font-size: 1.25rem;
    margin: 0.5rem 0 1rem;
    font-weight: 700;
}

.phase-desc {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .editorial-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-phase {
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 0;
        padding-left: 2rem;
    }

    .phase-num {
        top: 0;
        left: -1rem;
    }
}

/* Chapter 04: Gentle Suggestion */
.gentle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.gentle-col {
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 8px;
}

.gentle-col.recommend {
    background: rgba(232, 245, 233, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.gentle-col.other {
    background: #f5f5f5;
    color: #666;
}

/* CTA refined */
.editorial-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-editorial {
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-editorial:hover {
    background: var(--text-color);
    color: #fff;
}


/* --- New Concept Step Cards (UX Improvement) --- */
.concept-steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0;
    flex-wrap: wrap;
}

.concept-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.step-num-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 0.3em 0.8em;
    border-radius: 20px;
}

.concept-icon-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.concept-icon-header img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Ensures white bg blends if needed */
}

/* Specific fix for 2nd card image to remove blueish background tint */
.concept-card:nth-child(2) .concept-icon-header img {
    filter: brightness(1.08) contrast(1.2);
}

.concept-content {
    flex: 1;
}

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

.concept-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-sub);
    margin-bottom: 1rem;
}

.concept-example {
    font-size: 0.85rem;
    color: #888;
    background: #f9f9f9;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 3px solid #ddd;
}

.concept-tag {
    align-self: flex-start;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #eee;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
}

/* Arrow between cards on desktop */
.concept-steps-container {
    position: relative;
}

@media (min-width: 992px) {
    .concept-card::after {
        content: '';
        position: absolute;
        right: -1.8rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #ddd;
        font-family: 'Inter', sans-serif;
    }

    .concept-card:last-child::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .concept-card::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        top: auto;
    }

    .concept-steps-container {
        flex-direction: column;
        gap: 3.5rem;
        /* Space for arrow */
    }
}

/* --- New Coaching Page Styles --- */

/* 1. Hero Updates */
.chapter-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-concrete-line {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    display: inline-block;
    border-radius: 4px;
}

.pull-quote-hero {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 2. Definition Icons */
.definition-icons-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.def-icon-item {
    text-align: center;
    width: 140px;
}

.def-icon-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.def-icon-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.def-icon-item p {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.4;
}

.arrow-icon {
    font-size: 1.5rem;
    color: #ccc;
    margin-top: 1.5rem;
}

/* 3. Before / After */
.before-after-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ba-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ba-visual {
    position: relative;
    height: 250px;
}

.ba-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 4px;
}

.ba-label.before {
    background: #999;
}

.ba-label.after {
    background: var(--primary-color);
}

.ba-text {
    padding: 1.5rem;
    text-align: center;
}

.ba-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ba-text p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.ba-arrow-shape {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 4. Dialogue */
.dialogue-section {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

.dialogue-intro {
    color: var(--text-sub);
    margin-top: 0.5rem;
    font-weight: 700;
}

.chat-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-row {
    display: flex;
    width: 100%;
}

.chat-row.coach {
    justify-content: flex-start;
}

.chat-row.client {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 70%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.chat-row.coach .chat-bubble {
    background: #fff;
    border: 1px solid #eee;
    border-bottom-left-radius: 2px;
}

.chat-row.coach .chat-bubble::before {
    content: 'Coach';
    position: absolute;
    top: -1.2rem;
    left: 0;
    font-size: 0.7rem;
    color: var(--text-sub);
}

.chat-row.client .chat-bubble {
    background: #FFECB3;
    /* Soft warm yellow/orange */
    color: #444;
    border-bottom-right-radius: 2px;
}

.chat-row.client .chat-bubble::before {
    content: 'You';
    position: absolute;
    top: -1.2rem;
    right: 0;
    font-size: 0.7rem;
    color: var(--text-sub);
}

/* 5. Free Trial Steps */
.steps-3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-3-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
}

.step-3-card.highlight {
    border: 2px solid var(--primary-color);
    background: #fffbf8;
}

.step-num {
    display: inline-block;
    background: #eee;
    color: #888;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-3-card.highlight .step-num {
    background: var(--primary-color);
    color: #fff;
}

.takeaway-box {
    margin-top: 3rem;
    background: #2E7D32;
    /* Green accent */
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.takeaway-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.takeaway-list {
    list-style: none;
    font-size: 1rem;
}

.takeaway-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.takeaway-list li::before {
    content: '';
    color: #A5D6A7;
}

/* 6. Editorial Split (Do/Dont/Recommend) */
.editorial-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.split-block {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .editorial-split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .definition-icons-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .arrow-icon {
        transform: rotate(90deg);
        margin: 0;
    }

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

.do-dont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.do-dont-grid h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-decoration-color: #ddd;
    text-underline-offset: 4px;
}

.do-col ul,
.dont-col ul {
    list-style: none;
    padding: 0;
}

.do-col li,
.dont-col li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.do-col li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.dont-col li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #999;
}

.check-list-simple {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.check-list-simple li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.check-list-simple li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\' fill=\'%23FF7043\'><path d=\'M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\'/></svg>');
}



/* --- Revised Coaching Page Styles (Design System Aligned) --- */

/* Hero Glass Box */
.hero-glass-box {
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    /* Milky glass */
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: inline-block;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-glass-box p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

/* Process Cards (Big Horizontal) */
.process-cards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Align arrows and cards */
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .process-cards-grid {
        flex-direction: column;
    }

    .process-arrow-next {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

.process-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-img-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.process-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.process-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-text p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

.process-arrow-next {
    font-size: 1.5rem;
    color: #ddd;
    font-family: 'Inter', sans-serif;
}


/* Before/After Refined */
.ba-label {
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    /* Pill shape */
    backdrop-filter: blur(4px);
}

.ba-label.before {
    background: rgba(50, 50, 50, 0.6);
    color: #fff;
}

.ba-label.after {
    background: rgba(255, 112, 67, 0.9);
    color: #fff;
}

/* Primary color */

.ba-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    /* Softer, deeper shadow */
    border: none;
}


/* Dialogue Refined Bubbles */
.chat-bubble {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.chat-row.client .chat-bubble {
    background: #FDF5E6;
    /* Old Lace / very soft warm beige */
    color: #555;
}


/* Rich Trial Cards */
.rich-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.rich-card.highlight {
    border: 2px solid var(--primary-color);
    background: #fff;
    /* Keep white for clean look, border handles highlight */
}

.rich-card-img {
    width: 100%;
    height: 160px;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rich-card-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.rich-card h3 {
    margin-bottom: 0.5rem;
}

/* Takeaway Box Refined (Elegant) */
.takeaway-box-refined {
    margin-top: 4rem;
    background: #F1F8E9;
    /* Very light green */
    border: 1px solid #C8E6C9;
    color: #33691E;
    /* Dark elegant green text */
    padding: 3rem;
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    display: inline-block;
    text-align: left;
}

.takeaway-list-refined {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.takeaway-list-refined li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.takeaway-list-refined li::before {
    content: '';
    color: #2E7D32;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}




/* --- Coaching Page A-Plan Updates --- */

/* Hero Text Shadow Match */
.hero-title.text-shadow {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-text.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Process Cards: Big Visual Layout */
.process-card.big-visual {
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    border: none;
    max-width: 320px;
    margin: 0 auto;
}

.process-img-full {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.process-img-full img {
    width: 80%;
    /* Big presence */
    height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.process-text-compact {
    text-align: center;
    padding: 0 1rem;
}

.process-text-compact h3 {
    font-family: var(--font-en);
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.process-text-compact p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.process-arrow-thin {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

@media (max-width: 900px) {
    .process-arrow-thin {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* Trial Section: Ticket / Bookmark UI */
.tickets-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.ticket-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background: #FFFCF7;
    /* Warm off-white paper */
    background-image: radial-gradient(#fff, #f4f1ea);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Paper float */
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ticket-card:hover {
    transform: translateY(-5px);
}

.ticket-card::before {
    /* Top notch / Punch hole simulation */
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #f9f9f9;
    /* Match section bg color to simulate hole */
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ticket-card.highlight {
    border: 2px solid var(--primary-color);
}

.ticket-visual {
    width: 160px;
    height: 160px;
    margin: 1rem auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ticket-num {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 700;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border: 1px solid #eee;
    padding: 0.1rem 0.6rem;
    border-radius: 20px;
}

.ticket-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Paper Note (Takeaway) */
.paper-note-container {
    display: flex;
    justify-content: center;
}

.paper-note {
    background: #F1F8E9;
    /* Soft Sage Green */
    padding: 3rem 4rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    max-width: 700px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Add subtle paper texture overlay if simpler */
.paper-note::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'100\' height=\'100\'><rect width=\'100\' height=\'100\' fill=\'%23000\' opacity=\'0.02\'/></svg>');
    opacity: 0.5;
    pointer-events: none;
    border-radius: 4px;
}

.paper-title {
    color: #33691E;
    /* Dark Green */
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.paper-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #558B2F;
    margin: 0.5rem auto 0;
}

.paper-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.paper-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #335026;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
}

.paper-icon {
    color: #9CCC65;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Before/After Refined */
.ba-label-refined {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
}

.ba-label-refined.before {
    background: rgba(255, 255, 255, 0.7);
    color: #777;
}

.ba-label-refined.after {
    background: var(--primary-color);
    color: #fff;
}

.ba-card.refined {
    border-radius: 12px;
    overflow: hidden;
    /* Clean, no deep shadow just soft lift */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ba-arrow-thin {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ba-arrow-thin {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* Note Blog Section */
.note-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    /* Slightly wider to accommodate 3 cards comfortably */
    margin: 0 auto;
}

.note-card {
    width: 320px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.note-thumb {
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    /* Placeholder */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.note-card:hover .note-thumb img {
    transform: scale(1.05);
}

.note-thumb-placeholder {
    font-size: 2rem;
    color: #ddd;
}

.note-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.note-date {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
    font-family: var(--font-en);
}

.note-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-color);
}

.note-excerpt {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.note-btn {
    align-self: flex-start;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.note-card:hover .note-btn {
    border-color: var(--primary-color);
}

/* Loading / Error */
.note-loading,
.note-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-sub);
    background: #fff;
    border-radius: 8px;
    border: 1px dashed #eee;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Street Zine CTA (V7 - Light & Soft) --- */
.zine-cta-section {
    position: relative;
    max-width: 960px;
    margin: 5rem auto 3rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 10px 10px 0px rgba(46, 125, 50, 0.1);
    /* Soft Deep Green Shadow */
    border: 2px solid #2E3B2E;
    /* Dark Green Border */
    overflow: hidden;
    transform: rotate(-1deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.zine-cta-section:hover {
    transform: rotate(0deg) scale(1.005) translateY(-3px);
    box-shadow: 15px 15px 0px rgba(46, 125, 50, 0.15);
}

/* Paper Texture */
.zine-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Soft noise for paper feel */
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10;
    /* Top most grain */
    mix-blend-mode: multiply;
}

.zine-inner {
    display: flex;
    align-items: stretch;
    background: #fff;
    min-height: 400px;
}

/* Left: Text Area */
.zine-left {
    flex: 1;
    padding: 4rem 3.5rem 3.5rem 3.5rem;
    /* Increased top padding for badge clearance */
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at top left, #fff 0%, #fafafa 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sticker Badge (Maintained but refined) */
.sticker-badge {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: #FFEB3B;
    /* Keep yellow punch */
    color: #2E3B2E;
    /* Dark Green Text */
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0 rgba(46, 125, 50, 0.1);
    border: 1px solid #2E3B2E;
    z-index: 10;
}

.sticker-badge::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 24px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%) rotate(2deg);
    /* Tape effect - refined */
}

/* Typography Refresh */
/* Give breathing room below badge before title */
.zine-head {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.2;
    color: #2E3B2E;
    /* Dark Green (Off-Black) */
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
    /* Increased breathing room (+6-8px approx) */
    letter-spacing: -0.02em;
    transform: skewX(-1deg);
}

.zine-sub {
    font-size: 1.2rem;
    font-weight: 700;
    background: #2E3B2E;
    /* Dark Green Bg */
    color: #fff;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    transform: rotate(0.5deg);
    margin-bottom: 2rem;
    border-radius: 2px;
    /* Slight softening */
}

.zine-desc {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.9;
    color: #555;
    /* Soft gray text */
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

/* Offset Button (Refined) */
.btn-zine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #2E3B2E;
    background: #fff;
    border: 2px solid #2E3B2E;
    padding: 1rem 3rem;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
    text-transform: none;
    /* Less aggressive */
    letter-spacing: 0.05em;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}

.btn-zine::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    /* Orange shadow */
    border: 2px solid #2E3B2E;
    z-index: -1;
    transition: all 0.2s ease;
}

.btn-zine:hover {
    transform: translate(-2px, -2px);
    /* Lift up 2px */
    box-shadow: 4px 4px 0 rgba(46, 125, 50, 0.1);
    /* Subtle extra shadow */
}

.btn-zine:hover::after {
    transform: translate(2px, 2px);
    /* Shadow extends further */
    background: #fff;
}

.btn-zine:active {
    transform: translate(1px, 1px);
    /* Press down 1px */
    box-shadow: none;
}

.btn-zine:active::after {
    transform: translate(0, 0);
    /* Collapse shadow */
}

/* Right: Visual (Light & Abstract) */
.zine-right {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-left: 2px solid #2E3B2E;
}

.zine-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Blend mode to ensure lightness */
    opacity: 0.95;
}

/* Arrows / Stamps (Refined) */
.stamp-mark {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    /* Reduced size (-5px) */
    height: 65px;
    border: 2px dashed #2E3B2E;
    border-radius: 50%;
    color: #2E3B2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: serif;
    font-size: 0.75rem;
    /* Slightly smaller text */
    transform: rotate(-10deg);
    opacity: 0.5;
    /* Reduced opacity (-20%) */
    z-index: 5;
    text-align: center;
    line-height: 1.1;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.4);
}

.scribble-arrow {
    position: absolute;
    bottom: 4.5rem;
    left: 17rem;
    /* Adjusted positioning */
    width: 50px;
    height: auto;
    transform: rotate(160deg);
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
    color: var(--primary-color);
}

/* --- Coaching Page Zine Enhancements (V2: Collage & Powerful) --- */

/* 1. Zine Headers */
.zine-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.zine-sticker-label {
    display: inline-block;
    background: #FFEB3B;
    color: #2E3B2E;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    transform: rotate(-4deg) translateY(10px);
    border: 2px solid #2E3B2E;
    /* Thicker border */
    box-shadow: 3px 3px 0 rgba(46, 125, 50, 0.2);
    position: relative;
    z-index: 5;
    margin-bottom: -1.2rem;
}

.zine-section-title {
    background: #2E3B2E;
    color: #fff;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 2px;
    transform: skewX(-2deg);
    position: relative;
    z-index: 1;
    box-shadow: 6px 6px 0 rgba(46, 125, 50, 0.2);
}

.zine-section-intro {
    background: #2E3B2E;
    color: #fff;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    transform: rotate(1deg);
}

/* 2. Process Cards (Strong Collage Style) */
.zine-process-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Stretch to matching heights */
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    position: relative;
}

.zine-process-card {
    flex: 1 1 0;
    /* Force equal width distribution */
    min-width: 280px;
    background: #fff;
    padding: 2.5rem 2rem 2rem;
    border: 3px solid #2E3B2E;
    box-shadow: 8px 8px 0 rgba(46, 125, 50, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

/* Rotations for Collage Feel - Balanced */
.zine-process-card:nth-child(1) {
    transform: rotate(-2deg);
}

.zine-process-card:nth-child(2) {
    transform: rotate(1deg);
    margin-top: 2rem;
}

/* Offset middle card downwards slightly for rhythm */
.zine-process-card:nth-child(3) {
    transform: rotate(-1deg);
}

.zine-process-card:hover {
    transform: scale(1.03) rotate(0deg) !important;
    z-index: 20;
    box-shadow: 12px 12px 0 rgba(46, 125, 50, 0.25);
    border-color: #FF7043;
    /* Highlight */
}

.zine-process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #2E3B2E 1px, transparent 1px);
    background-size: 8px 8px;
    /* Tighter half-tone */
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Larger Images 1.2-1.4x */
.zine-process-img {
    width: 100%;
    height: 220px;
    /* Taller */
    margin-bottom: 2rem;
    border: 2px solid #2E3B2E;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #fff;
}

.zine-process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zine-process-card:hover .zine-process-img img {
    transform: scale(1.1);
}

.zine-process-num {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: #fff;
    color: #2E3B2E;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    border: 3px solid #2E3B2E;
    z-index: 10;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Handwritten Arrows */
.zine-arrow-connector {
    display: none;
    /* Hide standard arrows in flex, use absolute or pseudo if needed, but flex gap is safer */
}

/* Re-implement arrow as SVG overlay between cards on desktop if desired, or simpler gap */

/* 3. DM Style Chat (Visual Update only) */
.zine-chat-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 24px;
    border: 4px solid #2E3B2E;
    box-shadow: 12px 12px 0 rgba(46, 125, 50, 0.15);
}

.chat-bubble-zine {
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 85%;
    font-weight: 500;
}

.chat-row.coach .chat-bubble-zine {
    background: #fff;
    border: 2px solid #2E3B2E;
    color: #2E3B2E;
    border-bottom-left-radius: 2px;
    margin-right: auto;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.chat-row.coach .chat-bubble-zine::before {
    content: 'COACH';
    position: absolute;
    top: -1.4rem;
    left: 0;
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    background: #fff;
    padding: 0 0.5rem;
}

.chat-row.client .chat-bubble-zine {
    background: #2E3B2E;
    color: #fff;
    border: 2px solid #2E3B2E;
    border-bottom-right-radius: 2px;
    margin-left: auto;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

/* 4. Bottom Zine CTA (Powerful Orange) */
.zine-footer-cta {
    background: url('images/zine_bg_light.png') center/cover;
    padding: 6rem 1rem;
    text-align: center;
    border-top: 4px solid #2E3B2E;
    position: relative;
    overflow: hidden;
}

.zine-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
}

.zine-footer-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .zine-process-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .zine-arrow-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: -1rem 0;
    }

    .zine-section-title {
        font-size: 1.5rem;
        padding: 0.8rem 2rem;
    }

    .zine-process-card {
        transform: rotate(0deg) !important;
        margin-top: 0 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .zine-cta-section {
        margin: 3rem 1rem;
        transform: rotate(0);
        width: auto;
    }

    .zine-inner {
        flex-direction: column;
        min-height: auto;
    }

    .zine-right {
        height: 220px;
        flex: none;
        border-left: none;
        border-bottom: 2px solid #2E3B2E;
        order: -1;
    }

    .zine-left {
        padding: 3.5rem 2rem 2.5rem 2rem;
        /* Restore padding for badge */
        text-align: center;
        display: block;
    }

    .zine-desc {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--primary-color);
        padding-top: 1rem;
        display: inline-block;
        text-align: left;
        margin-top: 1.5rem;
    }

    .sticker-badge {
        position: absolute;
        /* Keep absolute on mobile for top corner feel? Or inline? */
        /* Let's try inline block flow for mobile to be safe or float top right on image */
        top: -15px;
        left: 50%;
        transform: translateX(-50%) rotate(2deg);
        z-index: 20;
    }

    /* On mobile, insert sticker between image and text visually by absolute pos on section or negative margin */
    /* Let's keep it clean: simple absolute on left col top might overlap text if padding not enough */

    .zine-head {
        margin-top: 1rem;
        font-size: 2rem;
    }

    .scribble-arrow {
        display: none;
    }

    .btn-zine {
        width: 100%;
    }
}

/* --- Coaching CTA Section (New V5) --- */
.coaching-cta-section {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 2rem;
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 112, 67, 0.1);
}

.coaching-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-left-col {
    flex: 1;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-right-col {
    flex: 0 0 40%;
    position: relative;
    height: 100%;
    min-height: 280px;
}

.cta-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.cta-badge {
    display: inline-block;
    background: #fdf2e9;
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 112, 67, 0.15);
}

.cta-question-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-color);
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-cta-rich {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta-rich:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.4);
    background: #e65100;
}

/* Texture Overlay */
.coaching-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .coaching-cta-inner {
        flex-direction: column-reverse;
        /* Visual on top? Or bottom? Let's put visual on top actually, changed nicely below */
        flex-direction: column;
    }

    .cta-right-col {
        width: 100%;
        height: 180px;
        min-height: auto;
        flex: none;
        order: -1;
        /* Image first */
    }

    .cta-visual-img {
        mask-image: linear-gradient(to bottom, transparent, black 0%);
        /* No fade on mobile top usually */
        -webkit-mask-image: none;
        position: relative;
    }

    .cta-left-col {
        padding: 2rem;
        text-align: center;
    }

    .cta-badge {
        margin: 0 auto 1rem;
    }

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

/* --- Fix: Contact Flow Visibility --- */
.step-num {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
    font-weight: 700;
}

.flow-arrow {
    color: #2E3B2E !important;
    /* Dark Green for contrast */
    opacity: 0.8 !important;
    font-weight: 700;
}

/* =========================================
   MOBILE OPTIMIZATION (v2025 Update)
   Target: <= 767px
   ========================================= */

/* Default States (Desktop) */
.hamburger-btn {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-price-list {
    display: none;
}

/* Phase 23: Hide SP CEO Message on PC */
.message-txt-sp {
    display: none;
}

/* -------------------------------------------
   Mobile Layout Override
   ------------------------------------------- */
@media (max-width: 767px) {

    /* --- Global Resets & Vertical Compression --- */
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    section,
    header,
    footer {
        overflow-x: hidden;
    }

    /* Reduced Section Padding (3-tier system) */
    .section {
        padding: 32px 0;
    }

    /* Important Sections: Hero / Message / Flow */
    #hero,
    #message,
    #flow {
        padding: 48px 0;
    }

    /* Sub-sections or Light sections */
    #price,
    #faq,
    #blog {
        padding: 32px 0;
    }

    /* Tighter Headers */
    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .section-label {
        margin-bottom: 8px;
    }

    /* --- Header Navigation (Hamburger) --- */
    .header {
        height: 56px;
        /* Explicit mobile header height */
        padding: 0;
        display: flex;
        align-items: center;
    }

    .header-inner {
        padding: 0 1rem;
        height: 100%;
    }

    .header .nav {
        display: none !important;
        /* Force hide desktop nav */
    }

    .logo img {
        height: 32px;
        /* Adjusted logic size */
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        width: 44px;
        /* Minimum touch target */
        height: 44px;
        cursor: pointer;
        z-index: 2000;
        padding: 0;
        margin-right: -8px;
        /* Align visually to right edge */
    }

    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Adjust hamburger color for Hero section (on transparent bg) */
    .header:not(.scrolled) .hamburger-btn span {
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    /* --- Mobile Menu Overlay (Premium Card Redesign) --- */
    .mobile-menu-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        inset: 0;
        /* Blur for "Floating Above" feel */
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1500;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Card Container (The "Vessel") with Worldview */
    .mobile-menu-container {
        width: 88%;
        max-width: 340px;
        background: #FFFAF8;
        /* Warm Off-white */
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 40px 24px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 112, 67, 0.08);
    }

    /* Abstract Texture Background (Inside Card) */
    .mobile-menu-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: #FFFAF8;
        background-image:
            radial-gradient(circle at 10% 10%, rgba(255, 112, 67, 0.03) 0%, transparent 20%),
            url('images/zine_bg_light.png');
        /* Use existing texture */
        background-size: cover;
        background-blend-mode: multiply;
        opacity: 0.15;
        /* Slightly visible texture */
        z-index: 0;
        pointer-events: none;
    }

    /* Close Button (Intuitive & Large Target) */
    .mobile-menu-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 48px;
        /* >44px */
        height: 48px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 50%;
        border: none;
        font-size: 2rem;
        font-weight: 300;
        line-height: 1;
        color: var(--text-color);
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .mobile-menu-close:active {
        background: rgba(0, 0, 0, 0.08);
    }

    /* Nav List (Clean List Look) */
    .mobile-nav-list {
        position: relative;
        z-index: 1;
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* Optimized Gap */
        width: 100%;
        padding: 1.5rem 0 0;
        margin: 0;
    }

    /* Menu Items Typography */
    .mobile-nav-list a {
        font-size: 1.1rem;
        /* Slightly reduced for elegance */
        line-height: 1.2;
        letter-spacing: 0.05em;
        font-weight: 700;
        color: var(--text-color);
        display: block;
        padding: 5px;
        /* Hit area padding */
        font-family: var(--font-en);
        transition: color 0.2s;
    }

    .mobile-nav-list a:active {
        color: var(--primary-color);
        transform: scale(0.98);
    }

    /* CTA Button in Menu */
    .mobile-nav-list .btn-secondary {
        width: 100%;
        max-width: none;
        margin: 36px 0 0;
        padding: 16px;
        font-size: 1rem;
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        box-shadow: 0 6px 20px rgba(255, 112, 67, 0.25);
    }

    /* --- Pricing Section (Optimized Vertical Height) --- */
    .price-table-container {
        display: none !important;
    }

    .mobile-price-list {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        /* 16px -> 12px */
        margin-bottom: 24px;
        padding: 0;
    }

    .mobile-price-item {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .mobile-price-item.highlight-item {
        border: 2px solid var(--primary-color);
    }

    /* Compact Header */
    .mp-header {
        background-color: #fcfcfc;
        border-bottom: 1px solid #eaeaea;
        padding: 12px 16px;
        /* 16px/12px padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mp-plan {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }

    .mp-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-color);
        font-family: var(--font-en);
    }

    /* Compact Body Details */
    .mp-details {
        padding: 8px 16px 12px;
    }

    .mp-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        /* Align baseline for better reading */
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #f0f0f0;
    }

    .mp-row:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .mp-label {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-sub);
        width: 30%;
        flex-shrink: 0;
        text-align: left;
    }

    .mp-value {
        font-size: 0.9rem;
        color: var(--text-color);
        text-align: right;
        line-height: 1.4;
        width: 70%;
    }

    /* --- Flow / Contact Arrows --- */
    .booking-flow {
        flex-direction: column !important;
        gap: 16px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0;
        height: 24px;
        /* Fix height for vertical flow */
        color: var(--primary-color) !important;
    }

    /* --- General Typography & Section Specific Compression --- */

    /* HERO Mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
        /* Compressed */
    }

    .hero-text {
        padding: 0 1rem;
        font-size: 0.95rem;
        margin-bottom: 20px;
        /* Compressed */
        line-height: 1.6;
    }

    /* SERVICE Steps (Horizontal List Style) */
    .concept-steps-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .concept-card {
        padding: 16px;
        gap: 16px;
        flex-direction: row;
        /* Side by side */
        align-items: flex-start;
        text-align: left;
    }

    .concept-icon-header {
        flex: 0 0 60px;
        /* Fixed small width for icon */
        margin-bottom: 0;
    }

    .concept-icon-header img {
        width: 100%;
        height: auto;
    }

    .concept-content {
        flex: 1;
        text-align: left;
    }

    .concept-title {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .concept-body {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .step-num-badge {
        position: static;
        /* Flow naturally or tweak */
        display: inline-block;
        margin-bottom: 4px;
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    /* FLOW (Media List Style: Left Thumb + Right Content) */
    .flow-journey-container {
        gap: 20px;
        margin-top: 16px;
    }

    .journey-step {
        flex-direction: row;
        /* Horizontal */
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .journey-img-card {
        flex: 0 0 100px;
        width: 100px;
        /* Fixed width thumbnail */
        height: auto;
        min-height: 100%;
        /* Cover full height */
        padding: 0;
        margin: 0;
        border-radius: 0;
        order: -1;
        /* Ensure left */
    }

    .journey-img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .journey-overlay {
        display: none;
        /* Text is outside now */
    }

    .step-number {
        display: none;
        /* Too big for list view, maybe add small badge in content */
    }

    .journey-content-card {
        flex: 1;
        padding: 12px 12px 12px 16px;
        border: none;
        background: transparent;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .journey-header-row {
        margin-bottom: 4px;
        gap: 8px;
    }

    .journey-content-card h3 {
        font-size: 1rem;
    }

    .journey-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .journey-catch {
        font-size: 0.85rem;
        margin-bottom: 4px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .journey-desc {
        font-size: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Truncate if too long */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .journey-card-footer {
        margin-top: 8px;
        padding-top: 6px;
        font-size: 0.75rem;
    }

    /* Grid Resets & Vertical Compression (16px Gap) */
    .voices-grid,
    .profile-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        /* 24px -> 16px */
        padding: 0;
    }

    /* Hide large price cards on mobile to avoid duplication */
    .price-container {
        display: none !important;
    }

    /* Card Padding Compression */
    .voice-card {
        padding: 20px;
    }

    .price-card {
        padding: 24px 20px;
    }

    /* =========================================
       Phase 2: Side-by-Side Layouts (Mobile)
       ========================================= */

    /* CEO Message: Side-by-side (Image Left, Text Right) */
    .message-body {
        display: block !important;
        /* Float layout */
        /* display: flex !important; REMOVED */
    }

    .message-img-col {
        float: left;
        width: 84px;
        /* Fixed width 72-84px */
        margin-right: 12px;
        margin-bottom: 4px;
        /* Remove flex props */
        flex: none;
    }

    .message-profile-circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .message-profile-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .message-txt-col>div[style*="display: flex"]>p {
        margin-bottom: 0 !important;
        /* No right padding needed for float layout */
    }

    .message-txt-col>div[style*="display: flex"]>img {
        display: none !important;
        /* Hide road image if it causes issues, or keep absolute */
        /* User said: "Image contained... or absolute". Let's try absolute bottom right relative to message-body if possible.
           But message-body is block now. 
           Let's hide the road image on mobile to solve "wasteful whitespace" if it's not critical, OR make it very small.
           User said: "Image contained... max-width:100%". 
           Actually point (1) "CEO MESSAGE" implies profile picture. Point (2) "Road" image implies the *signature* road image at bottom.
           Wait, Point (2) in *User Request 255* is "SERVICE STEP"...
           In *User Request 255*, (1) is CEO profile. (2) is Service. (3) is Coaching. (4) Price. (5) FAQ. (6) Contact.
           Where is "Road image"? It was in previous request. Phase 4 Point (1) is "Profile photo under whitespace...".
           Ah, I see. "CEO MESSAGE: Profile photo under whitespace is wasteful".
           So my float approach is correct.
           
           Re-reading Request (1): "Left photo (72-84px), Right start text wrap".
           This allows text to wrap under the image. Correct.
           
           Re-reading Request (4) Price: "Price CTA".
           
           I will stick to keeping "Road" image absolute bottom right BUT it's inside txt-col. 
           In float layout, txt-col is meaningless if I unwrap it?
           Actually .message-txt-col is a div. If I want text to wrap, I should ideally not have a separate col div for text.
           But I can't change HTML.
           If .message-img-col is floated left, .message-txt-col will sit *next* to it if it fits, or under it?
           No, if .message-txt-col has `overflow: hidden` or is a block formatting context, it won't wrap *under* the image.
           To make text wrap *under* the image, the image needs to be *inside* the text block or they need to be siblings where text block is inline?
           If they are sibling divs:
           <div floated></div>
           <div text>...</div>
           
           If <div text> is `display: block` and NO overflow/width constraint, the textual content inside *should* wrap around the float.
           So .message-txt-col should just be `display: block`.
        */

        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 60px !important;
        opacity: 0.8;
    }

    .message-txt-col {
        display: block;
    }

    #message p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    /* SERVICE Steps: Horizontal List (Icon Left) */
    .concept-steps-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* SERVICE Steps: Vertical Stack with specific order */
    /* Template: Badge -> Heading -> Body -> Image -> Example -> Tag */
    .concept-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 16px;
        gap: 8px;
        position: relative;
    }

    /* 1. Badge */
    .step-num-badge {
        order: 1;
        /* Was inside card */
        align-self: flex-start;
        margin-bottom: 4px;
    }

    /* 2. Title & 3. Body & 5. Example & 6. Tag */
    /* We use display: contents on wrapper to let children sort */
    .concept-content {
        display: contents;
    }

    /* Explicitly target H3 for Title */
    .concept-title {
        order: 2;
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    /* P for Body */
    .concept-body {
        order: 3;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* 4. Image (Icon Header) */
    .concept-icon-header {
        order: 4;
        width: 100%;
        margin-bottom: 12px;
        flex: none;
        /* Reset flex */
    }

    .concept-icon-header img {
        width: 100%;
        height: auto;
        /* Allow natural height but max it */
        max-height: 120px !important;
        /* Constrain height */
        object-fit: contain !important;
        /* Never crop */
        border-radius: 8px;
        background: #f9f9f9;
        padding: 4px;
        /* Optional spacing inside frame */
        display: block;
        margin: 0 auto;
    }

    /* Div for Example */
    .concept-example {
        order: 5;
        margin-bottom: 8px;
    }

    /* Span for Tag */
    .concept-tag {
        order: 6;
        align-self: flex-start;
    }

    /* Old rules below are overridden or essentially replaced visually */
    /* .concept-icon-header was... */
    /* .concept-content was... */


    .concept-icon-header {
        flex: 0 0 50px;
        /* Smaller icon */
        margin-bottom: 0;
    }

    .concept-content {
        flex: 1;
        text-align: left;
    }

    /* FLOW: Media List (Thumbnail Left) */
    .flow-journey-container {
        display: flex;
        flex-direction: column;
        gap: 16px !important;
    }

    .journey-step {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        align-items: stretch;
        height: auto;
        min-height: 130px;
        /* Ensure logical height */
    }

    .journey-img-card {
        flex: 0 0 100px !important;
        width: 100px !important;
        max-width: 100px !important;
        margin: 0 !important;
        transform: none !important;
        /* Reset tilts */
        border-radius: 0 !important;
        order: -1 !important;
    }

    .journey-img-card img {
        border-radius: 0 !important;
        height: 100% !important;
        object-fit: cover;
    }

    .journey-content-card {
        flex: 1;
        min-width: 0;
        padding: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Hide decorative overlays on mobile list view */
    /* Coaching Zine Card: Hide Decorative Image + Noise */
    .zine-right {
        display: none !important;
    }

    .zine-inner {
        /* Add noise texture instead */
        background-color: #FFFAF8;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
        padding: 24px 16px !important;
    }

    /* Price CTA Mobile */
    .mobile-price-cta {
        display: block !important;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    /* FAQ Accordion (Mobile) */
    .faq-a {
        display: none;
        padding-top: 12px;
        border-top: 1px dashed #eee;
        margin-top: 12px;
        color: var(--text-color);
        font-size: 0.95rem;
    }

    .faq-item.active .faq-a {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .faq-q {
        position: relative;
        padding-right: 30px;
        /* Space for icon */
        cursor: pointer;
        font-weight: 700;
    }

    .faq-q::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: var(--primary-color);
        font-weight: 400;
    }

    .faq-item.active .faq-q::after {
        content: '-';
    }

    .faq-item {
        padding: 16px;
        gap: 0;
        /* Reset gap */
    }

    /* Contact Flow: Compact Grid Layout with Arrows */
    .booking-flow {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 12px !important;
        /* Row Col gap */
        margin-bottom: 24px;
        position: relative;
    }

    .flow-step {
        position: relative;
        /* existing styles */
    }

    /* Arrow 1->2 */
    .booking-flow .flow-step:nth-child(1)::after {
        content: '→';
        position: absolute;
        right: -14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        opacity: 0.5;
        font-size: 1rem;
    }

    /* Arrow 3->4 */
    .booking-flow .flow-step:nth-child(5)::after {
        content: '→';
        position: absolute;
        right: -14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        opacity: 0.5;
        font-size: 1rem;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .journey-overlay,
    .step-number {
        display: none !important;
    }

    /* Legacy Flow rules removed */

    /* Touch Targets */
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Exceptions for inline text links */
    p a,
    .text-link,
    .footer a {
        display: inline;
        min-height: auto;
        min-width: auto;
    }

    /* Profile Image adjustment */
    .profile-img-container {
        width: 180px;
        height: 180px;
        margin-bottom: 16px;
    }

    /* --- Phase 3 Refinements (Mobile) --- */

    /* CEO Road Image: Absolute positioning to prevent layout break */
    .message-txt-col>div[style*="display: flex"] {
        display: block !important;
        position: relative !important;
        padding-bottom: 20px;
    }

    .message-txt-col>div[style*="display: flex"]>p {
        margin-bottom: 0 !important;
        padding-right: 60px;
        /* Space for the image */
    }

    .message-txt-col>div[style*="display: flex"]>img {
        position: absolute !important;
        bottom: -5px !important;
        right: 0 !important;
        width: 60px !important;
        height: auto !important;
        margin: 0 !important;
        opacity: 0.9;
    }

    /* Coaching Zine Card: Vertical Compression */
    .zine-cta-section {
        padding: 32px 0 !important;
    }

    .zine-inner {
        padding: 20px 16px !important;
        gap: 16px !important;
    }

    .zine-right {
        height: 120px !important;
        min-height: auto !important;
        margin-top: 0 !important;
    }

    .zine-bg-img {
        object-position: center 30% !important;
    }

    /* Contact Flow: Compact Grid Layout */
    .booking-flow {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-bottom: 24px;
    }

    .flow-arrow {
        display: none !important;
    }

    .flow-step {
        padding: 12px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .step-num {
        display: flex !important;
        /* Restore if hidden globally */
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 0.8rem;
        margin-bottom: 8px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
    }

    .step-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* --- Phase 6 Final Polish (White & Clean) --- */

    /* 1. Service Images: White BG & Contain */
    .concept-icon-header img {
        height: auto !important;
        max-height: 120px !important;
        object-fit: contain !important;
        padding: 12px !important;
        background: #fff !important;
        /* White background */
        border-radius: 8px;
        box-shadow: none !important;
        /* Remove shadow */
        margin: 0 auto;
        display: block;
    }

    /* 2. CEO Message: Stylish Wrapping & Road Image */
    .message-txt-col>div[style*="display: flex"]>p {
        /* Optimize reading width */
        max-width: 95%;
        /* Prevent hitting edge */
        margin-right: auto;
        line-height: 1.75 !important;
        /* Better readability */
        padding-bottom: 8px;
        /* Slight spacing */
    }

    .message-txt-col>div[style*="display: flex"] {
        position: relative !important;
        padding-bottom: 24px;
        /* Space for the road image */
    }

    .message-txt-col>div[style*="display: flex"]>img {
        display: block !important;
        position: absolute !important;
        bottom: 0px !important;
        right: 0 !important;
        width: 60px !important;
        /* 52-64px range */
        height: auto !important;
        opacity: 0.85 !important;
        z-index: 0;
        pointer-events: none;
        max-width: none !important;
    }

    /* 3. Contact Flow: Clean Grid (No Lines) */
    .booking-flow {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Explicit repeat */
        gap: 16px 16px !important;
        /* Balanced gap */
        width: 100% !important;
        /* Force full width */
        margin: 0 auto 24px auto !important;
        /* Center block */
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* Remove connectors completely */
    .flow-step::after,
    .flow-step::before,
    .booking-flow .flow-step:nth-child(1)::after,
    .booking-flow .flow-step:nth-child(5)::after,
    .booking-flow .flow-step:nth-child(3)::before {
        content: none !important;
        display: none !important;
    }

    /* Ensure Number Badges are consistent */
    .step-num {
        /* Existing flex centering is good */
        background: #f5f5f5;
        /* Ensure neutral bg to fit "White base" */
        color: var(--text-color);
        font-weight: 700;
    }

    /* Active step or just uniform style? 
       User said: "Unified, Z-shape reading".
       The grid is 1 2 / 3 4. 
       This is naturally Z-shape. No extra visuals needed.
    */
    /* 4. Hide Concept Tags on Mobile */
    .concept-tag {
        display: none !important;
    }

    /* --- Phase 9 Final Redesign (Service Flow-like Card) --- */

    /* 1. Service Card: Grid Layout (Badge Top, Icon Left, Text Right) */
    .concept-card {
        display: grid !important;
        grid-template-columns: 84px 1fr !important;
        grid-template-rows: auto 1fr;
        grid-template-areas:
            "badge badge"
            "icon content";
        gap: 12px 16px !important;
        /* Row Col gap */
        padding: 16px !important;
        align-items: start !important;
        background: #fff;
    }

    /* Badge: Top Full Width */
    .step-num-badge {
        grid-area: badge;
        margin-bottom: 0 !important;
        justify-self: start;
        order: -99 !important;
    }

    /* Icon: Fixed Square 84px */
    .concept-icon-header {
        grid-area: icon;
        width: 84px !important;
        height: 84px !important;
        margin: 0 !important;
        flex: none !important;
    }

    /* Icon Image: Contained, No Shadow */
    .concept-icon-header img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        /* Reset limit */
        object-fit: contain !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Content: Column Flex */
    .concept-content {
        grid-area: content;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        /* Reset Phase 4 'contents' */
    }

    /* Children Order */
    .concept-title {
        order: 1 !important;
        margin: 0 !important;
        font-size: 1rem !important;
    }

    .concept-body {
        order: 2 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.6;
    }

    .concept-example {
        order: 3 !important;
        margin: 0 !important;
        font-size: 0.8rem !important;
        background: #f5f5f5;
        padding: 8px;
        border-radius: 4px;
    }

    .concept-tag {
        order: 4 !important;
    }

    /* Hidden by Phase 7 */

    /* --- Phase 10 Final Polish (Coaching Card Compression) --- */

    /* Container: Reduce Padding */
    .zine-cta-section {
        padding: 24px 0 !important;
    }

    /* Inner: Tighter Gaps */
    .zine-inner {
        padding: 20px 16px !important;
        gap: 12px !important;
        /* Was 16px */
    }

    /* Sticker Badge: Compact */
    .sticker-badge {
        font-size: 0.7rem !important;
        padding: 2px 8px !important;
        margin-bottom: 8px !important;
    }

    /* Heading: Adjust size */
    .zine-head {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }

    /* Sub-headline (Black Band): Compact */
    .zine-sub {
        font-size: 0.9rem !important;
        padding: 4px 12px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    /* Description: Reduce size & margin */
    .zine-desc {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }

    /* Button: Less Margin */
    .btn-zine {
        margin-top: 0 !important;
        min-height: 44px !important;
    }

    /* Hide Red decorative arrow to save vertical space/noise */
    .scribble-arrow {
        display: none !important;
    }

    /* --- Phase 12 Final Grid Alignment Fix (Force Center/Stretch) --- */

    /* Ensure Booking Flow Container is Full Width & Centered */
    .booking-flow {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        /* Uniform gap */
        width: 100% !important;
        margin: 0 0 24px 0 !important;
        /* Reset auto margins, fill container */
        padding: 0 !important;
        justify-content: stretch !important;
        align-content: center !important;
        box-sizing: border-box !important;
    }

    /* Ensure Steps Fill the Grid Cells */
    .flow-step {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        justify-self: stretch !important;
        box-sizing: border-box !important;
    }

    /* --- Phase 13 Header Transparent Fix (Option A) --- */

    /* Force Header Background Transparent on Mobile (Even when scrolled) */
    .header.scrolled {
        background-color: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding-top: 0 !important;
        /* Keep mobile height */
        padding-bottom: 0 !important;
    }

    /* Keep Fixed Mobile Height */
    .header {
        height: 56px !important;
        padding: 0 !important;
    }

    /* Hamburger Button: Add background only when scrolled */
    .header.scrolled .hamburger-btn {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        border-radius: 8px;
        /* Soft rounded rect */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 44px;
        height: 44px;
        margin-right: 16px;
        /* Ensure 16px margin from edge */
    }

    /* Ensure hamburger margin matches container padding */
    .hamburger-btn {
        margin-right: 16px !important;
        /* Right margin */
    }

    /* Change Icon Color to Dark when Scrolled (since button bg is white) */
    .header.scrolled .hamburger-btn span {
        background-color: #333 !important;
    }

    /* Logo scaling on scroll? Keep mobile size */
    .header.scrolled .logo img {
        height: 32px !important;
    }

    /* --- Phase 16 Footer Link Grid (Refinement) --- */
    .footer .container {
        padding: 0 16px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 16px !important;
    }

    /* Grid Layout for Links: 2 Columns */
    .footer p:nth-of-type(2) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 16px !important;
        margin-top: 24px !important;
        font-size: 0 !important;
        /* Hide pipes */
        justify-items: stretch !important;
        text-align: center !important;
    }

    .footer p:nth-of-type(2) a {
        font-size: 0.8rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 8px 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-align: center;
        white-space: nowrap;
    }

    /* Copyright styling */
    .footer p:nth-of-type(1) {
        margin-top: 16px !important;
        font-size: 0.75rem !important;
        opacity: 0.5;
        text-align: center;
    }
}

/* Hero section hamburger (not scrolled) */
.header:not(.scrolled) .hamburger-btn {
    background: transparent;
    box-shadow: none;
}

/* --- Phase 15 Coaching Timeline Fix (Overlapping Numbers) --- */

/* Target the timeline container structure */
.timeline-phase {
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    gap: 8px 12px !important;
    /* Row Col */
    padding-left: 12px !important;
    /* Reduce inline 2.5rem (40px) to 12px, keep close to border */
    margin-bottom: 24px !important;
    align-items: start !important;
}

/* Number Box: Fixed in Col 1, Spanning rows? Or just side-by-side? */
/* Let's make it sit on the left, and others on right */
.phase-num {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    /* Span label, title, desc */
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    margin: 0 auto !important;
    /* Center in 48px col */
    position: relative !important;
    z-index: 1 !important;
    /* Inline style handles BG/Color */
}

/* Content Elements: Col 2 */
.phase-label {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
    font-size: 0.8rem !important;
    padding-top: 4px;
    /* Align with num top */
}

.phase-title {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin-bottom: 4px !important;
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
}

.phase-desc {
    grid-column: 2 !important;
    grid-row: 3 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* --- Phase 26 CEO Message Final Look (Large Photo & Texture) --- */

/* Hide PC Text on Mobile */
.message-txt-pc {
    display: none !important;
}

/* Show SP Text on Mobile */
.message-txt-sp {
    display: block !important;
}

/* Container: Stacked & Centered */
.message-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
}

/* Profile Image Container */
.message-img-col {
    flex: 0 0 auto !important;
    width: auto !important;
    margin-right: 0 !important;
    margin-bottom: 24px !important;
    /* Increased gap */
    float: none !important;
    position: relative !important;
}

/* Profile Image Style (Large Round Square + Texture Frame) */
.message-profile-circle {
    width: 120px !important;
    /* Enlarged to 120px */
    height: 120px !important;
    border-radius: 14px !important;
    /* Slightly tighter radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    /* Elegant shadow */
    border: 4px solid #fff !important;
    /* White matte frame */
    overflow: visible !important;
    /* Allow pseudo element noise outside */
    margin: 0 auto !important;
    position: relative !important;
    background: #fff;
    /* Ensure white bg */
}

/* Noise Texture Wrapper (::before on wrapper) */
.message-profile-circle::before {
    content: "" !important;
    position: absolute !important;
    top: -6px !important;
    left: -6px !important;
    right: -6px !important;
    bottom: -6px !important;
    z-index: -1 !important;
    border-radius: 18px !important;
    background-color: rgba(230, 225, 220, 0.4) !important;
    /* Warm gray base */
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 1px) !important;
    background-size: 3px 3px !important;
    /* Tiny dot noise */
    opacity: 0.6 !important;
    /* Resulting visibility ~0.09 */
}

.message-profile-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    /* Inner radius matching frame */
    display: block !important;
}

/* Text Column: Centered */
.message-txt-sp {
    flex: 1 !important;
    float: none !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 0 0 52px 0 !important;
    /* +28px "Air" added (24+28=52) */
    position: relative !important;
    text-align: center !important;
}

/* Typography: Centered & Compressed */
.message-txt-sp p {
    margin-bottom: 12px !important;
    line-height: 1.65 !important;
    text-align: center !important;
    font-feature-settings: "palt";
}

/* Road Sign Protection */
.message-txt-sp>div {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

.message-txt-sp>div>p {
    margin-bottom: 8px !important;
}

/* Road Image: Bottom Right with Air */
.message-txt-sp>div>img {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 50px !important;
    opacity: 0.85 !important;
    z-index: 10;
    pointer-events: none;
}

/* --- Phase 20: Note Section PC/SP Separation --- */

/* Mobile: Hide PC Grid, Show SP List */
#note-grid-pc {
    display: none !important;
}

#note-grid-sp {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 24px !important;
    width: 100% !important;
}

/* SP Item Layout: Horizontal Flex */
.note-item-sp {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px !important;
    background: #fff;
    /* Ensure bg */
    border-radius: 8px;
    /* Slight roundness */
    text-decoration: none;
}

/* SP Thumbnail: Fixed 64px Square */
.note-thumb-sp {
    flex: 0 0 64px !important;
    width: 64px !important;
    height: 64px !important;
    margin-right: 12px !important;
    border-radius: 6px !important;
    background: #f0f0f0 !important;
    overflow: hidden;
}

.note-thumb-sp img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.note-thumb-sp-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    font-size: 1.5rem;
}

.note-thumb-sp-placeholder::after {
    content: "📝";
}


/* SP Content: Stacked */
.note-content-sp {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0;
}

.note-date-sp {
    font-size: 0.75rem !important;
    color: #888 !important;
    margin-bottom: 4px !important;
}

.note-title-sp {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    color: #333 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em;
}

/* Section Button: Weak & Compact */
#blog .text-center {
    margin-top: 24px !important;
}

#blog .btn-secondary {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    width: 100% !important;
}

/* --- Footer Polish (Left Align, 50% Width Flex) --- */
.footer p:nth-of-type(2) {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
    gap: 0 !important;
    /* Managed by padding/width */
    margin-top: 24px !important;
    padding: 0 !important;
    /* Full width */
    font-size: 0 !important;
    /* Hide pipes */
    text-align: left !important;
    /* --- Phase 28 MVV Final Adjustment --- */

    /* Section Spacing: Compress vertical air */
    #mvv .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Title: Reduced Prominence (Balanced) */
    #mvv .section-title {
        max-width: 18ch !important;
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        /* Reduced from 24px */
        font-size: 1.75rem !important;
        /* Slightly smaller than default mobile H2 */
        text-wrap: balance !important;
    }

    /* Quote (h3): Hero, Tighter, Centered */
    #mvv h3 {
        font-size: 1.25rem !important;
        line-height: 1.6 !important;
        /* Tightened from 1.65 */
        max-width: 26ch !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
        text-wrap: balance !important;
        text-align: center !important;
        /* Keep centered */
    }

    /* Body Text: Left Align for Readability */
    #mvv p {
        line-height: 1.75 !important;
        margin-bottom: 12px !important;
        font-size: 0.95rem !important;
        text-align: left !important;
        /* Left align requested */
        display: block !important;
        width: 100% !important;
    }
}

/* --- Phase 29 Footer Cleanup (1-Column Vertical Stack) --- */
.footer p:nth-of-type(2) {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding: 0 !important;
    width: 100% !important;
}

.footer p:nth-of-type(2) a {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    font-size: 0.8rem !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    color: rgba(255, 255, 255, 0.8) !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    border: none !important;
}


/* --- Phase 38 PC Optimization (Desktop >= 1024px) --- */
@media (min-width: 1024px) {

    /* 1. CEO Message: Impact & Animation */
    .message-body {
        display: flex;
        flex-direction: row !important;
        /* Force row layout */
        align-items: center !important;
        justify-content: center;
        gap: 64px !important;
    }

    .message-img-col {
        flex: 0 0 400px !important;
        width: 400px !important;
        max-width: 400px !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        float: none !important;
    }

    .message-profile-circle {
        width: 400px !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        border-radius: 20px !important;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15) !important;
        border: 6px solid #fff !important;
        margin: 0 !important;
        animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
        opacity: 0;
        transform: translateY(20px);
    }

    .message-profile-circle::before {
        display: none !important;
        /* No texture on PC */
    }

    /* Unified Message Text (PC) */
    .message-txt-col {
        display: block !important;
        text-align: left !important;
    }

    .message-txt-col p {
        line-height: 1.8 !important;
        margin-bottom: 1.5rem !important;
    }

    /* prefers-reduced-motion: Disable animations */
    @media (prefers-reduced-motion: reduce) {
        .message-profile-circle {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
    }

    /* prefers-reduced-motion: Disable animations */
    @media (prefers-reduced-motion: reduce) {
        .message-profile-circle {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
    }

    /* 2. Note Section: Strict Separation & Grid */
    #note-grid-sp {
        display: none !important;
    }

    #note-grid-pc {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        /* 3 Cols */
        gap: 32px;
        width: 100%;
        margin-bottom: 2rem;
    }

    /* PC Card Styling */
    .note-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        /* Subtle border */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        height: 100%;
    }

    .note-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .note-thumb {
        width: 100%;
        height: 200px;
        background: #f7f7f7;
        position: relative;
        overflow: hidden;
    }

    .note-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .note-card:hover .note-thumb img {
        transform: scale(1.05);
        /* Zoom effect */
    }

    .note-thumb-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #ddd;
    }

    .note-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .note-date {
        font-size: 0.8rem;
        color: #999;
        margin-bottom: 0.8rem;
    }

    .note-title {
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: var(--text-color);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .note-excerpt {
        font-size: 0.9rem;
        color: var(--text-sub);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .note-btn {
        font-size: 0.95rem;
        font-weight: 700;
        color: #ff6b00;
        /* Orange color */
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        transition: transform 0.2s;
    }

    .note-btn::after {
        content: "→";
        margin-left: 6px;
        transition: transform 0.2s;
    }

    .note-card:hover .note-btn::after {
        transform: translateX(4px);
    }

    .note-card:hover .note-btn {
        transform: none;
        /* Move arrow instead */
    }

    /* 3. Price Section: Shared CTA Styling */
    .mobile-price-cta {
        display: block !important;
        margin-top: 48px !important;
        text-align: center;
    }

    .mobile-price-cta .btn {
        width: auto !important;
        padding: 1.2rem 5rem !important;
        /* Large PC button */
        font-size: 1.1rem !important;
        display: inline-block !important;
    }

    /* Restored Missing Styles */
    @keyframes fadeSlideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #blog .text-center {
        margin-top: 3rem;
        text-align: center;
    }

    #blog .btn-secondary {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
        min-width: 280px;
        max-width: 360px;
        width: clamp(280px, 30vw, 360px);
    }
}

/* --- Phase 44: Typography & Line Break Optimization --- */

/* 1. Global Typography Optimization */
h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.concept-title,
.profile-name,
.zine-head,
.message-txt-col h3 {
    text-wrap: balance;
    /* Modern browsers */
    line-height: 1.4;
}

/* 2. Utilities for Line Breaks */
.sp-only-br {
    display: none;
}

.pc-only-br {
    display: inline;
}

.text-nowrap {
    white-space: nowrap;
    display: inline-block;
}

@media (max-width: 767px) {
    .sp-only-br {
        display: inline;
    }

    .pc-only-br {
        display: none;
    }
}

/* 3. Hero Adjustments */
.hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    max-inline-size: 15em;
    /* Relaxed slightly */
    margin-left: auto;
    margin-right: auto;
}

/* 4. MVV Adjustments */
#mvv h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
    max-inline-size: 16em;
    margin-left: auto;
    margin-right: auto;
}

/* 5. Service & Concept Adjustments */
.section-title {
    max-inline-size: 15em;
    margin-left: auto;
    margin-right: auto;
}

.concept-content .concept-body {
    line-height: 1.7;
    font-size: 0.95rem;
    text-wrap: pretty;
}

/* 6. CEO Message Footer Optimization (Phase 50) */
.message-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.michi-logo {
    width: 80px;
    height: auto;
    margin-bottom: 0;
    margin-right: 2rem;
}

@media (max-width: 767px) {
    .message-footer-row {
        /* Keep flex but allow text to wrap under image if needed? 
           No, stack them to give text full width. */
        flex-direction: column;
        align-items: flex-start;
    }

    .message-footer-row p {
        width: 100%;
        /* Full width for text text */
    }

    .michi-logo {
        margin-left: auto;
        /* Align right */
        margin-right: 0;
        margin-top: 0.5rem;
        width: 60px;
        /* Slightly smaller on mobile */
    }
}

/* Coaching Checklist Fix */
.check-list-simple {
    text-align: left !important;
}

.check-list-simple li {
    text-align: left !important;
    text-justify: none !important;
    justify-content: flex-start !important;
}

/* Fix Mobile Margins for Zine Headers */
@media (max-width: 767px) {
    .zine-header-wrapper {
        margin-bottom: 2.5rem !important;
    }

    /* Compact Zine Intro Card Mobile */
    .zine-inner {
        padding: 1rem !important;
    }

    .zine-desc {
        margin-bottom: 1.5rem !important;
    }

    /* Compact Button */
    .btn-zine {
        padding: 0.8rem 2rem !important;
        width: auto !important;
        display: inline-flex !important;
        white-space: nowrap !important;
    }

    /* Reduce Header Elements Gap - Aggressive */
    .zine-section-intro {
        margin-top: -0.5rem !important;
        position: relative;
        z-index: 4;
    }

    /* Fix Sticker Position (Ensure no overlap) */
    .zine-sticker-label {
        display: block !important;
        width: fit-content;
        margin: 0 auto 0.5rem auto !important;
        /* Positive spacing */
    }
}

/* --- Phase 67: Mobile Note Grid Visibility --- */
@media (max-width: 1023px) {
    #note-grid-pc {
        display: none !important;
    }

    #note-grid-sp {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Ensure SP items are styled */
    .note-item-sp {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        background: #fff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .note-thumb-sp {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: #f0f0f0;
    }

    .note-thumb-sp img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .note-content-sp {
        flex: 1;
    }

    .note-date-sp {
        font-size: 0.75rem;
        color: #999;
        margin-bottom: 0.3rem;
    }

    .note-title-sp {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .note-thumb-sp-placeholder {
        width: 100%;
        height: 100%;
        background-color: #eee;
    }
}